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]
|
2023-04-18 20:25:32 +00:00
|
|
|
diesel = {version = "2.0.4", features = ["postgres"]}
|
2022-10-22 12:28:40 +00:00
|
|
|
diesel_logger = "0.2.0"
|
|
|
|
diesel_migrations = "2.0.0"
|
|
|
|
lazy_static = "1.4.0"
|
2022-12-20 17:51:23 +00:00
|
|
|
num_cpus = "1.15.0"
|
2023-04-21 13:14:09 +00:00
|
|
|
regex = "1.8.1"
|
2023-04-28 17:54:13 +00:00
|
|
|
reqwest = {version = "0.11.17", 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"]}
|
2023-04-11 09:51:32 +00:00
|
|
|
serde = {version = "1.0.160", features = ["derive"]}
|
2023-04-13 00:39:41 +00:00
|
|
|
serde_json = "1.0.96"
|
2022-10-22 12:28:40 +00:00
|
|
|
tokio = {version = "1", features = ["full"]}
|