Skip to content

Commit

Permalink
Update dependencies in Cargo.toml and fix import in src/proxy/mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitthi committed Oct 27, 2024
1 parent 853b62b commit 820ab98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "easy-proxy"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

[dependencies]
lazy_static = "1.5.0"
once_cell = "1.19.0"
pingora = { git = "https://github.com/cloudflare/pingora", rev="8ae4ebbf02cb9cf429528e120425a298d7862e57", features = ["lb"] }
once_cell = "1.20.2"
pingora = { git = "https://github.com/cloudflare/pingora", rev="3f60857993925c87aecfbaf0799358baabf7d436", features = ["lb", "openssl"] }
thiserror = "1.0"
serde_yml = "0.0.12"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/proxy/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use http::Version;
use openssl::ssl::{NameType, SslRef};
use pingora::{
lb::Backend,
listeners::TlsSettings,
listeners::tls::TlsSettings,
prelude::{HttpPeer, Opt},
proxy::{self, ProxyHttp, Session},
server::{configuration::ServerConf, Server},
Expand Down

0 comments on commit 820ab98

Please sign in to comment.