[package]
edition = "2018"
name = "tuftool"
version = "0.16.0"
authors = ["iliana destroyer of worlds <iweller@amazon.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utility for creating and signing The Update Framework (TUF) repositories"
readme = "README.md"
keywords = [
"tuf",
"update",
"repository",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/awslabs/tough"
resolver = "2"
[features]
aws-sdk-rust = ["aws-sdk-rust-rustls"]
aws-sdk-rust-rustls = []
default = ["aws-sdk-rust"]
fips = [
"tough/fips",
"rustls/fips",
]
integ = []
[[bin]]
name = "tuftool"
path = "src/main.rs"
[[test]]
name = "clone_command"
path = "tests/clone_command.rs"
[[test]]
name = "create_command"
path = "tests/create_command.rs"
[[test]]
name = "create_repository_integration"
path = "tests/create_repository_integration.rs"
[[test]]
name = "delegation_commands"
path = "tests/delegation_commands.rs"
[[test]]
name = "download_command"
path = "tests/download_command.rs"
[[test]]
name = "root_command"
path = "tests/root_command.rs"
[[test]]
name = "test_utils"
path = "tests/test_utils.rs"
[[test]]
name = "update_command"
path = "tests/update_command.rs"
[dependencies.aws-config]
version = "1"
features = [
"credentials-process",
"default-https-client",
"rt-tokio",
]
default-features = false
[dependencies.aws-lc-rs]
version = "1"
[dependencies.aws-sdk-kms]
version = "1"
features = [
"behavior-version-latest",
"default-https-client",
"rt-tokio",
]
default-features = false
[dependencies.aws-sdk-ssm]
version = "1"
features = [
"behavior-version-latest",
"default-https-client",
"rt-tokio",
]
default-features = false
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.jiff]
version = "0.2"
features = ["serde"]
[dependencies.log]
version = "0.4"
[dependencies.maplit]
version = "1"
[dependencies.olpc-cjson]
version = "0.1"
[dependencies.rayon]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"rustls-no-provider",
"stream",
]
default-features = false
[dependencies.rustls]
version = "0.23"
[dependencies.serde]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.simplelog]
version = "0.12"
[dependencies.snafu]
version = "0.8"
features = ["backtraces-impl-backtrace-crate"]
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
]
[dependencies.tough]
version = "0.23"
features = ["http"]
[dependencies.tough-kms]
version = "0.15"
[dependencies.tough-ssm]
version = "0.18"
[dependencies.url]
version = "2"
[dependencies.walkdir]
version = "2"
[dev-dependencies.assert_cmd]
version = "2.1"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.futures-core]
version = "0.3"
[dev-dependencies.httptest]
version = "0.16"