[package]
edition = "2024"
rust-version = "1.88"
name = "weavatrix-worktree"
version = "0.2.0"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
build = false
exclude = [
"tools/**",
"benchmark-results/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bounded, crash-recoverable multi-file worktree edits for source refactoring"
homepage = "https://weavatrix.com"
documentation = "https://docs.rs/weavatrix-worktree"
readme = "README.md"
keywords = [
"refactoring",
"transaction",
"worktree",
"text-edit",
"weavatrix",
]
categories = [
"development-tools",
"filesystem",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/weavatrix-worktree"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "weavatrix_worktree"
path = "src/lib.rs"
[[test]]
name = "public_contract"
path = "tests/public_contract.rs"
[[test]]
name = "structure"
path = "tests/structure.rs"
[[test]]
name = "transactions"
path = "tests/transactions.rs"
[dependencies.blazingly-json]
version = "0.1.0"
[dependencies.cap-fs-ext]
version = "4.0.2"
[dependencies.cap-std]
version = "4.0.2"
[dependencies.fs4]
version = "1.1.0"
features = ["sync"]
default-features = false
[dependencies.getrandom]
version = "0.4.3"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.sha2]
version = "0.11.0"
[dependencies.weavatrix-refactor-plan]
version = "0.1.0"
[dev-dependencies.tempfile]
version = "3.23.0"
[target."cfg(unix)".dependencies.rustix]
version = "1.1.4"
features = ["fs"]
[lints.clippy]
missing_errors_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"