1f6121a04Sopenharmony_ci# lazycell
2f6121a04Sopenharmony_ci
3f6121a04Sopenharmony_ci<table>
4f6121a04Sopenharmony_ci    <tr>
5f6121a04Sopenharmony_ci        <td><strong>Linux</strong></td>
6f6121a04Sopenharmony_ci        <td><a href="https://travis-ci.org/indiv0/lazycell" title="Travis Build Status"><img src="https://travis-ci.org/indiv0/lazycell.svg?branch=master" alt="travis-badge"></img></a></td>
7f6121a04Sopenharmony_ci    </tr>
8f6121a04Sopenharmony_ci    <tr>
9f6121a04Sopenharmony_ci        <td colspan="2">
10f6121a04Sopenharmony_ci            <a href="https://indiv0.github.io/lazycell/lazycell" title="API Docs"><img src="https://img.shields.io/badge/API-docs-blue.svg" alt="api-docs-badge"></img></a>
11f6121a04Sopenharmony_ci            <a href="https://crates.io/crates/lazycell" title="Crates.io"><img src="https://img.shields.io/crates/v/lazycell.svg" alt="crates-io"></img></a>
12f6121a04Sopenharmony_ci            <a href="#license" title="License: MIT/Apache-2.0"><img src="https://img.shields.io/crates/l/lazycell.svg" alt="license-badge"></img></a>
13f6121a04Sopenharmony_ci            <a href="https://coveralls.io/github/indiv0/lazycell?branch=master" title="Coverage Status"><img src="https://coveralls.io/repos/github/indiv0/lazycell/badge.svg?branch=master" alt="coveralls-badge"></img></a>
14f6121a04Sopenharmony_ci        </td>
15f6121a04Sopenharmony_ci    </tr>
16f6121a04Sopenharmony_ci</table>
17f6121a04Sopenharmony_ci
18f6121a04Sopenharmony_ciRust library providing a lazily filled Cell.
19f6121a04Sopenharmony_ci
20f6121a04Sopenharmony_ci# Table of Contents
21f6121a04Sopenharmony_ci
22f6121a04Sopenharmony_ci* [Usage](#usage)
23f6121a04Sopenharmony_ci* [Contributing](#contributing)
24f6121a04Sopenharmony_ci* [Credits](#credits)
25f6121a04Sopenharmony_ci* [License](#license)
26f6121a04Sopenharmony_ci
27f6121a04Sopenharmony_ci## Usage
28f6121a04Sopenharmony_ci
29f6121a04Sopenharmony_ciAdd the following to your `Cargo.toml`:
30f6121a04Sopenharmony_ci
31f6121a04Sopenharmony_ci```toml
32f6121a04Sopenharmony_ci[dependencies]
33f6121a04Sopenharmony_cilazycell = "1.2"
34f6121a04Sopenharmony_ci```
35f6121a04Sopenharmony_ci
36f6121a04Sopenharmony_ciAnd in your `lib.rs` or `main.rs`:
37f6121a04Sopenharmony_ci
38f6121a04Sopenharmony_ci```rust
39f6121a04Sopenharmony_ciextern crate lazycell;
40f6121a04Sopenharmony_ci```
41f6121a04Sopenharmony_ci
42f6121a04Sopenharmony_ciSee the [API docs][api-docs] for information on using the crate in your library.
43f6121a04Sopenharmony_ci
44f6121a04Sopenharmony_ci## Contributing
45f6121a04Sopenharmony_ci
46f6121a04Sopenharmony_ciContributions are always welcome!
47f6121a04Sopenharmony_ciIf you have an idea for something to add (code, documentation, tests, examples,
48f6121a04Sopenharmony_cietc.) feel free to give it a shot.
49f6121a04Sopenharmony_ci
50f6121a04Sopenharmony_ciPlease read [CONTRIBUTING.md][contributing] before you start contributing.
51f6121a04Sopenharmony_ci
52f6121a04Sopenharmony_ci## Credits
53f6121a04Sopenharmony_ci
54f6121a04Sopenharmony_ciThe LazyCell library is based originally on work by The Rust Project Developers
55f6121a04Sopenharmony_cifor the project [crates.io][crates-io-repo].
56f6121a04Sopenharmony_ci
57f6121a04Sopenharmony_ciThe list of contributors to this project can be found at
58f6121a04Sopenharmony_ci[CONTRIBUTORS.md][contributors].
59f6121a04Sopenharmony_ci
60f6121a04Sopenharmony_ci## License
61f6121a04Sopenharmony_ci
62f6121a04Sopenharmony_ciLazyCell is distributed under the terms of both the MIT license and the Apache
63f6121a04Sopenharmony_ciLicense (Version 2.0).
64f6121a04Sopenharmony_ci
65f6121a04Sopenharmony_ciSee [LICENSE-APACHE][license-apache], and [LICENSE-MIT][license-mit] for details.
66f6121a04Sopenharmony_ci
67f6121a04Sopenharmony_ci[api-docs]: https://indiv0.github.io/lazycell/lazycell
68f6121a04Sopenharmony_ci[contributing]: https://github.com/indiv0/lazycell/blob/master/CONTRIBUTING.md "Contribution Guide"
69f6121a04Sopenharmony_ci[contributors]: https://github.com/indiv0/lazycell/blob/master/CONTRIBUTORS.md "List of Contributors"
70f6121a04Sopenharmony_ci[crates-io-repo]: https://github.com/rust-lang/crates.io "rust-lang/crates.io: Source code for crates.io"
71f6121a04Sopenharmony_ci[license-apache]: https://github.com/indiv0/lazycell/blob/master/LICENSE-APACHE "Apache-2.0 License"
72f6121a04Sopenharmony_ci[license-mit]: https://github.com/indiv0/lazycell/blob/master/LICENSE-MIT "MIT License"
73