diff --git a/Cargo.toml b/Cargo.toml index 1e343ae..1368cd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,21 +8,21 @@ authors = ["Hemant Rajput <68769346+rajput-hemant@users.noreply.github.com>"] default-run = "jiosaavn" [dependencies] -axum = "0.6.20" -base64 = "0.21.4" +axum = "0.7.5" +base64 = "0.22.1" dotenv = "0.15.0" -openssl = "0.10.57" -regex = "1.9.5" -reqwest = { version = "0.11.20", features = ["serde_json", "json"] } -serde = { version = "1.0.188", features = ["derive"] } -serde_json = "1.0.106" -tokio = { version = "1.32.0", features = ["full"] } +openssl = "0.10.64" +regex = "1.10.5" +reqwest = { version = "0.12.4", features = ["serde_json", "json"] } +serde = { version = "1.0.203", features = ["derive"] } +serde_json = "1.0.117" +tokio = { version = "1.38.0", features = ["full"] } tower = { version = "0.4.13", features = ["limit", "buffer"] } -tower-http = { version = "0.4.4", features = ["cors"] } -tracing = "0.1.37" -tracing-subscriber = "0.3.17" -url = "2.4.1" -vercel_runtime = "1.0.2" +tower-http = { version = "0.5.2", features = ["cors"] } +tracing = "0.1.40" +tracing-subscriber = "0.3.18" +url = "2.5.1" +vercel_runtime = "1.1.4" # home [[bin]] diff --git a/Dockerfile b/Dockerfile index 2e1e716..7818948 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.72 as build +FROM rust:1.79 as build WORKDIR /app