forked from Gompei/slack-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.13 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "slack-rust"
version = "0.0.4-alpha"
authors = ["Richard Watts <[email protected]>", "Gompei <[email protected]>"]
edition = "2021"
description = "Slack API Client"
documentation = "https://docs.rs/slack-rust/"
readme = "README.md"
homepage = "https://crates.io/crates/slack-rust"
repository = "https://github.com/Gompei/slack-rust"
license = "Apache-2.0"
keywords = ["slack-rust", "slack"]
categories = ["web-programming::http-client", "web-programming::websocket"]
[dependencies]
async-std = { version = "1.12.0", features = ["attributes"] }
async-trait = "0.1.60"
async-tungstenite = "0.19.0"
futures-util = "0.3.17"
log = "0.4.14"
rustls = "0.19.1"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "1.11.0", features = [ "serde_with_macros" ] }
surf = { version = "2.3.2", features = ["curl-client", "encoding"] }
url = "2.2"
[dependencies.async-tls]
version = "0.11.0"
default-features = false
features = ["client"]
[dev-dependencies]
env_logger = "0.10.0"
mockall = "0.11.0"
[dev-dependencies.async-tls]
version = "0.11.0"
default-features = false
features = ["server"]