forked from slack-rs/slack-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 839 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "slack"
version = "0.25.0"
authors = ["Benjamin Elder <[email protected]>", "Matt Jones <[email protected]>", "David Hewson <[email protected]>"]
repository = "https://github.com/slack-rs/slack-rs.git"
documentation = "https://docs.rs/slack"
description = "slack realtime messaging client: https://api.slack.com/bot-users"
license = "Apache-2.0"
edition = "2018"
readme = "README.md"
[dependencies.slack_api]
git = "https://github.com/silverjam/slack-rs-api"
rev = "f83651e"
default-features = false
features = ["reqwest_blocking"]
[dependencies]
serde = "1.0.0"
serde_json = "1.0.0"
serde_derive = "1.0.0"
tungstenite = "0.9.2"
log = "0.3.7"
url = "2.1.0"
[features]
default = ["with_native_tls"]
with_rustls = ["slack_api/with_rustls"]
with_native_tls = ["slack_api/with_native_tls"]