Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
- concordium-base
- gotham is bumped to address security advisories
- openssl is bumped to also address security advisories
  • Loading branch information
abizjak committed Oct 2, 2023
1 parent 70c1d1a commit f940006
Show file tree
Hide file tree
Showing 8 changed files with 1,094 additions and 1,131 deletions.
226 changes: 88 additions & 138 deletions collector-backend/Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions collector-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ serde = { version = "1.0", features = ["rc", "derive"] }
rmp-serde = { version = "1.1.1" }
serde_json = { version = "1" }
mime = { version = "0.3" }
gotham = { version = "0.6" }
gotham_derive = { version = "0.6" }
gotham = { version = "0.7" }
gotham_derive = { version = "0.7" }
hyper = { version = "0.14" }
futures = { version = "0.3"}
structopt = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions collector-backend/src/bin/node-collector-backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use gotham::{
handler::{HandlerError, IntoResponse},
helpers::http::response::{create_empty_response, create_response},
middleware::state::StateMiddleware,
pipeline::{new_pipeline, single::single_pipeline},
pipeline::{new_pipeline, single_pipeline},
router::{builder::*, Router},
state::{FromState, State},
};
Expand Down Expand Up @@ -255,7 +255,7 @@ pub fn main() -> anyhow::Result<()> {
gotham::start(
addr,
router(node_info_map, conf.banned_versions, banned_node_names, conf.validation_config),
);
)?;
Ok(())
}

Expand Down
Loading

0 comments on commit f940006

Please sign in to comment.