Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Jan 6, 2024
1 parent 38cc394 commit 4039d7c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions rpxy-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
10 changes: 5 additions & 5 deletions rpxy-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 = [
Expand Down

0 comments on commit 4039d7c

Please sign in to comment.