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]
|
2023-09-26 01:59:41 +05:30
|
|
|
diesel = {version = "2.1.2", features = ["postgres"]}
|
2023-06-02 00:31:18 +05:30
|
|
|
diesel_logger = "0.3.0"
|
2023-06-02 02:36:44 +05:30
|
|
|
diesel_migrations = "2.1.0"
|
2022-10-22 17:58:40 +05:30
|
|
|
lazy_static = "1.4.0"
|
2023-06-29 18:47:44 +05:30
|
|
|
num_cpus = "1.16.0"
|
2023-08-08 18:13:23 +05:30
|
|
|
once_cell = "1.18.0"
|
2023-09-02 22:25:19 +05:30
|
|
|
regex = "1.9.5"
|
2023-08-24 03:18:09 +05:30
|
|
|
reqwest = {version = "0.11.20", 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"]}
|
2023-08-26 09:04:03 +05:30
|
|
|
serde = {version = "1.0.188", features = ["derive"]}
|
2023-09-14 04:43:47 +05:30
|
|
|
serde_json = "1.0.107"
|
2022-10-22 17:58:40 +05:30
|
|
|
tokio = {version = "1", features = ["full"]}
|