Cargo.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [package]
  2. name = "flowsurface"
  3. version = "0.5.0"
  4. edition = "2021"
  5. [dependencies]
  6. iced = { version = "0.14.0-dev", features = ["canvas", "tokio", "image", "advanced", "lazy"] }
  7. iced_futures = "0.13.2"
  8. chrono = "0.4.38"
  9. tokio = { version = "1.41.1", features = ["full", "macros"] }
  10. tokio-tungstenite = "0.21.0"
  11. url = "2.5.3"
  12. tokio-native-tls = "0.3.1"
  13. base64 = "0.22.1"
  14. native-tls = "0.2.12"
  15. tungstenite = "0.21.0"
  16. futures = "0.3.31"
  17. futures-util = "0.3.31"
  18. serde_json = "1.0.132"
  19. serde = { version = "1.0", features = ["derive"] }
  20. reqwest = { version = "0.12.9", features = ["json"] }
  21. hmac = "0.12.1"
  22. sha2 = "0.10.8"
  23. hex = "0.4.3"
  24. bytes = "1.8.0"
  25. sonic-rs = "0.3.17"
  26. fastwebsockets = { version = "0.8.0", features = ["upgrade"] }
  27. http-body-util = "0.1.2"
  28. hyper = { version = "1", features = ["http1", "server", "client"] }
  29. hyper-util = { version = "0.1.10", features = ["tokio"] }
  30. tokio-rustls = "0.24.1"
  31. webpki-roots = "0.23.1"
  32. rustc-hash = "2.0.0"
  33. fern = "0.6.2"
  34. tracing = "0.1"
  35. tracing-subscriber = { version = "0.3.17", features = [
  36. "env-filter",
  37. "time",
  38. "local-time"
  39. ] }
  40. time = { version = "0.3.7", features = ["macros"] }
  41. tracing-appender-timezone = { git = "https://github.com/skyfffire/tracing-appender-timezone.git" }
  42. thiserror = "1.0.68"
  43. ordered-float = "4.5.0"
  44. regex = "1.11.1"
  45. rust_decimal = "1.36.0"
  46. uuid = { version = "1.11.0", features = ["v4"] }
  47. zip = "2.2.1"
  48. csv = "1.3.1"
  49. [dependencies.async-tungstenite]
  50. version = "0.25"
  51. features = ["tokio-rustls-webpki-roots"]
  52. [patch.crates-io]
  53. iced = { git = "https://github.com/iced-rs/iced", rev = "e722c4ee4f80833ba0b1013cadd546ebc3f490ce" }