Cargo.toml 1.3 KB

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