forked from brl/citadel-tools
21 lines
549 B
TOML
21 lines
549 B
TOML
[package]
|
|
name = "update_generator"
|
|
description = "Utility to create updates for citadel's components"
|
|
version = "0.1.0"
|
|
authors = ["isa <isa@subgraph.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
libcitadel = { path = "../libcitadel" }
|
|
ed25519-dalek = {version = "2.1", features = ["rand_core", "pem"]}
|
|
serde_cbor = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_derive = "1.0"
|
|
rand = "0.8"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
rpassword = "7.3"
|
|
semver = "1.0"
|
|
zeroize = "1.8"
|
|
sodiumoxide = "0.2"
|
|
anyhow = "1.0"
|
|
glob = "0.3" |