-
Notifications
You must be signed in to change notification settings - Fork 97
/
Cargo.toml
27 lines (24 loc) · 1.08 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 = "iota-client-python"
version = "1.0.0-rc.3"
authors = [ "IOTA Stiftung" ]
edition = "2021"
description = "Python bindings for the IOTA client library"
documentation = "https://wiki.iota.org/iota.rs/welcome"
homepage = "https://www.iota.org/"
repository = "https://github.com/iotaledger/iota.rs"
license = "Apache-2.0"
keywords = [ "iota", "tangle", "client", "python" ]
categories = [ "cryptography::cryptocurrencies" ]
publish = false
[lib]
name = "iota_client"
crate-type = [ "cdylib" ]
[dependencies]
iota-client = { path = "../../", default-features = false, features = [ "ledger_nano", "message_interface", "stronghold", "tls" ] }
fern-logger = { version = "0.5.0", default-features = false }
futures = { version = "0.3.26", default-features = false }
once_cell = { version = "1.17.1", default-features = false, features = [ "std" ] }
pyo3 = { version = "0.18.1", default-features = false, features = [ "macros", "extension-module" ] }
serde_json = { version = "1.0.94", default-features = false }
tokio = { version = "1.26.0", default-features = false, features = [ "macros" ] }