Skip to content

Commit

Permalink
ci: Prepare for 4.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswk committed May 11, 2023
1 parent 7265628 commit b5930bc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![crates.io](https://img.shields.io/crates/v/unleash-edge?label=latest)](https://crates.io/crates/unleash-edge)
[![Documentation](https://docs.rs/unleash-edge/badge.svg?version=latest)](https://docs.rs/unleash-edge/latest)
![MIT licensed](https://img.shields.io/crates/l/unleash-edge.svg)
[![Dependency Status](https://deps.rs/crate/unleash-edge/3.0.0/status.svg)](https://deps.rs/crate/unleash-edge/3.0.0)
[![Dependency Status](https://deps.rs/crate/unleash-edge/4.0.0/status.svg)](https://deps.rs/crate/unleash-edge/4.0.0)
[![CI](https://github.com/Unleash/unleash-edge/actions/workflows/test-with-coverage.yaml/badge.svg)](https://github.com/Unleash/unleash-edge/actions/workflows/test-with-coverage.yaml)
[![Coverage Status](https://coveralls.io/repos/github/Unleash/unleash-edge/badge.svg?branch=main)](https://coveralls.io/github/Unleash/unleash-edge?branch=main)
![downloads](https://img.shields.io/crates/d/unleash-edge.svg)
Expand Down
4 changes: 2 additions & 2 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ redis = {version = "0.23.0", features = ["tokio-comp"]}
reqwest = {version = "0.11.17", default-features = false, features = ["rustls", "json", "rustls-tls", "native-tls"]}
rustls = "0.20.8"
rustls-pemfile = "1.0.2"
serde = {version = "1.0.160", features = ["derive"]}
serde = {version = "1.0.163", features = ["derive"]}
serde_json = "1.0.96"
serde_qs = { version = "0.12.0", features = ["actix4", "tracing"] }
shadow-rs = "0.21.0"
tokio = {version = "1.28.0", features = ["macros", "rt-multi-thread", "tracing", "fs"]}
tokio = {version = "1.28.1", features = ["macros", "rt-multi-thread", "tracing", "fs"]}
tracing = {version = "0.1.37", features = ["log"]}
tracing-subscriber = {version = "0.3.17", features = ["json", "env-filter"]}
ulid = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion server/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ async fn build_edge(args: &EdgeArgs) -> EdgeResult<EdgeInfo> {
UnleashClient::from_url(
url,
args.skip_ssl_verification,
args.client_tls.clone(),
args.client_identity.clone(),
args.upstream_certificate_file.clone(),
)
})
Expand Down
2 changes: 1 addition & 1 deletion server/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub struct EdgeArgs {
pub skip_ssl_verification: bool,

#[clap(flatten)]
pub client_tls: Option<ClientIdentity>,
pub client_identity: Option<ClientIdentity>,

/// Extra certificate passed to the client for building its trust chain. Needs to be in PEM format (crt or pem extensions usually are)
#[clap(long, env)]
Expand Down

0 comments on commit b5930bc

Please sign in to comment.