Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cloneable committed Sep 27, 2024
1 parent 495fe62 commit ae685b5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[workspace]
resolver = "2"
members = ["microchassis"]
10 changes: 5 additions & 5 deletions microchassis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "microchassis"
description = "A chassis to increase observability of services and tools"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
authors = ["Folke B."]
repository = "https://github.com/cloneable/microchassis"
Expand All @@ -11,14 +11,14 @@ rust-version = "1.65"

[dependencies]
backtrace = { version = "0.3", optional = true }
http = "0.2"
http = "1"
lazy_static = "1"
libc = { version = "0.2", optional = true }
tempfile = "3"
thiserror = "1"
tikv-jemalloc-ctl = "0.5"
tikv-jemalloc-sys = "0.5"
tikv-jemallocator = { version = "0.5", features = ["profiling", "stats"] }
tikv-jemalloc-ctl = "0.6"
tikv-jemalloc-sys = "0.6"
tikv-jemallocator = { version = "0.6", features = ["profiling", "stats"] }
tracing = { version = "0.1" }
actix-web = { version = "4", optional = true }
futures-util = { version = "0.3", optional = true }
Expand Down
1 change: 1 addition & 0 deletions microchassis/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
clippy::cargo_common_metadata, // TODO: revisit
clippy::missing_const_for_fn,
clippy::missing_errors_doc,
clippy::missing_panics_doc,
clippy::module_name_repetitions,
clippy::unnecessary_wraps,
clippy::use_self,
Expand Down
2 changes: 1 addition & 1 deletion microchassis/src/oompanic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use core::{
pub struct Allocator<T: GlobalAlloc>(pub T);

thread_local! {
static PANICKING: Cell<bool> = Cell::new(false);
static PANICKING: Cell<bool> = const { Cell::new(false) };
}

#[allow(clippy::panic)]
Expand Down

0 comments on commit ae685b5

Please sign in to comment.