Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Jan 4, 2024
1 parent da140e4 commit 9c04cd6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You should also include the user name that made the change.
### Improvements

- Totally restructured and reimplemented all components
- Support multiple bootstrap resolvers.
- [Breaking] Support multiple bootstrap resolvers, which requires to modify the config file.
- Periodic health check of all path candidates.
- Periodic nexthop IP address resolution via the proxy itself, bootstrap resolver is only used at the first time and fall-back.
- Periodic fetching of access token with refresh token.
Expand Down
8 changes: 4 additions & 4 deletions proxy-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ publish = false
[dependencies]
doh-auth-proxy-lib = { path = "../proxy-lib/" }

anyhow = "1.0.76"
anyhow = "1.0.79"
mimalloc = { version = "*", default-features = false }
serde = { version = "1.0.193", default-features = false, features = ["derive"] }
serde = { version = "1.0.194", default-features = false, features = ["derive"] }
derive_builder = "0.12.0"
tokio = { version = "1.35.1", default-features = false, features = [
"net",
Expand All @@ -45,10 +45,10 @@ tokio = { version = "1.35.1", default-features = false, features = [
"sync",
"macros",
] }
async-trait = "0.1.75"
async-trait = "0.1.77"

# config
clap = { version = "4.4.11", features = ["std", "cargo", "wrap_help"] }
clap = { version = "4.4.12", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.8.8", default-features = false, features = ["parse"] }
hot_reload = "0.1.4"

Expand Down
8 changes: 4 additions & 4 deletions proxy-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ futures = { version = "0.3.30", default-features = false, features = [
"std",
"async-await",
] }
anyhow = "1.0.76"
anyhow = "1.0.79"
tracing = "0.1.40"
thiserror = "1.0.52"
async-trait = "0.1.75"
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.56"
async-trait = "0.1.77"
serde = { version = "1.0.194", features = ["derive"] }
itertools = "0.12.0"
rustc-hash = "1.1.0"

Expand Down
2 changes: 1 addition & 1 deletion proxy-lib/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub use anyhow::{anyhow, bail, ensure, Context};
pub use anyhow::{anyhow, bail, Context};
use std::net::SocketAddr;
use thiserror::Error;
use tokio::sync::mpsc::error::SendError;
Expand Down

0 comments on commit 9c04cd6

Please sign in to comment.