forked from iotaledger/iota-rust-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
46 lines (43 loc) · 1.8 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace]
resolver = "2"
members = [
"crates/iota-sdk",
"crates/iota-sdk-crypto",
"crates/iota-sdk-ffi",
"crates/iota-sdk-graphql-client",
"crates/iota-sdk-graphql-client-build",
"crates/iota-sdk-transaction-builder",
"crates/iota-sdk-types",
]
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
[workspace.dependencies]
base64ct = "1.6.0"
bcs = "0.1.6"
bnum = "0.12.0"
cynic = "3.7.3"
derive_more = "2.0"
eyre = "0.6"
futures = "0.3.29"
hex = "0.4.3"
itertools = "0.13.0"
paste = "1.0.15"
primitive-types = { version = "0.14", features = ["impl-serde"] }
proptest = { version = "1.6.0", default-features = false }
rand = "0.8.5"
rand_core = "0.6.4"
reqwest = { version = "0.12", default-features = false }
roaring = { version = "0.11.2", default-features = false }
serde = "1.0.210"
serde_json = "1.0.128"
strum = "0.27.2"
test-strategy = "0.4.0"
thiserror = "2.0"
tokio = "1.40.0"
variadics_please = "1.1"
iota-crypto = { version = "0.0.1-alpha.1", package = "iota-sdk-crypto", path = "crates/iota-sdk-crypto", default-features = false }
iota-graphql-client = { version = "0.0.1-alpha.1", package = "iota-sdk-graphql-client", path = "crates/iota-sdk-graphql-client", default-features = false }
iota-graphql-client-build = { version = "0.0.1-alpha.1", package = "iota-sdk-graphql-client-build", path = "crates/iota-sdk-graphql-client-build", default-features = false }
iota-sdk = { version = "3.0.0-alpha.1", package = "iota-sdk", path = "crates/iota-sdk", default-features = false }
iota-transaction-builder = { version = "0.0.1-alpha.1", package = "iota-sdk-transaction-builder", path = "crates/iota-sdk-transaction-builder", default-features = false }
iota-types = { version = "0.0.1-alpha.1", package = "iota-sdk-types", path = "crates/iota-sdk-types", default-features = false }