-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (30 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "wallet-api"
version = "0.1.0"
authors = ["Gustavo Noronha Silva <gustavo.noronha@collabora.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
clokwerk = "0.3"
futures = "0.3"
lazy_static = "1.4"
log = "0.4"
mongodb = { version = "1.1.0", default_features = false, features = ["sync"] }
schemars = { version = "0.8.0-alpha-4", features = ["preserve_order", "chrono"] }
okapi = { version = "0.5.0-alpha-1" }
rayon = "1.4.0"
rocket_cors = "0.5.1"
rocket_okapi = { version = "0.6.0-alpha-1" }
rocket = { version = "0.4.3", default-features = false }
serde = "1.0"
tokio = { version = "0.2", features = ["full"] }
uuid = { version = "0.8", features = ["v4"] }
yahoo-finance = { git = "https://github.com/kov/yahoo-finance-rs.git" }
[dev-dependencies]
approx = "0.3"
rusty-fork = "0.3"
[dependencies.rocket_contrib]
version = "0.4.3"
default-features = false
features = ["json", "databases"]