| 123456789101112131415161718192021222324252627282930 |
- [package]
- name = "ticker_viewer"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- reqwest = { version = "0.11", features = ["json"] }
- serde_json = "1.0.105"
- tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
- tracing = "0.1"
- tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
- tracing-appender = "0.2.2"
- handlebars = "4.5.0"
- serde = { version = "1.0.193", features = ["derive"] }
- chrono = "0.4"
- rust_decimal = { version = "1.32.0", features = ["maths"] }
- rust_decimal_macros = "1.32.0"
- toml = "0.8.8"
- uuid = { version = "1.6.1", features = ["v4"] }
- ring = "0.16.20"
- data-encoding = "2.4.0"
- hex = "0.4"
- hmac = "0.8.1"
- sha2 = "0.9.8"
|