[package]
edition = "2024"
rust-version = "1.85"
name = "codewalk"
version = "0.3.0"
authors = ["Santh Project <contact@santh.dev>"]
build = false
exclude = ["target/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Walk code trees with binary detection, bounded reads, and scanner-oriented filtering"
homepage = "https://github.com/santhsecurity/codewalk"
readme = "README.md"
keywords = [
"filesystem",
"directory",
"gitignore",
"traversal",
"security",
]
categories = [
"filesystem",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/codewalk"
[lib]
name = "codewalk"
path = "src/lib.rs"
[[example]]
name = "codewalk_basic"
path = "examples/codewalk_basic.rs"
[[example]]
name = "codewalk_config"
path = "examples/codewalk_config.rs"
[[example]]
name = "ignore_patterns"
path = "examples/ignore_patterns.rs"
[[test]]
name = "campaign_wave2_proptest"
path = "tests/campaign_wave2_proptest.rs"
[[test]]
name = "detect_tests"
path = "tests/detect_tests.rs"
[[test]]
name = "security_tests"
path = "tests/security_tests.rs"
[[test]]
name = "test_legendary_adversarial"
path = "tests/test_legendary_adversarial.rs"
[[test]]
name = "test_legendary_concurrent"
path = "tests/test_legendary_concurrent.rs"
[[test]]
name = "test_legendary_gap"
path = "tests/test_legendary_gap.rs"
[[test]]
name = "test_legendary_io"
path = "tests/test_legendary_io.rs"
[[test]]
name = "test_legendary_property"
path = "tests/test_legendary_property.rs"
[[test]]
name = "test_legendary_unit"
path = "tests/test_legendary_unit.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[[test]]
name = "walker_tests"
path = "tests/walker_tests.rs"
[dependencies.hashkit]
version = "0.1.1"
[dependencies.walkkit]
version = "0.1.0"
[dev-dependencies.proptest]
version = "=1.9.0"
[dev-dependencies.tempfile]
version = "=3.27.0"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"