Prepare servo_arc for publication on crates.io

This commit is contained in:
Simon Sapin 2018-01-12 14:26:24 +01:00
parent 5a82a1d455
commit b0003f77e4
4 changed files with 18 additions and 17 deletions

View file

@ -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]

View file

@ -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"

View file

@ -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.