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

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

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

[dependencies]
nodrop = { version = "0.1.8" }
serde = { workspace = true, optional = true }
stable_deref_trait = "1.0.0"