forked from hyperledger-iroha/iroha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (19 loc) · 1.07 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
[package]
name = "iroha_permissions_validators"
version = "2.0.0-pre-rc.8"
authors = ["Iroha 2 team <https://github.com/orgs/soramitsu/teams/iroha2>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
iroha_core = { version = "=2.0.0-pre-rc.8", path = "../core", default-features = false }
iroha_data_model = { version = "=2.0.0-pre-rc.8", path = "../data_model", default-features = false }
iroha_macro = { version = "=2.0.0-pre-rc.8", path = "../macro" }
iroha_schema = { version = "=2.0.0-pre-rc.8", path = "../schema" }
serde = { version = "1.0.142", features = ["derive"] }
derive_more = { version = "0.99.17", default-features = false, features = ["display"] }
parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] }
once_cell = "1.13.0"
thiserror = "1.0.32"
[dev-dependencies]
iroha_data_model = { version = "=2.0.0-pre-rc.8", path = "../data_model", default-features = false }
iroha_core = { version = "=2.0.0-pre-rc.8", path = "../core", default-features = false }