2022-10-22 12:28:40 +00:00
|
|
|
[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-03-15 10:04:39 +00:00
|
|
|
diesel = {version = "2.1.5", features = ["postgres"]}
|
2023-06-01 19:01:18 +00:00
|
|
|
diesel_logger = "0.3.0"
|
2023-06-01 21:06:44 +00:00
|
|
|
diesel_migrations = "2.1.0"
|
2022-10-22 12:28:40 +00:00
|
|
|
lazy_static = "1.4.0"
|
2023-06-29 13:17:44 +00:00
|
|
|
num_cpus = "1.16.0"
|
2023-12-07 12:13:15 +00:00
|
|
|
once_cell = "1.19.0"
|
2024-03-23 02:24:42 +00:00
|
|
|
regex = "1.10.4"
|
2024-04-05 15:20:09 +00:00
|
|
|
reqwest = {version = "0.12.3", features = ["json", "rustls-tls", "gzip", "brotli"], default-features = false}
|
2022-10-22 12:28:40 +00:00
|
|
|
rocket = {git = "https://github.com/SergioBenitez/Rocket"}
|
|
|
|
rocket_sync_db_pools = {git = "https://github.com/SergioBenitez/Rocket", features = ["diesel_postgres_pool"]}
|
2024-04-16 23:19:35 +00:00
|
|
|
serde = {version = "1.0.198", features = ["derive"]}
|
2024-04-16 06:08:00 +00:00
|
|
|
serde_json = "1.0.116"
|
2022-10-22 12:28:40 +00:00
|
|
|
tokio = {version = "1", features = ["full"]}
|