forked from hyperledger-iroha/iroha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (26 loc) · 848 Bytes
/
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
[package]
name = "iroha_kagami" # Translates to teacher, the exemplar, the looking glass.
edition.workspace = true
version.workspace = true
authors.workspace = true
description = "A tool used to generate cryptographic keys, docs, the schema and genesis block."
license.workspace = true
[lints]
workspace = true
[dependencies]
iroha_executor_data_model.workspace = true
iroha_data_model.workspace = true
iroha_crypto.workspace = true
iroha_schema_gen.workspace = true
iroha_primitives.workspace = true
iroha_genesis.workspace = true
iroha_test_samples.workspace = true
clap = { workspace = true, features = ["derive"] }
serde = { workspace = true, features = ["derive"] }
color-eyre.workspace = true
serde_json.workspace = true
derive_more.workspace = true
parity-scale-codec.workspace = true
[[bin]]
name = "kagami"
path = "src/main.rs"