-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (38 loc) · 991 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
38
39
40
41
[package]
name = "rusty-butler"
version = "0.4.0"
authors = ["Ward Muylaert <[email protected]>"]
edition = "2021"
[lib]
name = "rusty_butler_lib"
path = "src/lib.rs"
[[bin]]
name = "rusty-butler-bin"
path = "src/main.rs"
[dependencies]
irc = "0.15"
chrono = "0.4"
regex = "1.5"
reqwest = { version = "0.11.4", features = ["cookies", "json"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
# Math stuff
rink-core = "0.6"
unicode-segmentation = "1.7"
clap = "2.33"
# TODO Check I need all these features
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }
# TODO What does this do exactly?
futures = "0.3"
football = { git = "https://github.com/ward/football" }
rand = "0.8"
toml = "0.5"
# Html scraping with css selectors
scraper = "0.12.0"
# Currently no support for async fn in traits, this crate type scrubs stuff with a macro
# Don't quite understand it, but it works
async-trait = "0.1.50"
log = "0.4.0"
env_logger = "0.8.4"
lazy_static = "1.4"