-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 2.13 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
[workspace.package]
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
license = "Apache-2.0"
repository = "https://github.com/iotaledger/identity"
rust-version = "1.65"
[workspace]
resolver = "2"
members = [
"identity_core",
"identity_credential",
"identity_did",
"identity_document",
"identity_iota",
"identity_storage",
"identity_iota_core",
"identity_resolver",
"identity_verification",
"identity_stronghold",
"identity_jose",
"identity_ecdsa_verifier",
"identity_eddsa_verifier",
"identity_pqc_verifier",
"examples",
]
exclude = ["bindings/wasm/identity_wasm", "bindings/grpc"]
[workspace.dependencies]
bls12_381_plus = { version = "0.8.17" }
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.13", package = "iota_interaction" }
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.13", package = "iota_interaction_ts" }
iota-sdk-types = { git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "d8cdab6ab3f2fd9ba8059ba56e80ba950badc88d", features = ["hash", "serde", "schemars"] }
product_common = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.13", package = "product_common" }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_json = { version = "1.0", default-features = false }
oqs = { version = "0.10", default-features = false, features = ["sigs", "std", "vendored"] }
strum = { version = "0.25", default-features = false, features = ["std", "derive"] }
thiserror = { version = "1.0", default-features = false }
json-proof-token = { version = "0.4" }
zkryptium = { version = "0.2.2", default-features = false, features = ["bbsplus"] }
[workspace.lints.clippy]
result_large_err = "allow"
large_enum_variant = "allow"
[profile.release.package.iota_interaction_ts]
opt-level = 's'
# Enabling debug for profile.release may lead to more helpful logged call stacks.
# TODO: Clarify if 'debug = true' facilitates error analysis via console logs.
# If not, remove the next line
# If yes, describe the helping effect in the comment above
# debug = true