Macro pkg::pkg_homepage [] [src]

macro_rules! pkg_homepage {
    () => { ... };
}

Macro for getting the crate homepage from the cargo manifest.

Examples

#[macro_use]
extern crate pkg;

fn main() {
    println!("The crate name is {}", pkg_name!());
}