Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Oct 15, 2024
1 parent 30c886c commit cc22c45
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions proxy-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ doh-auth-proxy-lib = { path = "../proxy-lib/", default-features = false, feature
"anonymous-token",
] }

anyhow = "1.0.87"
anyhow = "1.0.89"
mimalloc = { version = "*", default-features = false }
serde = { version = "1.0.210", default-features = false, features = ["derive"] }
derive_builder = "0.20.1"
derive_builder = "0.20.2"
tokio = { version = "1.40.0", default-features = false, features = [
"net",
"rt-multi-thread",
"time",
"sync",
"macros",
] }
async-trait = "0.1.82"
async-trait = "0.1.83"

# config
clap = { version = "4.5.17", features = ["std", "cargo", "wrap_help"] }
clap = { version = "4.5.20", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.8.19", default-features = false, features = ["parse"] }
hot_reload = "0.1.6"

Expand Down
14 changes: 7 additions & 7 deletions proxy-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,33 +24,33 @@ tokio = { version = "1.40.0", features = [
"sync",
"macros",
] }
futures = { version = "0.3.30", default-features = false, features = [
futures = { version = "0.3.31", default-features = false, features = [
"std",
"async-await",
] }
anyhow = "1.0.87"
anyhow = "1.0.89"
tracing = "0.1.40"
thiserror = "1.0.63"
async-trait = "0.1.82"
thiserror = "1.0.64"
async-trait = "0.1.83"
serde = { version = "1.0.210", features = ["derive"] }
itertools = "0.13.0"
rustc-hash = "2.0.0"
crossbeam-channel = "0.5.13"

# doh and odoh client with cache and query manipulation plugins
odoh-rs = { git = "https://github.com/junkurihara/odoh-rs.git", branch = "master" }
bytes = "1.7.1"
bytes = "1.7.2"
hickory-proto = { version = "0.24.1", default-features = false }
data-encoding = "2.6.0"
hashlink = "0.9.1"
cedarwood = "0.4.6"
regex = "1.10.6"
regex = "1.11.0"

# network
socket2 = "0.5.7"

# http client
reqwest = { version = "0.12.7", default-features = false, features = [
reqwest = { version = "0.12.8", default-features = false, features = [
"json",
"http2",
"hickory-dns",
Expand Down

0 comments on commit cc22c45

Please sign in to comment.