-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathCargo.toml
42 lines (34 loc) · 1.15 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
[package]
name = "iroha_config"
edition.workspace = true
version.workspace = true
authors.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
iroha_config_base = { workspace = true }
iroha_data_model = { workspace = true }
iroha_primitives = { workspace = true, features = ["std"] }
iroha_crypto = { workspace = true, features = ["std"] }
error-stack = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["fmt", "ansi", "env-filter"] }
url = { workspace = true, features = ["serde"] }
serde = { workspace = true, features = ["derive"] }
serde_with = { workspace = true }
strum = { workspace = true, features = ["derive", "std"] }
serde_json = { workspace = true }
json5 = { workspace = true }
thiserror = { workspace = true }
displaydoc = { workspace = true }
derive_more = { workspace = true }
cfg-if = { workspace = true }
nonzero_ext = { workspace = true }
hex = { workspace = true, features = ["std"] }
# for tracing
stderrlog = "0.6.0"
[dev-dependencies]
expect-test = { workspace = true }
assertables = { workspace = true }
iroha_crypto = { workspace = true, features = ["rand"] }