Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/indiv0/lazycell
Rust library providing a lazily filled Cell
https://github.com/indiv0/lazycell
rust rust-library
Last synced: 1 day ago
JSON representation
Rust library providing a lazily filled Cell
- Host: GitHub
- URL: https://github.com/indiv0/lazycell
- Owner: indiv0
- License: apache-2.0
- Created: 2016-03-15T17:17:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-12T01:07:00.000Z (over 4 years ago)
- Last Synced: 2024-12-13T17:05:27.265Z (9 days ago)
- Topics: rust, rust-library
- Language: Rust
- Size: 825 KB
- Stars: 61
- Watchers: 4
- Forks: 17
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# lazycell
Rust library providing a lazily filled Cell.
# Table of Contents
* [Usage](#usage)
* [Contributing](#contributing)
* [Credits](#credits)
* [License](#license)## Usage
Add the following to your `Cargo.toml`:
```toml
[dependencies]
lazycell = "1.3"
```And in your `lib.rs` or `main.rs`:
```rust
extern crate lazycell;
```See the [API docs][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][contributing] before you start contributing.
## Credits
The LazyCell library is based originally on work by The Rust Project Developers
for the project [crates.io][crates-io-repo].The list of contributors to this project can be found at
[CONTRIBUTORS.md][contributors].## License
LazyCell is distributed under the terms of both the MIT license and the Apache
License (Version 2.0).See [LICENSE-APACHE][license-apache], and [LICENSE-MIT][license-mit] for details.
[api-docs]: https://indiv0.github.io/lazycell/lazycell
[contributing]: https://github.com/indiv0/lazycell/blob/master/CONTRIBUTING.md "Contribution Guide"
[contributors]: https://github.com/indiv0/lazycell/blob/master/CONTRIBUTORS.md "List of Contributors"
[crates-io-repo]: https://github.com/rust-lang/crates.io "rust-lang/crates.io: Source code for crates.io"
[license-apache]: https://github.com/indiv0/lazycell/blob/master/LICENSE-APACHE "Apache-2.0 License"
[license-mit]: https://github.com/indiv0/lazycell/blob/master/LICENSE-MIT "MIT License"