Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Nov 6, 2024
1 parent cc22c45 commit c6f9d18
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["proxy-bin", "proxy-lib"]
resolver = "2"

[workspace.package]
version = "0.4.0"
version = "0.4.1"
authors = ["Jun Kurihara"]
homepage = "https://github.com/junkurihara/doh-auth-proxy"
repository = "https://github.com/junkurihara/doh-auth-proxy"
Expand Down
10 changes: 5 additions & 5 deletions proxy-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ doh-auth-proxy-lib = { path = "../proxy-lib/", default-features = false, feature
"anonymous-token",
] }

anyhow = "1.0.89"
anyhow = "1.0.92"
mimalloc = { version = "*", default-features = false }
serde = { version = "1.0.210", default-features = false, features = ["derive"] }
serde = { version = "1.0.214", default-features = false, features = ["derive"] }
derive_builder = "0.20.2"
tokio = { version = "1.40.0", default-features = false, features = [
tokio = { version = "1.41.0", default-features = false, features = [
"net",
"rt-multi-thread",
"time",
Expand All @@ -35,11 +35,11 @@ async-trait = "0.1.83"
# config
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"
hot_reload = "0.1.8"

# logging
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3.18", features = ["chrono", "json"] }

url = "2.5.2"
url = "2.5.3"
env-file-reader = "0.3.0"
16 changes: 8 additions & 8 deletions proxy-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ publish.workspace = true

[dependencies]
rand = "0.8.5"
tokio = { version = "1.40.0", features = [
tokio = { version = "1.41.0", features = [
"net",
"rt-multi-thread",
"time",
Expand All @@ -28,35 +28,35 @@ futures = { version = "0.3.31", default-features = false, features = [
"std",
"async-await",
] }
anyhow = "1.0.89"
anyhow = "1.0.92"
tracing = "0.1.40"
thiserror = "1.0.64"
thiserror = "1.0.68"
async-trait = "0.1.83"
serde = { version = "1.0.210", features = ["derive"] }
serde = { version = "1.0.214", 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.2"
bytes = "1.8.0"
hickory-proto = { version = "0.24.1", default-features = false }
data-encoding = "2.6.0"
hashlink = "0.9.1"
cedarwood = "0.4.6"
regex = "1.11.0"
regex = "1.11.1"

# network
socket2 = "0.5.7"

# http client
reqwest = { version = "0.12.8", default-features = false, features = [
reqwest = { version = "0.12.9", default-features = false, features = [
"json",
"http2",
"hickory-dns",
"rustls-tls",
] }
url = "2.5.2"
url = "2.5.3"

# for bootstrap dns resolver
hickory-client = { version = "0.24.1", default-features = false, features = [
Expand Down

0 comments on commit c6f9d18

Please sign in to comment.