[package]
edition = "2021"
rust-version = "1.85"
name = "tzap"
version = "0.1.2"
authors = ["Frank Zhu"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool for creating, listing, verifying, and extracting tzap archives"
documentation = "https://docs.rs/tzap"
readme = "README.md"
keywords = [
"archive",
"backup",
"encryption",
"recovery",
"zstd",
]
categories = [
"command-line-utilities",
"compression",
"cryptography",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/frankmanzhu/tzap"
[[bin]]
name = "tzap"
path = "src/main.rs"
[[test]]
name = "cli_smoke"
path = "tests/cli_smoke.rs"
[[test]]
name = "crates_io_metadata"
path = "tests/crates_io_metadata.rs"
[[test]]
name = "public_docs"
path = "tests/public_docs.rs"
[[test]]
name = "release_workflows"
path = "tests/release_workflows.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.rand]
version = "0.8"
[dependencies.rpassword]
version = "7"
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dependencies.tzap-core]
version = "0.1.2"
[dependencies.tzap-plugin-signing]
version = "0.1.1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dev-dependencies.predicates]
version = "3"