-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathCargo.toml
More file actions
170 lines (161 loc) · 5.21 KB
/
Copy pathCargo.toml
File metadata and controls
170 lines (161 loc) · 5.21 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
[package]
name = "namada_sdk"
description = "The main Namada SDK crate"
resolver = "2"
authors.workspace = true
edition.workspace = true
documentation.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
rust-version.workspace = true
[features]
default = ["std"]
mainnet = [
"namada_core/mainnet",
"namada_events/mainnet",
"namada_token/mainnet",
]
multicore = ["namada_token/multicore"]
std = ["fd-lock", "download-params", "namada_token/std", "namada_wallet/std"]
async-send = ["namada_io/async-send"]
namada-eth-bridge = ["namada_ethereum_bridge/namada-eth-bridge"]
benches = ["namada_core/benches", "namada_core/testing", "namada_state/benches"]
wasm-runtime = ["namada_vm/wasm-runtime"]
historic-masp = ["namada_token/historic-masp"]
# for tests and test utilities
testing = [
"masp_primitives/test-dependencies",
"namada_account/testing",
"namada_core/testing",
"namada_ethereum_bridge/testing",
"namada_governance/testing",
"namada_ibc/testing",
"namada_parameters/testing",
"namada_proof_of_stake/testing",
"namada_storage/testing",
"namada_token/testing",
"namada_tx/testing",
"proptest",
"jubjub",
]
arbitrary = [
"dep:arbitrary",
"namada_account/arbitrary",
"namada_core/arbitrary",
"namada_governance/arbitrary",
"namada_ibc/arbitrary",
"namada_token/arbitrary",
]
download-params = ["namada_token/download-params"]
migrations = [
"namada_migrations",
"namada_account/migrations",
"namada_core/migrations",
"namada_ethereum_bridge/migrations",
"namada_events/migrations",
"namada_governance/migrations",
"namada_proof_of_stake/migrations",
"namada_state/migrations",
"namada_storage/migrations",
"namada_token/migrations",
"namada_tx/migrations",
"namada_vote_ext/migrations",
"namada_gas/migrations",
"linkme",
]
[dependencies]
namada_account.workspace = true
namada_core.workspace = true
namada_ethereum_bridge.workspace = true
namada_events.workspace = true
namada_gas.workspace = true
namada_governance.workspace = true
namada_ibc.workspace = true
namada_io.workspace = true
namada_macros.workspace = true
namada_migrations = { workspace = true, optional = true }
namada_parameters.workspace = true
namada_proof_of_stake.workspace = true
namada_state.workspace = true
namada_storage.workspace = true
namada_token = { workspace = true, features = ["masp", "masp-validation"] }
namada_tx.workspace = true
namada_vm = { workspace = true, default-features = false }
namada_vote_ext.workspace = true
namada_vp.workspace = true
namada_wallet.workspace = true
arbitrary = { workspace = true, optional = true }
async-trait.workspace = true
bech32.workspace = true
bimap.workspace = true
borsh.workspace = true
circular-queue.workspace = true
clap = { workspace = true, default-features = false, features = ["std"] }
data-encoding.workspace = true
duration-str.workspace = true
either.workspace = true
ethbridge-bridge-contract.workspace = true
ethers.workspace = true
eyre.workspace = true
fd-lock = { workspace = true, optional = true }
futures.workspace = true
itertools.workspace = true
jubjub = { workspace = true, optional = true }
lazy_static.workspace = true
linkme = { workspace = true, optional = true }
masp_primitives.workspace = true
masp_proofs.workspace = true
num256.workspace = true
num-traits.workspace = true
owo-colors.workspace = true
paste.workspace = true
patricia_tree.workspace = true
proptest = { workspace = true, optional = true }
prost.workspace = true
rand.workspace = true
rand_core.workspace = true
regex.workspace = true
reqwest.workspace = true
rustversion.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
smooth-operator.workspace = true
tendermint-rpc.workspace = true
thiserror.workspace = true
tiny-bip39.workspace = true
toml.workspace = true
tracing.workspace = true
zeroize.workspace = true
xorf.workspace = true
[target.'cfg(not(target_family = "wasm"))'.dependencies]
rayon.workspace = true
tempfile.workspace = true
tokio = { workspace = true, features = ["full"] }
[target.'cfg(target_family = "wasm")'.dependencies]
tokio = { workspace = true, default-features = false, features = ["sync"] }
getrandom = { workspace = true, features = ["wasm_js"] }
[dev-dependencies]
namada_account = { path = "../account", features = ["testing"] }
namada_core = { path = "../core", features = ["rand", "testing"] }
namada_ethereum_bridge = { path = "../ethereum_bridge", features = ["testing"] }
namada_governance = { path = "../governance", features = ["testing"] }
namada_ibc = { path = "../ibc", features = ["testing"] }
namada_parameters.path = "../parameters"
namada_proof_of_stake = { path = "../proof_of_stake", features = ["testing"] }
namada_state = { path = "../state", features = ["testing"] }
namada_storage = { path = "../storage", features = ["testing"] }
namada_token = { path = "../token", features = ["testing", "masp"] }
namada_tx = { path = "../tx", features = ["testing"] }
namada_vm.path = "../vm"
namada_vote_ext.path = "../vote_ext"
namada_vp.path = "../vp"
assert_matches.workspace = true
jubjub.workspace = true
masp_primitives = { workspace = true, features = ["test-dependencies"] }
proptest.workspace = true
tempfile.workspace = true