-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
44 lines (36 loc) · 837 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "rclite"
version = "0.2.4"
edition = "2018"
rust-version = "1.47"
authors = ["Khashayar Fereidani"]
description = "small, fast, and memory-friendly reference counting compatible with Arc and Rc APIs"
repository = "https://github.com/fereidani/rclite"
documentation = "https://docs.rs/rclite"
keywords = ["arc", "rc", "no_std"]
categories = ["data-structures", "concurrency", "no-std"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[features]
default = ["usize-for-small-platforms"]
usize-for-small-platforms = []
[dependencies]
branches = "0.1"
[dev-dependencies]
criterion = "0.4"
rayon = "1"
[[bench]]
name = "rc"
harness = false
[[bench]]
name = "rc_btree"
harness = false
[[bench]]
name = "rc_make_mut"
harness = false
[[bench]]
name = "arc"
harness = false
[[bench]]
name = "arc_btree"
harness = false