servo/components/servo_arc/Cargo.toml
2018-01-12 15:10:44 +01:00

19 lines
444 B
TOML

[package]
name = "servo_arc"
version = "0.1.0"
authors = ["The Servo Project Developers"]
license = "MPL-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]
servo = ["serde"]
[dependencies]
nodrop = {version = "0.1.8"}
serde = {version = "1.0", optional = true}
stable_deref_trait = "1.0.0"