[package]
edition = "2021"
rust-version = "1.91.1"
name = "snapdir-cli"
version = "1.5.0"
authors = ["Bermi Ferrer <bermi@bermilabs.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "snapdir CLI: the `snapdir` binary exposing all subcommands."
homepage = "https://github.com/snapdir/snapdir"
readme = "README.md"
license = "MIT"
repository = "https://github.com/snapdir/snapdir"
[[bin]]
name = "snapdir"
path = "src/main.rs"
[[test]]
name = "cache_commands"
path = "tests/cache_commands.rs"
[[test]]
name = "catalog_commands"
path = "tests/catalog_commands.rs"
[[test]]
name = "catalog_logging"
path = "tests/catalog_logging.rs"
[[test]]
name = "cli_surface"
path = "tests/cli_surface.rs"
[[test]]
name = "completions_man"
path = "tests/completions_man.rs"
[[test]]
name = "defaults_command"
path = "tests/defaults_command.rs"
[[test]]
name = "dryrun"
path = "tests/dryrun.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "external_store_roundtrip"
path = "tests/external_store_roundtrip.rs"
[[test]]
name = "list_options"
path = "tests/list_options.rs"
[[test]]
name = "manifest"
path = "tests/manifest.rs"
[[test]]
name = "path_normalize"
path = "tests/path_normalize.rs"
[[test]]
name = "plumbing"
path = "tests/plumbing.rs"
[[test]]
name = "progress_e2e"
path = "tests/progress_e2e.rs"
[[test]]
name = "progress_wire"
path = "tests/progress_wire.rs"
[[test]]
name = "ratelimit_select"
path = "tests/ratelimit_select.rs"
[[test]]
name = "store_env"
path = "tests/store_env.rs"
[[test]]
name = "store_roundtrip"
path = "tests/store_roundtrip.rs"
[[test]]
name = "sync_command"
path = "tests/sync_command.rs"
[[test]]
name = "sync_e2e"
path = "tests/sync_e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.clap_mangen]
version = "0.3"
[dependencies.libc]
version = "0.2"
[dependencies.snapdir-catalog]
version = "1.5.0"
[dependencies.snapdir-core]
version = "1.5.0"
[dependencies.snapdir-stores]
version = "1.5.0"
[dev-dependencies.assert_cmd]
version = "=2.2.2"
[dev-dependencies.assert_fs]
version = "=1.1.4"
[dev-dependencies.predicates]
version = "=3.1.4"
[dev-dependencies.trycmd]
version = "=1.2.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1