-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (69 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
73 lines (69 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
resolver = "3"
members = ["rust", "python", "nodejs", "java", "c"]
[workspace.package]
version = "4.0.5"
edition = "2024"
[profile.release]
lto = true
[workspace.dependencies]
longbridge-geo = { path = "rust/crates/geo", version = "4.0.5" }
longbridge-wscli = { path = "rust/crates/wsclient", version = "4.0.5" }
longbridge-httpcli = { path = "rust/crates/httpclient", version = "4.0.5" }
longbridge-proto = { path = "rust/crates/proto", version = "4.0.5" }
longbridge-candlesticks = { path = "rust/crates/candlesticks", version = "4.0.5" }
longbridge-oauth = { path = "rust/crates/oauth", version = "4.0.5" }
longbridge = { path = "rust", version = "4.0.5" }
tokio = "1.47.1"
tokio-tungstenite = "0.27.0"
rust_decimal = "1.37.2"
num_enum = "0.7.4"
prost = "0.14.1"
tracing = "0.1.41"
bitflags = "2.9.2"
futures-util = "0.3.31"
time = "0.3.41"
flume = "0.11.1"
thiserror = "2.0.15"
strum = "0.27.2"
strum_macros = "0.27.2"
serde = "1.0.219"
serde_json = "1.0.142"
dotenv = "0.15.0"
http = "1.3.1"
comfy-table = "7.1.4"
itertools = "0.14.0"
tracing-subscriber = "0.3.19"
tracing-appender = "0.2.3"
time-tz = "2.0.0"
num-traits = "0.2.19"
reqwest = { version = "0.12.23", default-features = false }
parking_lot = "0.12.4"
hmac = "0.12.1"
sha1 = "0.10.6"
sha2 = "0.10.9"
percent-encoding = "2.3.1"
byteorder = "1.5.0"
url = "2.5.4"
flate2 = "1.1.2"
leaky-bucket = "1.1.2"
pyo3 = "0.28.2"
pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
pyo3-build-config = "0.28.2"
pythonize = "0.28.0"
napi = { version = "3.8.3", default-features = false }
napi-derive = "3.5.2"
napi-build = "2.3.1"
chrono = "0.4.41"
poem = "3.1.12"
jni = "0.21.1"
proc-macro2 = "1.0.101"
quote = "1.0.40"
syn = "2.0.106"
darling = "0.21.2"
convert_case = "0.8.0"
Inflector = "0.11.4"
cbindgen = "0.29.2"
oauth2 = "4.4"
open = "5"
dirs = "6"