[package]
edition = "2018"
name = "archery"
version = "0.3.0"
authors = ["Diogo Sousa <diogogsousa@gmail.com>"]
include = ["/src/**/*.rs", "/Cargo.toml", "/LICENSE.md", "/README.md", "/release-notes.md"]
description = "Abstract over the atomicity of reference-counting pointers"
homepage = "https://github.com/orium/archery"
documentation = "https://docs.rs/archery"
readme = "README.md"
keywords = ["rc", "arc", "reference-counting"]
categories = ["concurrency", "memory-management", "rust-patterns"]
license = "MPL-2.0"
repository = "https://github.com/orium/archery"
[[bench]]
name = "std_rc"
path = "benches/std_rc.rs"
harness = false
[[bench]]
name = "std_arc"
path = "benches/std_arc.rs"
harness = false
[[bench]]
name = "archery_shared_pointer_rc"
path = "benches/archery_shared_pointer_rc.rs"
harness = false
[[bench]]
name = "archery_shared_pointer_arc"
path = "benches/archery_shared_pointer_arc.rs"
harness = false
[dependencies.static_assertions]
version = "0.3"
[dev-dependencies.compiletest_rs]
version = "0.3"
features = ["tmp", "stable"]
[dev-dependencies.criterion]
version = "0.2"
[dev-dependencies.pretty_assertions]
version = "0.6"
[features]
fatal-warnings = []
[badges.codecov]
branch = "master"
repository = "orium/archery"
service = "github"
[badges.travis-ci]
branch = "master"
repository = "orium/archery"