slack 0.25.0

slack realtime messaging client: https://api.slack.com/bot-users
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let found_tls = cfg!(feature = "with_rustls") || cfg!(feature = "with_native_tls");
    if !found_tls {
        panic!(
            "slack: at least one of 'with_native_tls' or 'with_rustls' features must be enabled"
        );
    }
}