-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 843 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
[package]
name = "holy-maiden-bot"
version = "0.1.0"
edition = "2021"
[dependencies]
grammers-friendly = { git = "https://github.com/AndrielFR/grammers-friendly", features = [ "macros" ] }
grammers-client = { git = "https://github.com/Lonami/grammers", features = [ "html" ] }
rust-anilist = { git = "https://github.com/AndrielFR/rust-anilist" }
rbs = "4"
log = "*"
rand = "*"
toml = "*"
tokio = { version = "1", default-features = false, features = [ "macros", "sync", "signal" ] }
serde = { version = "1", features = ["derive"] }
chrono = "*"
rbatis = "4"
dotenvy = "*"
reqwest = "*"
env_logger = "*"
serde_json = "1"
async-trait = "*"
rbdc-sqlite = "4"
futures-util = { version = "*", default-features = false, features = [ "alloc" ] }
rbdc-pool-deadpool = "4"
[profile.release]
lto = true
panic = "abort"
strip = true
codegen-units = 1