https://github.com/dimfeld/rust-envoption
Simple helper functions for environment variables
https://github.com/dimfeld/rust-envoption
Last synced: over 1 year ago
JSON representation
Simple helper functions for environment variables
- Host: GitHub
- URL: https://github.com/dimfeld/rust-envoption
- Owner: dimfeld
- License: apache-2.0
- Created: 2016-11-03T23:42:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-18T22:55:01.000Z (over 9 years ago)
- Last Synced: 2024-10-07T07:06:57.723Z (almost 2 years ago)
- Language: Rust
- Size: 18.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# EnvOption
[](https://crates.io/crates/envoption)
Simple functions for parsing environment variables when reading config.
* `require` - Parse an environment variable or return an error if it doesn't exist.
* `optional` - Same as above, but return an `Option` set to `None` if the variable doesn't exist.
* `with_default` - As above, but return a default value if the variable doesn't exist.
[Documentation](https://docs.rs/envoption/)
## License
Licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
additional terms or conditions.