Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 23-Nov-2023 | - | 769 | 491 | ||
.cargo_vcs_info.json | D | 23-Nov-2023 | 74 | 6 | 5 | |
Android.bp | D | 23-Nov-2023 | 1.6 KiB | 46 | 42 | |
CHANGELOG.md | D | 23-Nov-2023 | 6.3 KiB | 198 | 89 | |
Cargo.toml | D | 23-Nov-2023 | 1.2 KiB | 35 | 31 | |
Cargo.toml.orig | D | 23-Nov-2023 | 722 | 28 | 25 | |
LICENSE | D | 23-Nov-2023 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 23-Nov-2023 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 23-Nov-2023 | 1.1 KiB | 27 | 23 | |
METADATA | D | 23-Nov-2023 | 387 | 20 | 19 | |
MODULE_LICENSE_APACHE2 | D | 23-Nov-2023 | 0 | |||
OWNERS | D | 23-Nov-2023 | 40 | 2 | 1 | |
README.md | D | 23-Nov-2023 | 2.8 KiB | 74 | 53 | |
TEST_MAPPING | D | 23-Nov-2023 | 145 | 9 | 8 |
README.md
1# lazycell 2 3<table> 4 <tr> 5 <td><strong>Linux</strong></td> 6 <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> 7 </tr> 8 <tr> 9 <td colspan="2"> 10 <a href="https://crates.io/crates/lazycell" title="Crates.io downloads"><img src="https://img.shields.io/crates/d/lazycell.svg" alt="cargo-downloads-badge"></img></a> 11 <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> 12 <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> 13 <a href="#license" title="License: MIT/Apache-2.0"><img src="https://img.shields.io/crates/l/lazycell.svg" alt="license-badge"></img></a> 14 <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> 15 </td> 16 </tr> 17</table> 18 19Rust library providing a lazily filled Cell. 20 21# Table of Contents 22 23* [Usage](#usage) 24* [Contributing](#contributing) 25* [Credits](#credits) 26* [License](#license) 27 28## Usage 29 30Add the following to your `Cargo.toml`: 31 32```toml 33[dependencies] 34lazycell = "1.3" 35``` 36 37And in your `lib.rs` or `main.rs`: 38 39```rust 40extern crate lazycell; 41``` 42 43See the [API docs][api-docs] for information on using the crate in your library. 44 45## Contributing 46 47Contributions are always welcome! 48If you have an idea for something to add (code, documentation, tests, examples, 49etc.) feel free to give it a shot. 50 51Please read [CONTRIBUTING.md][contributing] before you start contributing. 52 53## Credits 54 55The LazyCell library is based originally on work by The Rust Project Developers 56for the project [crates.io][crates-io-repo]. 57 58The list of contributors to this project can be found at 59[CONTRIBUTORS.md][contributors]. 60 61## License 62 63LazyCell is distributed under the terms of both the MIT license and the Apache 64License (Version 2.0). 65 66See [LICENSE-APACHE][license-apache], and [LICENSE-MIT][license-mit] for details. 67 68[api-docs]: https://indiv0.github.io/lazycell/lazycell 69[contributing]: https://github.com/indiv0/lazycell/blob/master/CONTRIBUTING.md "Contribution Guide" 70[contributors]: https://github.com/indiv0/lazycell/blob/master/CONTRIBUTORS.md "List of Contributors" 71[crates-io-repo]: https://github.com/rust-lang/crates.io "rust-lang/crates.io: Source code for crates.io" 72[license-apache]: https://github.com/indiv0/lazycell/blob/master/LICENSE-APACHE "Apache-2.0 License" 73[license-mit]: https://github.com/indiv0/lazycell/blob/master/LICENSE-MIT "MIT License" 74