[package]
edition = "2021"
rust-version = "1.75"
name = "iso-code"
version = "0.1.1"
authors = ["Snehith Nayak <snehithn5@gmail.com>"]
build = false
exclude = ["tests/stress_*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe git worktree lifecycle management — prevents data loss bugs in AI coding agents"
homepage = "https://isocode.dev"
documentation = "https://docs.rs/iso-code"
readme = "README.md"
keywords = [
"git",
"worktree",
"ai",
"mcp",
"safety",
]
categories = [
"development-tools",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/snehith01001110/ISO-Framework"
[features]
conflict-detection = []
windows = ["junction"]
[lib]
name = "iso_code"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "custom_config"
path = "examples/custom_config.rs"
[[example]]
name = "gc"
path = "examples/gc.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "guards_matrix"
path = "tests/guards_matrix.rs"
[[test]]
name = "proptest_porcelain"
path = "tests/proptest_porcelain.rs"
[[test]]
name = "regression"
path = "tests/regression.rs"
[[test]]
name = "type_system"
path = "tests/type_system.rs"
[[test]]
name = "version_compat"
path = "tests/version_compat.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dunce]
version = "1"
[dependencies.fd-lock]
version = "4"
[dependencies.filesize]
version = "0.2"
[dependencies.junction]
version = "1"
optional = true
[dependencies.jwalk]
version = "0.8"
[dependencies.libc]
version = "0.2.185"
[dependencies.rand]
version = "0.8"
[dependencies.reflink-copy]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.sysinfo]
version = "0.37"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.assert_matches]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3.27.0"