forked from Txio-labs/txio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (52 loc) · 1.5 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (52 loc) · 1.5 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
[workspace]
members = [
"backend/api",
"cli",
]
resolver = "2"
[workspace.package]
version = "0.1.2"
edition = "2024"
authors = ["txio Contributors"]
license = "MIT"
description = "A universal multi-chain blockchain gateway and CLI suite."
repository = "https://github.com/Txio-labs/txio"
homepage = "https://github.com/Txio-labs/txio"
[workspace.dependencies]
axum = "0.8"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1.0"
thiserror = "2.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
dotenvy = "0.15"
tower-http = { version = "0.7", features = ["cors", "trace", "limit"] }
tower = { version = "0.5", features = ["util", "timeout"] }
tower_governor = { version = "0.8.0", default-features = false, features = ["axum"] }
mongodb = { version = "2.8.2", features = ["tokio-runtime"] }
reqwest = { version = "0.13", features = ["json", "form", "query"] }
clap = { version = "4.5", features = ["derive", "suggestions", "env"] }
async-trait = "0.1"
regex = "1.10"
strsim = "0.11"
clap_complete = "4.5"
colored = "3.1"
indicatif = "0.18"
dirs-next = "2.0"
jsonwebtoken = "10.4"
config = "0.15"
rand = "0.10"
validator = { version = "0.20", features = ["derive"] }
bcrypt = "0.19"
hmac = "0.13"
sha2 = "0.11"
base64 = "0.22"
urlencoding = "2.1"
brevo = "1.0.0"
dialoguer = "0.12"
futures = "0.3"
bs58 = "0.5"