[package]
edition = "2024"
name = "codewalk"
version = "0.2.5"
authors = ["Corum Collective LLC <contact@santh.io>"]
build = false
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"
license = "MIT"
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 = "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.ignore]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"process",
"time",
"fs",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.tempfile]
version = "3"