-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (74 loc) · 2.13 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[workspace]
members = [
"blockchain-core",
"developer-tools",
"pqc-crypto",
"smart-contracts",
"governance",
"interoperability",
"cli",
"explorer/indexer",
"explorer/api",
"benchmarks",
"quantumvault",
"Apps/QP-IAL/contract",
]
resolver = "2"
[workspace.package]
# Prevent child packages from assuming workspace outside this tree
[package]
name = "dytallix"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "dytallix"
path = "src/lib.rs"
[dependencies]
blake3 = { workspace = true }
sha2 = { workspace = true }
hex = { workspace = true }
# Added for integration tests referencing these crates
dytallix-pqc = { path = "pqc-crypto" }
dytallix-interoperability = { path = "interoperability" }
# Node/core crate for examples and tests
dytallix-node = { path = "blockchain-core" }
# PQC Wallet SDK dependencies
argon2 = "0.5"
ripemd = "0.1"
zeroize = { version = "1", features = ["derive"] }
rand = "0.8"
# Added for passphrase_input_demo example
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
[dev-dependencies]
# For examples / tests that need secure password input and memory zeroization
rpassword = "7"
zeroize = "1"
dytallix-contracts = { path = "smart-contracts" }
tokio = { workspace = true }
anyhow = "1.0"
# Integration test dependencies
reqwest = { version = "0.11", features = ["json"] }
serde_json = { workspace = true }
[workspace.dependencies]
# Shared dependencies for the workspace
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
blake3 = "1.5"
sha3 = "0.10"
sha2 = "0.10"
hex = "0.4"
clap = { version = "4.4", features = ["derive"] }
reqwest = { version = "0.11", features = ["json"] }
# Pin problematic dependencies to compatible versions
base64ct = "=1.6.0"
time = "0.3"
[profile.release]
opt-level = 3
lto = true
## NOTE:
## `dytallix-lean-launch` and `DytallixLiteLaunch` have been removed from this repo.
## If you need to vendor/patch pqcrypto crates again, reintroduce the vendored crates
## under a stable path (e.g. `vendor/`) and add `[patch.crates-io]` entries back here.