git-sprout 0.1.0

A drop-in git worktree add that materialises the tree with filesystem copy-on-write clones
Documentation
[package]
name = "git-sprout"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
description = "A drop-in git worktree add that materialises the tree with filesystem copy-on-write clones"
license = "MIT"
repository = "https://github.com/alltuner/git-sprout"
homepage = "https://sprout.alltuner.com"
documentation = "https://docs.rs/git-sprout"
readme = "README.md"
keywords = ["git", "worktree", "copy-on-write", "reflink", "apfs"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "git-sprout"
path = "src/bin/git-sprout.rs"

[[bin]]
name = "git-worktree-fast"
path = "src/bin/git-worktree-fast.rs"

[dependencies]
filetime = "0.2.29"
gix-hash = { version = "0.26.0", features = ["sha1", "sha256"] }
gix-index = "0.54.0"
reflink-copy = "0.1.30"
serde_json = { version = "1", default-features = false, features = ["std"] }

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[dev-dependencies]