[package]
edition = "2021"
name = "memokey"
version = "0.1.0"
authors = ["KhulnaSoft, Ltd <info@khulnasoft.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for memobuild key generation, signing, and verification"
readme = "README.md"
keywords = [
"memobuild",
"sigstore",
"supply-chain",
"ed25519",
]
categories = [
"cryptography",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/nrelab/memokey"
[[bin]]
name = "memokey"
path = "src/main.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ed25519-dalek]
version = "2.2"
features = ["rand_core"]
[dependencies.hex]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.sha2]
version = "0.10"