Cargo.toml 780 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "ticker_viewer"
  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. reqwest = { version = "0.11", features = ["json"] }
  8. serde_json = "1.0.105"
  9. tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
  10. tracing = "0.1"
  11. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  12. tracing-appender = "0.2.2"
  13. handlebars = "4.5.0"
  14. serde = { version = "1.0.193", features = ["derive"] }
  15. chrono = "0.4"
  16. rust_decimal = { version = "1.32.0", features = ["maths"] }
  17. rust_decimal_macros = "1.32.0"
  18. toml = "0.8.8"
  19. uuid = { version = "1.6.1", features = ["v4"] }
  20. ring = "0.16.20"
  21. data-encoding = "2.4.0"
  22. hex = "0.4"
  23. hmac = "0.8.1"
  24. sha2 = "0.9.8"