-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 loc) · 1.62 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
[package]
name = "updates-provider"
version = "1.5.0"
authors = ["Аleksej Petrov <[email protected]>", "Alex Kordys <[email protected]>"]
edition = "2021"
[dependencies]
anyhow = "1"
async-trait = "0.1"
blake2 = "0.10"
bs58 = "0.5"
bigdecimal = "0.3.0"
hex = "0.4"
envy = "0.4"
futures = "0.3"
itertools = "0.10"
lazy_static = "1"
diesel = { version = "2", features = ["postgres", "chrono", "numeric", "serde_json"] }
deadpool = { version = "0.9", default-features = false, features = ["managed", "rt_tokio_1"] }
deadpool-redis = { version = "0.12", default-features = false, features = ["rt_tokio_1"] }
deadpool-diesel = { version = "0.4", default-features = false, features = ["postgres", "rt_tokio_1"] }
percent-encoding = "2.1"
protofixer = { version = "1.0.0", registry = "wx" }
prometheus = "0.13"
regex = "1"
reqwest = "0.11"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha3 = "0.10"
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
url = "2"
warp = "0.3"
wavesexchange_apis = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_apis/0.1.25" }
wavesexchange_log = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_log/0.5.1" }
wavesexchange_warp = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_warp/0.14.6" }
wavesexchange_topic = { git = "https://github.com/waves-exchange/wavesexchange-rs", tag = "wavesexchange_topic/0.4.3" }
waves-protobuf-schemas = { version = "1.4.3", registry = "wx" }
[dev-dependencies]
base64 = "0.21"
[[bin]]
name = "service"
path = "src/main.rs"