-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (47 loc) · 2.01 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "1.3.1"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.21"
bigdecimal = { version = "0.4", features = ["serde"] }
num-bigint = "0.4"
num-integer = { version = "0.1", features = ["i128"] }
blake2 = "0.10"
bs58 = "0.5"
bytes = "1.0"
cached = "0.48"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
diesel = { version = "2.1", default-features = false, features = ["postgres", "chrono", "r2d2", "numeric"] }
diesel-derive-enum = { version = "2.1", features = ["postgres"] }
diesel_migrations = "2.1"
envy = "0.4"
fragstrings = { git = "https://github.com/waves-exchange/fragstrings", tag = "v0.2.0" }
futures = { version = "0.3", default-features = false }
itertools = "0.12"
lazy_static = "1.4"
percent-encoding = "2.1"
r2d2 = "0.8"
rayon = "1.5"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_qs = { version = "0.12", features = ["warp"] }
humantime-serde = "1.0"
sha3 = "0.10"
thiserror = "1.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
warp = { version = "0.3", default-features = false }
wavesexchange_log = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_log/0.5.1" }
wavesexchange_loaders = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_loaders/0.2.2" }
wavesexchange_apis = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_apis/0.1.39" }
wavesexchange_warp = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_warp/0.14.10" }
wavesexchange_liveness = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_liveness/0.3.1" }
waves-protobuf-schemas = { git = "https://github.com/wavesplatform/protobuf-schemas", tag = "rust_v1.5.2" }
# Local crates
database = { path = "./crates/database", version = "0.0.0" }
shared = { path = "./crates/shared", version = "0.0.0" }