forked from clux/rust-slack
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (30 loc) · 800 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
30
31
32
33
[package]
authors = [
"Christopher Brickley <brickley@gmail.com>",
"Eirik Albrigtsen <sszynrae@gmail.com>"
]
description = "A rust crate for sending messages to Slack via webhooks."
homepage = "https://github.com/clux/rust-slack"
keywords = ["slack", "webhook", "hook", "messaging"]
license = "MIT/Apache-2.0"
name = "slack-hook2"
readme = "README.md"
repository = "https://github.com/clux/rust-slack"
version = "0.11.0"
edition = "2018"
[dependencies]
chrono = "^0.4"
hex = "^0.4"
serde = "^1"
serde_derive = "^1"
serde_json = "^1"
url = { version = "^2", features = ["serde"] }
thiserror = "^1.0"
[dependencies.reqwest]
version = "^0.11"
default-features = false
features = ["json"]
[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]