lum_ccc_rust/Cargo.toml

30 lines
807 B
TOML

[workspace]
resolver = "2"
members = [
"crates/ccc-crypto-core",
"crates/ccc-crypto-wolfssl",
"crates/ccc-flutter-bridge",
"tests/conformance",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["LetUsMsg Engineering"]
license = "MIT"
repository = "https://github.com/letusmsg/ccc_rust"
# Shared dependency versions — all crates inherit from here.
[workspace.dependencies]
zeroize = { version = "1.8", features = ["derive"] }
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
once_cell = "1.19"
anyhow = "1.0"
env_logger = "0.11"
# ccc-crypto-core is referenced by every crate in the workspace.
ccc-crypto-core = { path = "crates/ccc-crypto-core" }