aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/selectors/Cargo.toml2
-rw-r--r--components/servo_arc/Cargo.toml5
-rw-r--r--components/servo_arc/lib.rs2
3 files changed, 5 insertions, 4 deletions
diff --git a/components/selectors/Cargo.toml b/components/selectors/Cargo.toml
index 0dfca53e32f..acae6f8f5e4 100644
--- a/components/selectors/Cargo.toml
+++ b/components/selectors/Cargo.toml
@@ -28,7 +28,7 @@ log = "0.3"
fnv = "1.0"
phf = "0.7.18"
precomputed-hash = "0.1"
-servo_arc = { path = "../servo_arc" }
+servo_arc = { version = "0.1", path = "../servo_arc" }
smallvec = "0.6"
[dev-dependencies]
diff --git a/components/servo_arc/Cargo.toml b/components/servo_arc/Cargo.toml
index 9a82346e68b..84b75cab345 100644
--- a/components/servo_arc/Cargo.toml
+++ b/components/servo_arc/Cargo.toml
@@ -1,9 +1,10 @@
[package]
name = "servo_arc"
-version = "0.0.1"
+version = "0.1.0"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
-publish = false
+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"
diff --git a/components/servo_arc/lib.rs b/components/servo_arc/lib.rs
index 0e77abd6e4b..d7694901130 100644
--- a/components/servo_arc/lib.rs
+++ b/components/servo_arc/lib.rs
@@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
-//! Fork of Arc for Servo. This has the following advantages over std::Arc:
+//! Fork of Arc for Servo. This has the following advantages over std::sync::Arc:
//!
//! * We don't waste storage on the weak reference count.
//! * We don't do extra RMU operations to handle the possibility of weak references.