-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 1.01 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
[package]
name = "dgg-embeds"
version = "0.1.4"
description = "Scans dgg chat for embed links and stuffs them into an sqlite db."
authors = ["vyneer <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
tokio-tungstenite = { version = "*", features = ["rustls-tls-webpki-roots"] }
url = "2.1"
log = "0.4"
env_logger = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
futures-util = "*"
futures-channel = "*"
twitch_oauth2 = "0.6.1"
twitch_api2 = { version = "0.6.1", features = ["helix", "client", "reqwest"] }
dotenv = "*"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-webpki-roots"] }
rusqlite = { version = "0.27.0", features = ["bundled"] }
ctrlc = { version = "3.0", features = ["termination"] }
crossbeam-channel = "0.5"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 1 # Optimize for speed.