[package]
edition = "2021"
rust-version = "1.85"
name = "git-sprout"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A drop-in git worktree add that materialises the tree with filesystem copy-on-write clones"
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",
]
license = "MIT"
repository = "https://github.com/alltuner/git-sprout"
[lib]
name = "git_sprout"
path = "src/lib.rs"
[[bin]]
name = "git-sprout"
path = "src/bin/git-sprout.rs"
[[bin]]
name = "git-worktree-fast"
path = "src/bin/git-worktree-fast.rs"
[dependencies.filetime]
version = "0.2.29"
[dependencies.gix-hash]
version = "0.26.0"
features = [
"sha1",
"sha256",
]
[dependencies.gix-index]
version = "0.54.0"
[dependencies.reflink-copy]
version = "0.1.30"
[dependencies.serde_json]
version = "1"
features = ["std"]
default-features = false
[dev-dependencies]
[target."cfg(unix)".dependencies.libc]
version = "0.2"