-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
63 lines (57 loc) · 1.59 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
[package]
name = "solana-trader-client-rust"
version = "0.1.2"
edition = "2021"
authors = ["[email protected]"]
description = "Solana Trader API client implementation"
license = "MIT"
repository = "https://github.com/bloXroute-Labs/solana-trader-client-rust"
homepage = "https://bloxroute.com/"
readme = "README.md"
keywords = ["solana", "blockchain", "trading", "client", "sdk"]
categories = ["api-bindings"]
[[test]]
name = "grpc"
path = "tests/grpc/mod.rs"
[[test]]
name = "http"
path = "tests/http/mod.rs"
[[test]]
name = "ws"
path = "tests/ws/mod.rs"
[dependencies]
dotenv = "0.15"
anyhow = "1.0.91"
futures-util = "0.3.31"
futures-macro = "0.3.31"
lazy_static = "1.5.0"
reqwest = { version = "0.12.4", features = ["json"] }
serde = "1.0.213"
bitnet = "0.31.9"
serde_json = "1.0.132"
solana-sdk = "2.1.0"
solana-hash = "2.1.0"
solana-trader-proto = "0.1.8"
thiserror = "1.0.65"
tokio = { version = "1.41.0", features = ["full"] }
tokio-tungstenite = { version = "0.24.0", features = ["rustls-tls-webpki-roots"]}
tonic = { version = "0.12.3", features = ["tls", "tls-webpki-roots"] }
tower = "0.5.1"
url = "2.5.2"
prost = "0.13.3"
base64 = "0.22.1"
tokio-rustls = "0.26.0"
webpki-roots = "0.26.6"
ring = "0.17.8"
rustls = { version = "0.23.16", features = ["ring"] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
bincode = "1.3.3"
env_logger = "0.11.5"
async-trait = "0.1.83"
tracing = "0.1.40"
serial_test = "3.1.1"
[dev-dependencies]
test-case = "3.3.1"
[patch.crates-io.curve25519-dalek]
git = "https://github.com/anza-xyz/curve25519-dalek.git"
rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"