[package]
edition = "2021"
name = "agentdir"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Virtual filesystem for agent-optimized file exploration using CoW reflinks"
readme = "README.md"
keywords = [
"filesystem",
"virtual-filesystem",
"reflink",
"copy-on-write",
"agent",
]
categories = [
"filesystem",
"development-tools",
]
license = "MIT"
repository = "https://github.com/NomaDamas/agentdir"
[lib]
name = "agentdir"
path = "src/lib.rs"
[[test]]
name = "batch_map"
path = "tests/batch_map.rs"
[[test]]
name = "edge_agent_scenarios"
path = "tests/edge_agent_scenarios.rs"
[[test]]
name = "edge_fs"
path = "tests/edge_fs.rs"
[[test]]
name = "edge_known_issues"
path = "tests/edge_known_issues.rs"
[[test]]
name = "edge_persistence"
path = "tests/edge_persistence.rs"
[[test]]
name = "edge_reconciliation"
path = "tests/edge_reconciliation.rs"
[[test]]
name = "edge_virtual_paths"
path = "tests/edge_virtual_paths.rs"
[[test]]
name = "export_mapping"
path = "tests/export_mapping.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "query_apis"
path = "tests/query_apis.rs"
[[test]]
name = "readonly_materialization"
path = "tests/readonly_materialization.rs"
[[test]]
name = "snapshot"
path = "tests/snapshot.rs"
[[test]]
name = "symlink_materialization"
path = "tests/symlink_materialization.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.globset]
version = "0.4"
[dependencies.notify]
version = "8"
[dependencies.notify-debouncer-full]
version = "0.5"
[dependencies.reflink-copy]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3"