2022-10-22 17:58:40 +05:30
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
name = "sponsorblock-mirror"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-04 04:53:25 +05:30
|
|
|
diesel = {version = "2.2.6", features = ["postgres"]}
|
2024-10-22 18:58:28 +05:30
|
|
|
diesel_migrations = "2.2.0"
|
2024-10-22 19:03:59 +05:30
|
|
|
lazy_static = "1.5.0"
|
2023-06-29 18:47:44 +05:30
|
|
|
num_cpus = "1.16.0"
|
2024-10-22 18:58:45 +05:30
|
|
|
once_cell = "1.20.2"
|
2024-10-24 21:34:29 +05:30
|
|
|
regex = "1.11.1"
|
2024-10-29 01:53:01 +05:30
|
|
|
reqwest = {version = "0.12.9", features = ["json", "rustls-tls", "gzip", "brotli"], default-features = false}
|
2022-10-22 17:58:40 +05:30
|
|
|
rocket = {git = "https://github.com/SergioBenitez/Rocket"}
|
|
|
|
rocket_sync_db_pools = {git = "https://github.com/SergioBenitez/Rocket", features = ["diesel_postgres_pool"]}
|
2024-12-11 09:35:40 +05:30
|
|
|
serde = {version = "1.0.216", features = ["derive"]}
|
2024-11-17 10:07:53 +05:30
|
|
|
serde_json = "1.0.133"
|
2024-12-03 21:03:15 +05:30
|
|
|
tokio = {version = "1.42.0", features = ["full"]}
|