-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
65 lines (54 loc) · 1.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "kowalski-rs"
version = "0.1.0"
authors = ["Simon Pannek"]
edition = "2021"
description = ""
repository = "https://github.com/simonpannek/kowalski-rs"
[features]
nlp-model = ["rust-bert"]
event-calendar = ["ics", "rocket"]
default = []
[dependencies]
bit-vec = "0.6"
unicode-segmentation = "1.9"
chrono = "0.4"
itertools = "0.10"
rand = "0.8"
serde_json = "1.0"
strum_macros = "0.24"
tabled = "0.6"
thiserror = "1.0"
toml = "0.5"
tracing = "0.1"
tracing-subscriber = "0.3"
unic-emoji-char = "0.9"
[dependencies.linked-hash-map]
version = "0.5"
features = ["serde_impl"]
[dependencies.ics]
version = "0.5"
optional = true
[dependencies.rocket]
version = "0.5.0-rc.2"
features = []
optional = true
[dependencies.rust-bert]
version = "0.17"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serenity]
version = "=0.11.2"
default-features = false
features = ["cache", "chrono", "client", "collector", "rustls_backend", "unstable_discord_api"]
[dependencies.strum]
version = "0.24"
features = ["strum_macros"]
[dependencies.tokio]
version = "1.18"
features = ["macros", "parking_lot", "rt-multi-thread"]
[dependencies.tokio-postgres]
version = "0.7"
features = ["with-chrono-0_4", "with-bit-vec-0_6"]