forked from QuentinI/iroha-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 1.11 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
[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_client = { git = "https://github.com/hyperledger/iroha.git", tag = "v2.0.0-pre-rc.21" }
iroha_config = { git = "https://github.com/hyperledger/iroha.git", tag = "v2.0.0-pre-rc.21" }
iroha_data_model = { git = "https://github.com/hyperledger/iroha.git", tag = "v2.0.0-pre-rc.21", features = ["transparent_api"] }
iroha_crypto = { git = "https://github.com/hyperledger/iroha.git", tag = "v2.0.0-pre-rc.21" }
iroha_primitives = { git = "https://github.com/hyperledger/iroha.git", tag = "v2.0.0-pre-rc.21" }
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"