-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (47 loc) · 1.23 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
[package]
name = "tta-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio-util = { version = "0.7.8", features = ["io", "io-util"] }
axum = "0.6.2"
tokio = { version = "1.24.1", features = ["full"] }
hyper = { version = "0.14.23", features = ["full"] }
tower = { version = "0.4", features = ["full"] }
serde = { version = "1", features = ["derive", "serde_derive"] }
serde_json = "1.0.91"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
chrono = "0.4.26"
sqlx = { version = "0.6.3", features = [
"postgres",
"runtime-tokio-rustls",
"json",
"chrono",
"offline",
"macros",
"decimal",
] }
dotenvy = "0.15.6"
sha2 = "0.10.6"
anyhow = "1.0.71"
futures-util = "0.3.28"
tokio-stream = "0.1.14"
csv = "1.2.2"
num-traits = "0.2.15"
base64 = "0.21.2"
rust_decimal = "1.30.0"
near-sdk = "4.1.1"
near-jsonrpc-client = "0.6.0"
near-jsonrpc-primitives = "0.17.0"
near-primitives = "0.17.0"
tower-http = { version = "0.4.3", features = ["full"] }
lru = "0.11.0"
governor = "0.6.0"
tracing-loki = "0.2.4"
reqwest = "0.11.22"
uint = { version = "0.8.3", default-features = false }
quick_cache = "0.4.0"
[dev-dependencies]
axum-test-helper = "0.3.0"