archery 1.2.1

Abstract over the atomicity of reference-counting pointers
Documentation
[badges.codecov]
branch = "main"
repository = "orium/archery"
service = "github"

[dependencies.serde]
default-features = false
optional = true
version = "1.0.204"

[dependencies.triomphe]
default-features = false
optional = true
version = "0.1.13"

[dev-dependencies.bincode]
version = "1.3.3"

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

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

[dev-dependencies.static_assertions]
version = "1.1.0"

[features]
fatal-warnings = []
serde = ["dep:serde"]
triomphe = ["dep:triomphe"]

[lib]
bench = false
name = "archery"
path = "src/lib.rs"

[lints.clippy]
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 = -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
autotests = false
build = false
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.66.0"
version = "1.2.1"

[package.metadata.docs.rs]
features = ["triomphe", "serde"]