[[bin]]
name = "ctree"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
features = ["derive"]
version = "4"
[dependencies.clonetree]
version = "0.0.2"
[lints.clippy]
absolute_paths = "warn"
branches_sharing_code = "warn"
cfg_not_test = "warn"
cognitive_complexity = "warn"
comparison_chain = "warn"
excessive_nesting = "warn"
ignore_without_reason = "warn"
items_after_statements = "warn"
let_underscore_must_use = "warn"
many_single_char_names = "warn"
missing_docs_in_private_items = "warn"
multiple_inherent_impl = "warn"
needless_pass_by_ref_mut = "warn"
needless_pass_by_value = "warn"
redundant_clone = "warn"
redundant_pub_crate = "warn"
self_named_module_files = "warn"
tests_outside_test_module = "warn"
too_many_lines = "warn"
use_self = "warn"
wildcard_dependencies = "warn"
[lints.rust]
missing_docs = "warn"
[package]
authors = ["Aldo Cortesi <aldo@corte.si>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A copy-on-write directory library for Rust with fast reflink cloning"
edition = "2021"
license = "MIT"
name = "ctree"
readme = "README.md"
repository = "https://github.com/cortesi/clonetree"
version = "0.0.2"