archery 1.2.0

Abstract over the atomicity of reference-counting pointers
Documentation
[[bench]]
harness = false
name = "std_rc"
path = "benches/std_rc.rs"

[[bench]]
harness = false
name = "std_arc"
path = "benches/std_arc.rs"

[[bench]]
harness = false
name = "archery_shared_pointer_rc"
path = "benches/archery_shared_pointer_rc.rs"

[[bench]]
harness = false
name = "archery_shared_pointer_arc"
path = "benches/archery_shared_pointer_arc.rs"

[[bench]]
harness = false
name = "archery_shared_pointer_arct"
path = "benches/archery_shared_pointer_arct.rs"
required-features = ["triomphe"]
[badges.codecov]
branch = "main"
repository = "orium/archery"
service = "github"
[dependencies.serde]
default-features = false
optional = true
version = "1.0.197"

[dependencies.static_assertions]
version = "1.1.0"

[dependencies.triomphe]
default-features = false
optional = true
version = "0.1.9"
[dev-dependencies.bincode]
version = "1.3.3"

[dev-dependencies.compiletest_rs]
version = "0.10.2"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"

[dev-dependencies.pretty_assertions]
version = "1.2.1"

[features]
fatal-warnings = []
serde = ["dep:serde"]
triomphe = ["dep:triomphe"]
[lints.clippy]
correctness = "deny"
explicit-deref-methods = "allow"
if-not-else = "allow"
inline-always = "allow"
match-bool = "allow"
missing-errors-doc = "allow"
missing-safety-doc = "allow"
module-name-repetitions = "allow"
partialeq-ne-impl = "allow"
similar-names = "allow"
single-match-else = "allow"
use-self = "allow"
wildcard-imports = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rustdoc]
redundant-explicit-links = "allow"

[package]
authors = ["Diogo Sousa <diogogsousa@gmail.com>"]
categories = ["concurrency", "memory-management", "rust-patterns"]
description = "Abstract over the atomicity of reference-counting pointers"
documentation = "https://docs.rs/archery"
edition = "2021"
homepage = "https://github.com/orium/archery"
include = ["/src/**/*.rs", "/Cargo.toml", "/LICENSE.md", "/README.md", "/release-notes.md"]
keywords = ["rc", "arc", "reference-counting", "no_std"]
license = "MPL-2.0"
name = "archery"
readme = "README.md"
repository = "https://github.com/orium/archery"
rust-version = "1.60.0"
version = "1.2.0"
[package.metadata.docs.rs]
features = ["triomphe", "serde"]