forked from rumos-io/gears
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
137 lines (119 loc) · 3.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[workspace]
members = [
"extensions",
# no local deps
"database",
"tendermint",
"core-types",
# with local deps
"address",
"trees",
"kv_store",
"keyring",
"gears",
# macros
"macros/tx-derive",
"macros/query-derive",
"macros/protobuf-derive",
"macros/key-derive",
# GAIA
"gaia-rs",
# xmodules
"x/auth",
"x/bank",
"x/distribution",
"x/evidence",
"x/gov",
"x/ibc-rs",
"x/slashing",
"x/staking",
"x/genutil", "x/upgrade", "x/mint",
# new unsorted
]
resolver = "2"
[workspace.dependencies]
# important
ibc-proto = { branch = "v0.33", git = "https://github.com/rumos-io/ibc-proto-rs", features = ["server", "proto-descriptor"] }
# nutype
bytes = { version = "1.2.1" }
bnum = { version = "0.11.0" }
num-bigint = { version = "0.4.4" }
num-format = { version = "0.4.4" }
num-traits = { version = "0.2.17" }
secp256k1 = { version = "0.28.1" }
integer-encoding = { version = "4.0.0" }
nutype = { version = "0.4.0" }
url = { version = "2.5.0" }
time = "0.3"
ux = "0.1.6"
chrono = "0.4.38"
vec1 = { version = "1.12.0" }
# serialization
serde = { version = "1.0", default-features = false }
serde_json = { version = "1.0.93" }
serde-aux = { version = "4.2.0" }
serde_with = { version = "3.0.0" }
prost = { version = "0.13" }
schemars = { version = "0.8.16" }
hex = { version = "0.4.3" }
data-encoding = { version = "2.4.0" } #replace hex with this crate
ciborium = { version = "0.2.1" }
base64-serde = { version = "0.7.0" }
toml = { version = "0.8.8" }
# hashing/encryption
argon2 = { version = "0.5.2" }
base64 = { version = "0.22" }
bech32 = { version = "0.9.1" }
bip32 = { version = "0.5.1" }
k256 = { version = "0.13.1" }
pkcs8 = { version = "0.10.2" }
ripemd = { version = "0.1.3" }
sha2 = { version = "0.10.6" }
# utils
anyhow = { version = "1.0.70" }
thiserror = { version = "1.0.13" }
clap = { version = "4.2.2", features = ["derive"] }
clap_complete = { version = "4.2.1" }
strum = { version = "0.26.2", features = ["derive"] }
tokio = { version = "1.27.0" }
rand = { version = "0.8.5" }
regex = { version = "1.10.2" }
dirs = { version = "5.0.1" }
dircpy = { version = "0.3.15" }
constcat = { version = "0.5.0" } # upgraded std::concat! which accepts const
derive_more = "1.0"
former = "0.16.0"
nz = "0.4.1"
itertools = "0.13.0"
# log
log = { version = "0.4.21" }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3.18", default-features = true }
# networking
axum = { version = "0.7.4" }
http = { version = "0.2.12" }
tonic = { version = "0.12" }
tonic-reflection = { version = "0.12" }
tower-http = { version = "0.5.2", features = ["trace"] }
tower-service = "0.3.2"
tower-layer = "0.3.2"
# test utils
assert_fs = { version = "1.1.1" }
run_script = { version = "0.10.1" }
# mockiato = "0.9.6"
# other
byteorder = { version = "1.5.0" }
handlebars = { version = "5.1.0" }
rpassword = { version = "7.2.0" }
#macros
quote = "1.0"
syn = "2.0"
proc-macro2 = "1.0"
darling = "0.20"
[workspace.lints.clippy]
unused_async = "deny"
rust_2018_idioms = "deny"
missing_docs = "deny"
missing_debug_implementations = "deny" # opt out where Debug is really redundant
future_incompatible = "deny"
unsafe-code = "deny"