-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.59 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 = "bitmex-cli"
version = "1.0.0"
edition = "2024"
description = "BitMEX CLI — trade, query, and manage your BitMEX account from the terminal"
license = "MIT"
keywords = ["bitmex", "crypto", "trading", "cli", "api"]
categories = ["command-line-utilities", "finance"]
repository = "https://github.com/BitMEX/bitmex-cli"
homepage = "https://github.com/BitMEX/bitmex-cli"
[[bin]]
name = "bitmex"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
reqwest = { version = "0.13", features = ["query", "json", "rustls"], default-features = false }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1"
hmac = "0.12"
sha2 = "0.10"
base64 = "0.22"
hex = "0.4"
url = "2"
chrono = { version = "0.4", features = ["serde"] }
tokio-tungstenite = { version = "0.29", features = ["rustls-tls-webpki-roots"] }
rustls = { version = "0.23", default-features = false }
futures-util = "0.3"
snafu = "0.8"
figment = { version = "0.10", features = ["toml", "env"] }
dirs = "6"
comfy-table = "7"
keyring = { version = "3", features = ["apple-native", "linux-native-sync-persistent", "windows-native"] }
inquire = "0.7"
reedline = "0.38"
nu-ansi-term = "0.50"
rmcp = { version = "1.4", default-features = false, features = ["server", "transport-io", "transport-streamable-http-server"] }
axum = "0.8"
tower = { version = "0.5", features = ["util"] }
pin-project-lite = "0.2"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"