[badges.codecov]
branch = "main"
repository = "orium/rpds"
service = "github"
[[bench]]
harness = false
name = "rpds_hash_trie_map"
path = "benches/rpds_hash_trie_map.rs"
[[bench]]
harness = false
name = "rpds_hash_trie_map_sync"
path = "benches/rpds_hash_trie_map_sync.rs"
[[bench]]
harness = false
name = "rpds_list"
path = "benches/rpds_list.rs"
[[bench]]
harness = false
name = "rpds_list_sync"
path = "benches/rpds_list_sync.rs"
[[bench]]
harness = false
name = "rpds_queue"
path = "benches/rpds_queue.rs"
[[bench]]
harness = false
name = "rpds_queue_sync"
path = "benches/rpds_queue_sync.rs"
[[bench]]
harness = false
name = "rpds_red_black_tree_map"
path = "benches/rpds_red_black_tree_map.rs"
[[bench]]
harness = false
name = "rpds_red_black_tree_map_sync"
path = "benches/rpds_red_black_tree_map_sync.rs"
[[bench]]
harness = false
name = "rpds_vector"
path = "benches/rpds_vector.rs"
[[bench]]
harness = false
name = "rpds_vector_sync"
path = "benches/rpds_vector_sync.rs"
[[bench]]
harness = false
name = "std_btree_map"
path = "benches/std_btree_map.rs"
[[bench]]
harness = false
name = "std_hash_map"
path = "benches/std_hash_map.rs"
[[bench]]
harness = false
name = "std_linked_list"
path = "benches/std_linked_list.rs"
[[bench]]
harness = false
name = "std_vec"
path = "benches/std_vec.rs"
[[bench]]
harness = false
name = "std_vec_deque"
path = "benches/std_vec_deque.rs"
[dependencies.archery]
features = ["triomphe"]
version = "1.2.2"
[dependencies.rayon]
optional = true
version = "1.11.0"
[dependencies.serde]
default-features = false
optional = true
version = "1.0.228"
[dev-dependencies.criterion]
version = "0.7.0"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.rand]
version = "0.9.2"
[dev-dependencies.serde_json]
version = "1.0.145"
[dev-dependencies.static_assertions]
version = "1.1.0"
[features]
default = ["std"]
rayon = ["dep:rayon", "std"]
std = []
[lib]
bench = false
name = "rpds"
path = "src/lib.rs"
[lints.clippy]
enum-glob-use = "allow"
if-not-else = "allow"
match-bool = "allow"
match-same-arms = "allow"
missing-panics-doc = "allow"
module-name-repetitions = "allow"
multiple-bound-locations = "allow"
similar-names = "allow"
single-match-else = "allow"
struct-field-names = "allow"
type-complexity = "allow"
type-repetition-in-bounds = "allow"
unnested-or-patterns = "allow"
use-self = "allow"
wildcard-imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -2
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -2
[lints.rustdoc]
redundant-explicit-links = "allow"
[package]
authors = ["Diogo Sousa <diogogsousa@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures"]
description = "Persistent data structures with structural sharing"
documentation = "https://docs.rs/rpds"
edition = "2024"
homepage = "https://github.com/orium/rpds"
include = ["/src/**/*.rs", "/benches/**/*.rs", "/Cargo.toml", "/LICENSE.md", "/README.md", "/release-notes.md"]
keywords = ["data-structure", "data-structures", "persistent", "immutable", "no_std"]
license = "MIT"
name = "rpds"
readme = "README.md"
repository = "https://github.com/orium/rpds"
rust-version = "1.85.0"
version = "1.2.0"
[package.metadata.docs.rs]
features = ["serde"]