-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (63 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "balances-history"
version = "0.0.1"
authors = ["Sergey Kutsenko <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
serde_qs = { version = "0.10.1", features = ["warp"] }
serde_with = "2.1.0"
chrono = { version = "0.4.19", features = ["serde"] }
envy = "0.4"
tonic = "0.5.2"
prost = { version = "0.8.0", features = ["no-recursion-limit"] }
tokio = { version = "1.16.1", features = ["full"] }
tokio-postgres = { version = "0.7.5", features = [
"with-chrono-0_4",
"with-serde_json-1",
] }
postgres-derive = { version = "0.4.1" }
postgres-types = { version = "0.2.2" }
async-trait = { version = "0.1.52" }
waves-protobuf-schemas = { git = "https://github.com/wavesplatform/protobuf-schemas", tag = "v1.3.2" }
diesel = { version = "2.0.2", features = ["postgres"] }
diesel_migrations = "2.0.0"
#bigdecimal = { version = "0.3.0", features = ["serde"] }
rust_decimal = { version = "1.14.3", features = [
"serde",
"db-tokio-postgres",
"db-postgres",
] }
wavesexchange_log = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_log/0.5.0" }
wavesexchange_warp = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_warp/0.14.3" }
wavesexchange_apis = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_apis/0.1.13" }
futures = "0.3"
anyhow = "1.0.53"
warp = "0.3"
bs58 = "0.4.0"
base64 = "0.13.0"
once_cell = "1.9.0"
blake2 = "0.8"
sha3 = "0.8"
bytes = "1.1.0"
lazy_static = "1.4.0"
thiserror = "1.0.30"
fxhash = "0.2.1"
itertools = "0.10.3"
deadpool-postgres = "0.10.2"
[patch.crates-io]
log = { git = "https://github.com/rust-lang/log", tag = "0.4.14" }
[lib]
name = "lib"
path = "src/lib/lib.rs"
[[bin]]
name = "consumer"
path = "src/bin/consumer.rs"
[[bin]]
name = "migration"
path = "src/bin/migration.rs"
[[bin]]
name = "service"
path = "src/bin/service.rs"