[package]
edition = "2024"
rust-version = "1.90"
name = "facet-path"
version = "0.43.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Path tracking for navigating Facet type structures"
homepage = "https://facet.rs"
readme = "README.md"
keywords = [
"facet",
"path",
"reflection",
"error-reporting",
]
categories = [
"development-tools",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/facet-rs/facet"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"arborium-header.html",
]
[package.metadata."docs.rs"]
rustdoc-args = [
"--html-in-header",
"arborium-header.html",
]
[features]
alloc = ["facet-core/alloc"]
default = ["std"]
std = [
"alloc",
"facet-core/std",
]
[lib]
name = "facet_path"
path = "src/lib.rs"
[[test]]
name = "path_formatting"
path = "tests/path_formatting.rs"
[dependencies.facet-core]
version = "0.43.2"
default-features = false
[dev-dependencies.insta]
version = "^1.44.3"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(facet_no_doc)"]