-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
42 lines (40 loc) · 1.08 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
[workspace]
members = ["client", "examples", "types"]
resolver = "2"
[workspace.package]
edition = "2024"
keywords = ["backpack", "exchange"]
license = "Apache-2.0"
publish = false
repository = "https://github.com/backpack-exchange/bpx-api-client"
version = "0.20.2"
[workspace.dependencies]
anyhow = "1"
base64ct = { version = "1", features = ["alloc"] }
chrono = { default-features = false, version = "0.4", features = ["serde"] }
clap = { version = "4.5" }
dotenv = "0.15"
ed25519-dalek = "2"
futures-util = { default-features = false, version = "0.3" }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
] }
rust_decimal = "1"
rust_decimal_macros = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_qs = "0.15"
strum = { version = "0.27", features = ["derive"] }
thiserror = "2"
tokio = { version = "1", features = [
"macros",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-native-roots"] }
tracing = "0.1"
tracing-subscriber = "0.3"
url = "2"