[package]
edition = "2024"
rust-version = "1.85.0"
name = "logical-path"
version = "0.1.0"
build = false
exclude = [
".devcontainer/",
".github/",
"Makefile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Translate canonical (symlink-resolved) filesystem paths back to their logical (symlink-preserving) equivalents"
readme = "README.md"
keywords = [
"symlink",
"path",
"canonical",
"logical",
"pwd",
]
categories = [
"filesystem",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/brooke-hamilton/logical-path"
[lib]
name = "logical_path"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.log]
version = "0.4"
[dev-dependencies.tempfile]
version = "3"