-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (61 loc) · 2.23 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
[package]
name = "asset-search-rs"
version = "2.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.13"
bb8 = { git = "https://github.com/Barre/bb8", branch = "multiplexed-connections" }
bb8-redis = { git = "https://github.com/Barre/bb8", branch = "multiplexed-connections", features = ["multiplexed-connections"] }
bigdecimal = { version = "0.3", features = ["serde"] }
blake2 = "0.9"
bs58 = "0.4"
bytes = "1.1"
chrono = { version = "0.4", features = ["serde"] }
diesel = { version = "1.4", default-features = false, features = ["chrono", "postgres", "r2d2"] }
diesel-derive-enum = { version = "1.1.1", features = ["postgres"] }
diesel_migrations = "1.4"
envy = "0.4"
fragstrings = { git = "https://github.com/a-kordys/fragstrings", tag = "v0.1.1", default-features = false, features = ["parse"] }
futures = "0.3"
itertools = "0.10"
lazy_static = "1.4"
percent-encoding = "2.1"
prost = { version = "0.8", features = ["no-recursion-limit"] }
r2d2 = "0.8"
redis = { version = "0.21.3", features = ["tokio", "r2d2"] }
regex = "1"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_qs = { version = "0.8", features = ["warp"] }
serde_repr = "0.1"
sha3 = "0.9"
thiserror = "1.0"
tokio = { version = "1.12", features = ["macros", "rt-multi-thread"] }
tonic = "0.5"
validator = { version = "0.14", features = ["derive"] }
warp = { version = "0.3", default-features = false }
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" }
waves-protobuf-schemas = { git = "https://github.com/wavesplatform/protobuf-schemas", rev = "50827749d9422b47a79c4e858f2a560d785d7fb8" }
[lib]
name = "app_lib"
path = "src/lib/lib.rs"
[[bin]]
name = "api"
path = "src/bin/api.rs"
[[bin]]
name = "admin"
path = "src/bin/admin.rs"
[[bin]]
name = "consumer"
path = "src/bin/consumer.rs"
[[bin]]
name = "invalidate_cache"
path = "src/bin/invalidate_cache.rs"
[[bin]]
name = "migration"
path = "src/bin/migration.rs"