-
Notifications
You must be signed in to change notification settings - Fork 81
/
Cargo.toml
28 lines (25 loc) · 1.17 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
[package]
name = "iroha-python"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "iroha"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.20.0", features = ["multiple-pymethods", "rust_decimal"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
iroha = { git = "https://github.com/hyperledger/iroha.git", branch = "2.0.0-rc.1" }
iroha_config = { git = "https://github.com/hyperledger/iroha.git", branch = "2.0.0-rc.1" }
iroha_data_model = { git = "https://github.com/hyperledger/iroha.git", branch = "2.0.0-rc.1", features = ["transparent_api"] }
iroha_crypto = { git = "https://github.com/hyperledger/iroha.git", branch = "2.0.0-rc.1" }
iroha_schema = { git = "https://github.com/hyperledger/iroha.git", branch = "2.0.0-rc.1" }
iroha_primitives = { git = "https://github.com/hyperledger/iroha.git", branch = "2.0.0-rc.1" }
parity-scale-codec = { version = "3.6.9", default-features = false, features = ["derive"] }
paste = "1.0.14"
derive_more = "0.99.17"
eyre = { version = "0.6.12", features = ["pyo3"] }
rust_decimal = "1.35.0"
hex = "0.4.3"
url = "2.4.1"