-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 844 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
34
35
36
37
[package]
name = "dwbhk"
version = "0.1.2"
edition = "2018"
authors = ["Tobias de Bruijn <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["Discord", "Webhook", "embeds", "file"]
homepage = "https://github.com/TheDutchMC/dwbhk-rs"
description = "dwbhk-rs is a library for working with Discord Webhooks"
categories = ["api-bindings", "asynchronous"]
repository = "https://github.com/TheDutchMC/dwbhk-rs"
resolver = "2"
[dependencies]
lazy_static = "1.4.0"
[dependencies.serde]
version = "1.0.130"
features = ["derive"]
[dependencies.reqwest]
version = "0.11.4"
default-features = false
features = ["rustls-tls", "json"]
[dev-dependencies.tokio]
version = "1.10.1"
features = ["rt"]
[features]
no-panic = []
blocking = ["reqwest/blocking"]
[dev-dependencies.dwbhk]
path = "."
features = ["blocking"]