summaryrefslogtreecommitdiffstats
path: root/servo/components/servo_arc/Cargo.toml
blob: 51aeb0e1f3c59737ea579d590eb58c2f4a1daacb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "servo_arc"
version = "0.1.1"
authors = ["The Servo Project Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/servo/servo"
description = "A fork of std::sync::Arc with some extra functionality and without weak references"

[lib]
name = "servo_arc"
path = "lib.rs"

[features]
gecko_refcount_logging = []
servo = ["serde", "track_alloc_size"]
track_alloc_size = []

[dependencies]
serde = { version = "1.0", optional = true }
stable_deref_trait = "1.0.0"