-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (62 loc) · 1.9 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
[workspace.package]
authors = ["Band Protocol <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bandprotocol/bothan"
exclude = [".github/"]
[workspace]
members = [
"bothan-api/client/rust-client",
"bothan-api/server",
"bothan-api/server-cli",
"bothan-binance",
"bothan-bybit",
"bothan-coinbase",
"bothan-coingecko",
"bothan-coinmarketcap",
"bothan-core",
"bothan-cryptocompare",
"bothan-htx",
"bothan-kraken",
"bothan-okx",
]
exclude = ["bothan-api", "bothan-api-proxy"]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.86"
async-trait = "0.1.77"
chrono = "0.4.38"
derive_more = { version = "1.0.0-beta.6", features = ["full"] }
futures = "0.3.30"
futures-util = "0.3.31"
humantime-serde = "1.1.1"
itertools = "0.13.0"
mockito = "1.4.0"
prost = "0.13.1"
protoc-gen-prost = "0.4.0"
protoc-gen-tonic = "0.4.1"
rand = "0.8.5"
reqwest = { version = "0.12.3", features = ["json"] }
rust_decimal = "1.10.2"
semver = "1.0.23"
serde = { version = "1.0.197", features = ["std", "derive", "alloc"] }
serde_json = "1.0.116"
thiserror = "2.0.6"
tokio = { version = "1.36.0", features = ["full"] }
tokio-tungstenite = { version = "0.24.0", features = ["native-tls"] }
tonic = "0.12.1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.0"
bothan-core = { path = "bothan-core" }
bothan-client = { path = "bothan-api/client/rust-client" }
bothan-api = { path = "bothan-api/server" }
bothan-binance = { path = "bothan-binance" }
bothan-bybit = { path = "bothan-bybit" }
bothan-coinbase = { path = "bothan-coinbase" }
bothan-coingecko = { path = "bothan-coingecko" }
bothan-coinmarketcap = { path = "bothan-coinmarketcap" }
bothan-cryptocompare = { path = "bothan-cryptocompare" }
bothan-htx = { path = "bothan-htx" }
bothan-kraken = { path = "bothan-kraken" }
bothan-okx = { path = "bothan-okx" }