-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (39 loc) · 1.04 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
[package]
name = "mikisayaka"
version = "0.2.0"
edition = "2021"
build = "build.rs"
[dependencies]
anyhow = "1.0.86"
chrono = "0.4.38"
dotenvy = "0.15.7"
futures = "0.3.31"
mangadex-api = { version = "3.4.1", features = ["multi-thread", "tokio-multi-thread"] }
mangadex-api-schema-rust = "0.10.0"
mangadex-api-types-rust = "0.10.0"
poise = { version = "0.6.1", features = ["cache"] }
rand = "0.8.5"
regex = "1.11.0"
rustc_version_runtime = "0.3.0"
sea-orm = { version = "1.0.1", features = [
"macros",
"runtime-tokio-rustls",
"sqlx-sqlite",
"with-time",
"with-uuid",
], default-features = false }
sea-orm-migration = { version = "1.0.0", features = [
"with-time",
"sqlx-sqlite",
"runtime-tokio-rustls",
"with-uuid",
], default-features = false }
semver = "1.0.23"
time = "0.3.36"
tokio = { version = "1.39.2", features = ["rt-multi-thread", "tracing"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
uuid = "1.10.0"
[build-dependencies]
anyhow = "1.0.86"
vergen-gitcl = "1.0.0"