|
123456789101112131415161718192021222324 |
- [package]
- name = "markets"
- version = "0.2.1"
- authors = ["Jonathan Strong <jonathan.strong@gmail.com>"]
- edition = "2018"
- description = "kind of like the http crate, except about tradeable markets"
- homepage = "https://git.jstrong.dev/jstrong/markets"
- repository = "https://git.jstrong.dev/jstrong/markets"
- readme = "README.md"
- license = "LICENSE"
-
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-
- [dependencies]
- serde = { version = "1", features = ["derive"] }
- chrono = { version = "0.4", features = ["serde"] }
- chrono-tz = "0.4"
- #uuid = { version = "0.7.0", features = ["serde", "v4", "slog"] }
- hashbrown = { version = "0.6.3", default_features = false, features = ["serde", "ahash"] }
- #decimal = { git = "https://git.mmcxi.com/mm/decimal", branch = "v2.3.x" }
- #decimal-macros = { git = "https://git.mmcxi.com/mm/decimal-macros", rev = "v0.2.1", optional = true }
-
- [features]
- unstable = []
|