18 lines
513 B
TOML
18 lines
513 B
TOML
[package]
|
|
name = "fds-release"
|
|
version.workspace = true
|
|
build = "../../tools/version-build.rs"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
description = "FDS release manifest signing and explicit-key verification"
|
|
|
|
[dependencies]
|
|
clap.workspace = true
|
|
fds-common = { path = "../fds-common" }
|
|
ed25519-dalek = { version = "=3.0.0", default-features = false, features = ["zeroize"] }
|
|
zeroize = { version = "1", features = ["alloc"] }
|
|
libc = "0.2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|