This commit is contained in:
Jun Kurihara 2024-01-06 17:09:47 +09:00
commit 4039d7c44e
No known key found for this signature in database
GPG key ID: 6D3FEE70E498C15B
2 changed files with 10 additions and 10 deletions

View file

@ -26,23 +26,23 @@ rpxy-lib = { path = "../rpxy-lib/", default-features = false, features = [
"sticky-cookie",
] }
anyhow = "1.0.75"
anyhow = "1.0.79"
rustc-hash = "1.1.0"
serde = { version = "1.0.193", default-features = false, features = ["derive"] }
serde = { version = "1.0.195", default-features = false, features = ["derive"] }
derive_builder = "0.12.0"
tokio = { version = "1.35.0", default-features = false, features = [
tokio = { version = "1.35.1", default-features = false, features = [
"net",
"rt-multi-thread",
"time",
"sync",
"macros",
] }
async-trait = "0.1.74"
async-trait = "0.1.77"
rustls-pemfile = "1.0.4"
mimalloc = { version = "*", default-features = false }
# config
clap = { version = "4.4.11", features = ["std", "cargo", "wrap_help"] }
clap = { version = "4.4.13", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.8.8", default-features = false, features = ["parse"] }
hot_reload = "0.1.4"

View file

@ -42,11 +42,11 @@ tokio = { version = "1.35.1", default-features = false, features = [
"fs",
] }
pin-project-lite = "0.2.13"
async-trait = "0.1.74"
async-trait = "0.1.77"
# Error handling
anyhow = "1.0.75"
thiserror = "1.0.51"
anyhow = "1.0.79"
thiserror = "1.0.56"
# http for both server and client
http = "1.0.0"
@ -56,8 +56,8 @@ hyper = { version = "1.1.0", default-features = false }
hyper-util = { git = "https://github.com/junkurihara/hyper-util", features = [
"full",
], rev = "324408be9666670b47bf84180a4306fdd649cffc" }
futures-util = { version = "0.3.29", default-features = false }
futures-channel = { version = "0.3.29", default-features = false }
futures-util = { version = "0.3.30", default-features = false }
futures-channel = { version = "0.3.30", default-features = false }
# http client for upstream
hyper-tls = { git = "https://github.com/junkurihara/hyper-tls", features = [