mirror of
https://github.com/kristoferssolo/cipher-workshop.git
synced 2025-12-20 11:04:38 +00:00
36 lines
818 B
TOML
36 lines
818 B
TOML
[workspace]
|
|
members = ["aes", "cipher-core", "cipher-factory", "cli", "des", "web"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
aes = { path = "aes" }
|
|
cipher-core = { path = "cipher-core" }
|
|
cipher-factory = { path = "cipher-factory" }
|
|
claims = "0.8"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
color-eyre = "0.6"
|
|
des = { path = "des" }
|
|
rand = "0.9"
|
|
rstest = "0.26"
|
|
strum = "0.27"
|
|
thiserror = "2"
|
|
zeroize = { version = "1.8", features = ["derive"] }
|
|
|
|
[workspace.lints.clippy]
|
|
nursery = "warn"
|
|
pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
|
|
# Defines a size-optimized profile for the WASM bundle in release mode
|
|
[profile.wasm-release]
|
|
inherits = "release"
|
|
opt-level = 'z'
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|