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:

Supporting both stable and unstable Rust

This crates has an unstable Cargo feature that makes it simply re-export std::rc, so that none of the above drawbacks apply.

If you want your own code to support both stable and unstable Rust, and get the size optimizations when available, use this crates as follows:

```toml

Cargo.toml

[features] unstable = ["rc/unstable"]

[dependencies] rc = "0.1.1" ```

```rust // lib.rs

![cfgattr(feature = "unstable", feature(rcweak))]

extern crate rc; ```

```rust // some_module.rs

use rc::{Rc, Weak}; ```