Function pkg::authors [] [src]

Important traits for &'a mut [u8]
pub fn authors() -> &'static [&'static str]

Returns a slice reference of the crate authors.

Examples

extern crate pkg;

fn main() {
    println!("The crate authors are: {}", pkg::authors().join(", "));
}