File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[workspace ]
2+ resolver = " 2"
23members = [" microchassis" ]
Original file line number Diff line number Diff line change 11[package ]
22name = " microchassis"
33description = " A chassis to increase observability of services and tools"
4- version = " 0.0.5 "
4+ version = " 0.0.6 "
55edition = " 2021"
66authors = [" Folke B." ]
77repository = " https://github.com/cloneable/microchassis"
@@ -11,14 +11,14 @@ rust-version = "1.65"
1111
1212[dependencies ]
1313backtrace = { version = " 0.3" , optional = true }
14- http = " 0.2 "
14+ http = " 1 "
1515lazy_static = " 1"
1616libc = { version = " 0.2" , optional = true }
1717tempfile = " 3"
1818thiserror = " 1"
19- tikv-jemalloc-ctl = " 0.5 "
20- tikv-jemalloc-sys = " 0.5 "
21- tikv-jemallocator = { version = " 0.5 " , features = [" profiling" , " stats" ] }
19+ tikv-jemalloc-ctl = " 0.6 "
20+ tikv-jemalloc-sys = " 0.6 "
21+ tikv-jemallocator = { version = " 0.6 " , features = [" profiling" , " stats" ] }
2222tracing = { version = " 0.1" }
2323actix-web = { version = " 4" , optional = true }
2424futures-util = { version = " 0.3" , optional = true }
Original file line number Diff line number Diff line change 2929 clippy:: cargo_common_metadata, // TODO: revisit
3030 clippy:: missing_const_for_fn,
3131 clippy:: missing_errors_doc,
32+ clippy:: missing_panics_doc,
3233 clippy:: module_name_repetitions,
3334 clippy:: unnecessary_wraps,
3435 clippy:: use_self,
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ use core::{
2222pub struct Allocator < T : GlobalAlloc > ( pub T ) ;
2323
2424thread_local ! {
25- static PANICKING : Cell <bool > = Cell :: new( false ) ;
25+ static PANICKING : Cell <bool > = const { Cell :: new( false ) } ;
2626}
2727
2828#[ allow( clippy:: panic) ]
You can’t perform that action at this time.
0 commit comments