Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. log = "0.4.22"
  35. thiserror = "1.0.68"
  36. ordered-float = "4.5.0"
  37. regex = "1.11.1"
  38. rust_decimal = "1.36.0"
  39. uuid = { version = "1.11.0", features = ["v4"] }
  40. zip = "2.2.1"
  41. csv = "1.3.1"
  42. [dependencies.async-tungstenite]
  43. version = "0.25"
  44. features = ["tokio-rustls-webpki-roots"]
  45. [patch.crates-io]
  46. iced = { git = "https://github.com/iced-rs/iced", rev = "a687a837653a576cb0599f7bc8ecd9c6054213a9" }