Go to file
Nikita Pekin 8171c86c29 chore(README.md): update package version
Update package version in `README.md` usage example.
2016-08-16 00:39:15 -04:00
src impr: Use UnsafeCell instead of RefCell 2016-08-15 21:48:12 -04:00
tests test: add integration tests 2016-03-28 05:57:51 -04:00
.clog.toml chore(CONTRIBUTING): add CONTRIBUTING.md 2016-03-28 07:10:30 -04:00
.gitignore feat: add initial commit 2016-03-15 21:29:11 -04:00
.travis.yml chore(travis): enable fast_finish 2016-08-15 22:07:18 -04:00
appveyor.yml chore(README.md): fix #license link 2016-06-29 05:02:33 -04:00
Cargo.toml chore: cut the 0.2.1 release 2016-08-16 00:31:28 -04:00
CHANGELOG.md chore: cut the 0.2.1 release 2016-08-16 00:31:28 -04:00
CONTRIBUTING.md chore(CONTRIBUTING): add CONTRIBUTING.md 2016-03-28 07:10:30 -04:00
CONTRIBUTORS.md chore: add Carl Lerche to contributors list 2016-08-15 21:49:57 -04:00
LICENSE-APACHE feat: add initial implementation 2016-03-15 21:29:11 -04:00
LICENSE-MIT chore(CONTRIBUTING): add CONTRIBUTING.md 2016-03-28 07:10:30 -04:00
README.md chore(README.md): update package version 2016-08-16 00:39:15 -04:00
rustfmt.toml chore(rustfmt): add rustfmt.toml 2016-03-28 05:32:32 -04:00

lazycell

Linux / OS X travis-badge
Windows appveyor-badge
api-docs-badge crates-io license-badge coveralls-badge

Rust library providing a lazily filled Cell.

Table of Contents

Usage

Add the following to your Cargo.toml:

[dependencies]
lazycell = "0.3"

And in your lib.rs or main.rs:

extern crate lazycell;

See the API docs for information on using the crate in your library.

Contributing

Contributions are always welcome! If you have an idea for something to add (code, documentation, tests, examples, etc.) feel free to give it a shot.

Please read CONTRIBUTING.md before you start contributing.

Credits

The LazyCell library is based originally on work by The Rust Project Developers for the project crates.io.

The list of contributors to this project can be found at CONTRIBUTORS.md.

License

LazyCell is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, and LICENSE-MIT for details.