Function pkg::homepage [] [src]

pub fn homepage() -> &'static str

Returns the crate homepage.

Examples

extern crate pkg;

fn main() {
    println!("The crate homepage is {}", pkg::homepage());
}