-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 1.2 KB
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 = "bothan-api-cli"
version = "0.1.1"
edition.workspace = true
license.workspace = true
repository.workspace = true
[[bin]]
name = "bothan"
path = "src/main.rs"
[dependencies]
bothan-api = { workspace = true }
bothan-core = { workspace = true, features = ["rocksdb"] }
bothan-client = { workspace = true }
bothan-lib = { workspace = true }
bothan-binance = { workspace = true }
bothan-bitfinex = { workspace = true }
bothan-bybit = { workspace = true }
bothan-coinbase = { workspace = true }
bothan-coingecko = { workspace = true }
bothan-coinmarketcap = { workspace = true }
bothan-htx = { workspace = true }
bothan-kraken = { workspace = true }
bothan-okx = { workspace = true }
bothan-band = { workspace = true }
dirs = { workspace = true }
futures = { workspace = true }
itertools = { workspace = true }
reqwest = { workspace = true }
semver = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tonic = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
anyhow = "1.0.95"
clap = { version = "4.5.29", features = ["derive"] }
inquire = "0.7.5"
toml = "0.8.20"
tonic-reflection = "0.12.3"
humantime = "2.2.0"
prettytable = "0.10.0"