[package] name = "tor-config-path" version = "0.24.0" authors = ["The Tor Project, Inc.", "Nick Mathewson "] edition = "2021" rust-version = "1.77" license = "MIT OR Apache-2.0" homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" description = "Low-level file path handling for configuration of the Arti Tor implementation" keywords = ["tor", "arti"] categories = ["config"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [features] default = ["expand-paths"] full = ["expand-paths", "tor-error/full"] expand-paths = ["shellexpand", "directories"] experimental = ["testing", "experimental-api"] # Enable experimental APIs that are not yet officially supported. # # These APIs are not covered by semantic versioning. Using this # feature voids your "semver warrantee". experimental-api = ["__is_experimental"] # Enable testing-only APIs. APIs under this feature are not # covered by semver. testing = ["__is_experimental"] __is_experimental = [] [dependencies] directories = { version = "5", optional = true } once_cell = "1" serde = { version = "1.0.103", features = ["derive"] } shellexpand = { version = "3.0", optional = true, features = ["path"] } thiserror = "1" tor-error = { path = "../tor-error", version = "0.24.0" } [dev-dependencies] dirs = "5.0.0" rmp-serde = "1" serde_json = "1.0.50" toml = "0.8.8" [package.metadata.docs.rs] all-features = true