[package]
edition = "2024"
rust-version = "1.85"
name = "agentlink-fs"
version = "0.0.2"
authors = ["The agentlink contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Filesystem adapter for agentlink: symlinks, Windows junctions and privilege probing"
homepage = "https://github.com/fialhosoft/agentlink"
readme = false
keywords = [
"ai",
"agents",
"claude",
"cursor",
"codex",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/fialhosoft/agentlink"
[lib]
name = "agentlink_fs"
path = "src/lib.rs"
[[test]]
name = "real_filesystem"
path = "tests/real_filesystem.rs"
[dependencies.agentlink-domain]
version = "0.0.2"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(windows)".dependencies.junction]
version = "2"
[target."cfg(windows)".dev-dependencies.junction]
version = "2"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unused_qualifications = "warn"