cargo-toml-macros 1.0.0

Convinient macros for pulling fields from your Cargo.toml. Prettier than std::env
Documentation

cargo-toml-macros

Very clap inspired macros.

With one line of code, you get access to six fun and exciting macros!

use cargo-toml-macros;

crate_version!();
crate_authors!();
crate_name!();
crate_description!();
crate_homepage!();
crate_repository!();

Take a peak at lib.rs and see how much time you'll save using this crate! Joking aside, all this crate does is call the std::env with the right variable name for each macro.