-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
52 lines (47 loc) · 1.23 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
47
48
49
50
51
52
[package]
name = "bybit-cli"
version = "0.1.3"
edition = "2021"
description = "Bybit CLI — trade, query, and manage your Bybit account from the terminal"
license = "MIT"
repository = "https://github.com/kdkiss/bybit-cli"
[[bin]]
name = "bybit"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
futures-util = "0.3"
anyhow = "1"
thiserror = "2"
dirs = "6"
comfy-table = "7"
dialoguer = "0.12"
rustyline = "14"
rustyline-derive = "0.10"
shell-words = "1"
colored = "2"
url = "2"
uuid = { version = "1", features = ["v4"] }
dotenvy = "0.15"
rmcp = { version = "1.1", default-features = false, features = ["server", "transport-io"] }
[[test]]
name = "integration"
path = "tests/integration/mod.rs"
[dev-dependencies]
wiremock = "0.6"
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[profile.dist]
inherits = "release"
lto = "thin"