mirror of
https://github.com/kristoferssolo/cipher-workshop.git
synced 2025-12-20 11:04:38 +00:00
20 lines
364 B
TOML
20 lines
364 B
TOML
[package]
|
|
name = "cipher-factory"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
aes.workspace = true
|
|
cipher-core.workspace = true
|
|
clap = { workspace = true, optional = true }
|
|
des.workspace = true
|
|
strum = { workspace = true, features = ["derive"] }
|
|
|
|
[features]
|
|
default = []
|
|
clap = ["dep:clap"]
|
|
|
|
[lints]
|
|
workspace = true
|