rust-rc

A copy of the http://doc.rust-lang.org/std/rc/ module that runs on stable Rust with Weak references.

As of this writing, std::rc::Weak is marked #[unstable] and therefore can not be used on stable Rust yet.

To make this work, some features had to be removed:

Recommended usage

```toml

Cargo.toml

[features] unstable = []

[dependencies] rc = { "0.1.0", # Unfortunately, as of this writing, Cargo features can not disable dependencies. # See https://github.com/rust-lang/cargo/issues/1839 # optional = true, } ```

```rust // lib.rs

[cfg(not(feature = "unstable"))] extern crate rc;

```

```rust // some_module.rs

[cfg(feature = "unstable")] use std::rc::{Rc, Weak};

[cfg(not(feature = "unstable"))] use rc::{Rc, Weak};

```