agentignore 0.2.0

FUSE filesystem that hides files matching .agentignore rules from processes - control what agents can see while building apps
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.87"
name = "agentignore"
version = "0.2.0"
authors = ["Stoyan Krastev (skkdevcraft)"]
build = false
exclude = [
    ".cargo/",
    ".devcontainer/",
    ".vscode/",
    ".agents/",
    "test-project/",
    "skills-lock.json",
    "AGENTS.md",
    "docs/prds/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FUSE filesystem that hides files matching .agentignore rules from processes - control what agents can see while building apps"
homepage = "https://github.com/skkdevcraft/agentignore"
documentation = "https://docs.rs/agentignore"
readme = "README.md"
keywords = [
    "fuse",
    "agent",
    "filesystem",
    "cli",
    "sandbox",
]
categories = [
    "filesystem",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/skkdevcraft/agentignore"

[lib]
name = "agentignore"
path = "src/lib.rs"

[[bin]]
name = "agentignore"
path = "src/main.rs"

[[test]]
name = "agentallow"
path = "tests/agentallow.rs"

[[test]]
name = "agentfs"
path = "tests/agentfs.rs"

[[test]]
name = "cascading_ignore"
path = "tests/cascading_ignore.rs"

[[test]]
name = "handle_table"
path = "tests/handle_table.rs"

[[test]]
name = "ignore"
path = "tests/ignore.rs"

[[test]]
name = "inode_table"
path = "tests/inode_table.rs"

[[test]]
name = "policy_allow"
path = "tests/policy_allow.rs"

[[test]]
name = "policy_basic"
path = "tests/policy_basic.rs"

[[test]]
name = "policy_hot_reload"
path = "tests/policy_hot_reload.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.ctrlc]
version = "3.4"

[dependencies.fuser]
version = "0.17"

[dependencies.ignore]
version = "0.4"

[dependencies.libc]
version = "0.2"

[dependencies.nix]
version = "0.29"
features = ["fs"]

[dependencies.procfs]
version = "0.18"

[dependencies.regex]
version = "1.12.3"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dev-dependencies.tempfile]
version = "3.27"