Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "iced-trade"
  3. version = "0.4.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. iced = { git = "https://github.com/iced-rs/iced.git", features = ["canvas", "tokio", "lazy", "image", "advanced"] }
  8. chrono = "0.4.37"
  9. tokio = { version = "1.37.0", features = ["full", "macros"] }
  10. tokio-tungstenite = "0.21.0"
  11. url = "2.5.0"
  12. tokio-native-tls = "0.3.1"
  13. base64 = "0.22.0"
  14. native-tls = "0.2.11"
  15. tungstenite = "0.21.0"
  16. futures = "0.3.30"
  17. futures-util = "0.3.30"
  18. serde_json = "1.0.115"
  19. serde = { version = "1.0", features = ["derive"] }
  20. reqwest = { version = "0.12.2", features = ["json"] }
  21. hmac = "0.12.1"
  22. sha2 = "0.10.8"
  23. hex = "0.4.3"
  24. iced_table = "0.12.0"
  25. iced_futures = "0.12.0"
  26. anyhow = "1.0.86"
  27. bytes = "1.6.0"
  28. sonic-rs = "0.3.7"
  29. fastwebsockets = { version = "0.7.2", features = ["upgrade"] }
  30. http-body-util = "0.1.2"
  31. hyper = { version = "1", features = ["http1", "server", "client"] }
  32. hyper-util = { version = "0.1.0", features = ["tokio"] }
  33. tokio-rustls = "0.24.0"
  34. webpki-roots = "0.23.0"
  35. uuid = { version = "1.10.0", features = ["v4"] }
  36. rustc-hash = "2.0.0"
  37. [dependencies.async-tungstenite]
  38. version = "0.25"
  39. features = ["tokio-rustls-webpki-roots"]