-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 2.24 KB
/
Cargo.toml
File metadata and controls
56 lines (52 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
[workspace]
resolver = "2"
members = [
"crates/iota-sdk",
"crates/iota-sdk-bcs-schema",
"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",
"crates/iota-sdk/examples/polling-indexer",
]
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
[workspace.lints.clippy]
redundant_clone = "warn"
[workspace.dependencies]
# external dependencies
base64ct = "1.6.0"
bcs = "0.1.6"
bnum = "0.12.0"
cynic = "3.7.3"
derive_more = "2.1.1"
eyre = "0.6"
getrandom_2 = { version = "0.2", package = "getrandom", features = ["js"] }
getrandom_3 = { version = "0.3", package = "getrandom", features = ["wasm_js"] }
hex = "0.4.3"
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"
tracing = "0.1"
variadics_please = "1.1"
wasm-bindgen-test = "0.3"
# internal dependencies
iota-bcs-schema = { version = "0.0.0", package = "iota-sdk-bcs-schema", path = "crates/iota-sdk-bcs-schema" }
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 }