# SPDX-FileCopyrightText: The rpds-pathtree authors # SPDX-License-Identifier: MPL-2.0 [package] name = "rpds-pathtree" description = "Immutable, path-addressable tree data structure" version = "0.13.0" license = "MPL-2.0" readme = "README.md" repository = "https://github.com/uklotzde/rpds-pathtree" categories = ["data-structures"] keywords = ["immutable", "tree", "path"] edition = "2021" rust-version = "1.76" include = ["/src", "/README.md", "/LICENSES"] [dependencies] derive_more = { version = "1.0.0", features = ["display", "error"] } itertools = "0.13.0" log = "0.4.22" rpds = "1.1.0" [features] "default" = [] "sync" = [] # Enables additional debug assertions that may severely impact the runtime performance. "expensive-debug-assertions" = [] [lints.rust] future_incompatible = "warn" let_underscore = "warn" missing_debug_implementations = "warn" rust_2018_idioms = "warn" rust_2021_compatibility = "warn" unreachable_pub = "warn" unsafe_code = "warn" unused = "warn" [lints.clippy] pedantic = "warn" clone_on_ref_ptr = "warn" missing_const_for_fn = "warn" self_named_module_files = "warn" # Repeating the type name in `Default::default()` expressions is not needed as # long as the context is obvious. default_trait_access = "allow" # The error types returned should be self-explanatory. missing_errors_doc = "allow" # Repetitions of module/type names occur frequently when using many modules for # keeping the size of the source files handy. Often types have the same name as # their parent module. module_name_repetitions = "allow" # This warns even when lint group and lint have the same level (`warn`). # This is very misleading and results in lots of false positives. # See also: lint_groups_priority = "allow"