aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: cd225e0525c6580caef3898ac385dab4967f488d (plain) (blame)
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
[package]
name = "agenda-bot"
version = "0.1.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chrono = "0.4"
futures = "0.3"
serde_json = "1.0"
slack = "0.25"
slack_api = "0.23"
tokio-compat-02 = "0.1"

[dependencies.discord]
git = "https://github.com/SpaceManiac/discord-rs"
default-features = false # disable voice

[dependencies.serde]
version = "1.0"
features = [ "derive" ]

[dependencies.tokio]
version = "0.3"
features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ]