[][src]Macro pkg::authors

macro_rules! authors {
    ($join:literal) => { ... };
    () => { ... };
}

Expands to the crate authors.

Examples

Basic usage:

const AUTHORS: &[&str] = pkg::authors!();

Joined string:

const AUTHORS: &str = pkg::authors!(", ");