slack_api 0.23.1

Interface for the Slack Web API
Documentation
[[example]]
name = "start_rtm"
path = "examples/start_rtm.rs"
required-features = ["reqwest"]

[[example]]
name = "channel_history"
path = "examples/channel_history.rs"
required-features = ["reqwest"]

[[example]]
name = "channel_history_sync"
path = "examples/channel_history_sync.rs"
required-features = ["sync", "reqwest_blocking"]
[dependencies.async-trait]
optional = true
package = "async-trait"
version = "0.1"

[dependencies.reqwest_]
default-features = false
features = ["gzip"]
optional = true
package = "reqwest"
version = "0.10"

[dependencies.serde]
version = "1.0"

[dependencies.serde_derive]
version = "1.0"

[dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
features = ["macros"]
package = "tokio"
version = "0.2"

[features]
async = ["async-trait"]
default = ["reqwest", "with_native_tls"]
reqwest = ["reqwest_", "async"]
reqwest_blocking = ["reqwest_/blocking", "sync"]
sync = []
with_native_tls = ["reqwest_/native-tls"]
with_rustls = ["reqwest_/rustls-tls"]

[package]
authors = ["Benjamin Elder <ben.the.elder@gmail.com>", "Matt Jones <mthjones@gmail.com>"]
description = "Interface for the Slack Web API"
documentation = "https://docs.rs/slack_api"
edition = "2018"
license = "Apache-2.0"
name = "slack_api"
readme = "README.md"
repository = "https://github.com/slack-rs/slack-rs-api.git"
version = "0.23.1"
[package.metadata.docs.rs]
all-features = true

[package.metadata.playground]
features = ["async", "reqwest", "sync", "reqwest_blocking"]