mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
21 lines
504 B
TOML
21 lines
504 B
TOML
[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"
|