cdx-cli 0.6.0

Command-line interface for working with Codex Document Format (.cdx) files
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.88"
name = "cdx-cli"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for working with Codex Document Format (.cdx) files"
documentation = "https://docs.rs/cdx-cli"
readme = "README.md"
keywords = [
    "codex",
    "document",
    "cli",
    "format",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Entrolution/cdx-core"

[features]
default = []
encryption = [
    "dep:argon2",
    "dep:pbkdf2",
    "dep:hmac",
    "dep:sha2",
    "dep:base64",
    "dep:rand_core",
    "dep:getrandom",
]
rpassword = ["dep:rpassword"]
timestamps = [
    "timestamps-ots",
    "timestamps-rfc3161",
]
timestamps-ots = [
    "cdx-core/timestamps-ots",
    "dep:tokio",
]
timestamps-rfc3161 = [
    "cdx-core/timestamps-rfc3161",
    "dep:tokio",
]

[[bin]]
name = "cdx"
path = "src/main.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.argon2]
version = "0.5"
optional = true

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.cdx-core]
version = "0.6.0"
features = ["full"]

[dependencies.chrono]
version = "0.4"
features = [
    "serde",
    "now",
]
default-features = false

[dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
    "wrap_help",
]

[dependencies.clap_complete]
version = "4"

[dependencies.colored]
version = "3.1"

[dependencies.getrandom]
version = "0.4"
optional = true

[dependencies.hmac]
version = "0.12"
optional = true

[dependencies.pbkdf2]
version = "0.12"
optional = true

[dependencies.rand_core]
version = "0.10"
optional = true

[dependencies.rpassword]
version = "7"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]
optional = true

[dev-dependencies.assert_cmd]
version = "2.1.2"

[dev-dependencies.predicates]
version = "3.0"

[dev-dependencies.tempfile]
version = "3.14"