forked from hyperledger-iroha/iroha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
114 lines (94 loc) · 2.96 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
[package]
name = "iroha_core"
edition.workspace = true
version.workspace = true
authors.workspace = true
description.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
[lints]
workspace = true
[features]
default = ["telemetry"]
# Support lightweight telemetry, including diagnostics
telemetry = []
# Support Prometheus metrics. See https://prometheus.io/.
expensive-telemetry = ["iroha_telemetry/metric-instrumentation"]
# Profiler integration for wasmtime
profiling = []
[badges]
is-it-maintained-issue-resolution = { repository = "https://github.com/hyperledger/iroha" }
is-it-maintained-open-issues = { repository = "https://github.com/hyperledger/iroha" }
maintenance = { status = "actively-developed" }
[dependencies]
iroha_data_model = { workspace = true, features = ["transparent_api"] }
iroha_macro = { workspace = true }
iroha_p2p = { workspace = true }
iroha_logger = { workspace = true }
iroha_crypto = { workspace = true }
iroha_version = { workspace = true }
iroha_config = { workspace = true }
iroha_futures = { workspace = true }
iroha_telemetry = { workspace = true }
iroha_primitives = { workspace = true }
iroha_genesis = { workspace = true }
iroha_wasm_codec = { workspace = true }
storage = { workspace = true, features = ["serde"] }
async-trait = { workspace = true }
dashmap = { workspace = true }
eyre = { workspace = true }
futures = { workspace = true, features = ["std", "async-await"] }
parity-scale-codec = { workspace = true, features = ["derive"] }
rand = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["sync", "time", "rt", "io-util", "rt-multi-thread", "macros", "fs"] }
crossbeam-queue = { workspace = true }
thiserror = { workspace = true }
displaydoc = { workspace = true }
wasmtime = { workspace = true }
parking_lot = { workspace = true, features = ["deadlock_detection"] }
derive_more = { workspace = true }
nonzero_ext = { workspace = true }
uuid = { version = "1.8.0", features = ["v4"] }
indexmap = "2.2.6"
[dev-dependencies]
test_samples = { workspace = true }
criterion = { workspace = true }
hex = { workspace = true }
once_cell = { workspace = true }
tempfile = { workspace = true }
byte-unit = "5.1.4"
[[bench]]
name = "validation"
harness = false
[[bench]]
name = "kura"
harness = false
[[bench]]
name = "apply_blocks"
harness = false
path = "benches/blocks/apply_blocks_benchmark.rs"
[[bench]]
name = "validate_blocks"
harness = false
path = "benches/blocks/validate_blocks_benchmark.rs"
[[example]]
name = "apply_blocks"
harness = false
path = "benches/blocks/apply_blocks_oneshot.rs"
[[example]]
name = "validate_blocks"
harness = false
path = "benches/blocks/validate_blocks_oneshot.rs"
[package.metadata.cargo-all-features]
denylist = [
"schema-endpoint",
"telemetry",
"test-network"
]
skip_optional_dependencies = true