diff options
Diffstat (limited to 'components/servo_arc')
-rw-r--r-- | components/servo_arc/Cargo.toml | 5 | ||||
-rw-r--r-- | components/servo_arc/lib.rs | 2 |
2 files changed, 4 insertions, 3 deletions
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. |