Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
svenrademakers committed Nov 1, 2023
1 parent ac5f310 commit 30fcf7c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bmcd"
version = "1.3.0"
version = "2.0.0"
edition = "2021"
license = "Apache-2.0"
# MSRV required to build clap dependency
Expand All @@ -26,7 +26,7 @@ actix-web = { version = "4.4.0", features = ["openssl"] }
build-time = "0.1.3"
if-addrs = "0.10.2"
nix = { version = "0.27.1", features = ["fs"] }
serde_json = "1.0.107"
serde_json = "1.0.108"
serde_yaml = "0.9.27"
clap = { version = "4.4.7", features = ["cargo"] }
openssl = "0.10.57"
Expand Down
3 changes: 0 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ use crate::{
use actix_files::Files;
use actix_web::{
http::{self, KeepAlive},
middleware::Logger,
web,
web::Data,
App, HttpRequest, HttpResponse, HttpServer,
Expand Down Expand Up @@ -74,8 +73,6 @@ async fn main() -> anyhow::Result<()> {
App::new()
.app_data(bmc.clone())
.app_data(streaming_data_service.clone())
// Enable logger
.wrap(Logger::default())
.wrap(authentication.clone())
// Legacy API
.configure(legacy::config)
Expand Down

0 comments on commit 30fcf7c

Please sign in to comment.