-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (38 loc) · 1.03 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
41
42
43
44
45
46
47
[package]
name = "ksoft"
version = "1.1.5"
authors = ["Alvaro <[email protected]>"]
edition = "2018"
description = "KSoft.SI api wrapper written in pure Rust"
documentation = "https://rs.docs.ksoft.si/"
readme = "README.md"
repository = "https://github.com/KSoft-Si/KSoft.rs"
license = "MPL-2.0"
keywords = ["ksoft", "async"]
categories = ["asynchronous", "api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
blocking = ["reqwest/blocking"]
default = ["tokio", "async-trait", "tracing-futures"]
serenity = ["typemap_rev"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.tokio]
version = "1"
features = ["rt", "sync", "time"]
optional = true
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-futures]
version = "0.2"
optional = true
[dependencies.typemap_rev]
version = "0.1"
optional = true