From 94313bd74ddff3775b94bd5bbef1e0e9ddaa89ef Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Thu, 20 Feb 2025 11:20:51 +1300 Subject: [PATCH 1/2] Reduce MSRV to 1.56 Signed-off-by: Nico Burns --- malloc_size_of/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc_size_of/Cargo.toml b/malloc_size_of/Cargo.toml index 7af0cef..ab8cbf6 100644 --- a/malloc_size_of/Cargo.toml +++ b/malloc_size_of/Cargo.toml @@ -6,11 +6,11 @@ authors = ["The Servo Project Developers"] license = "MIT OR Apache-2.0" repository = "https://github.com/servo/malloc_size_of" edition = "2021" +rust-version = "1.56" [features] default = ["std"] std = [] -void = ["dep:void"] [dependencies] void = { version = "1.0.2", optional = true } From 943190bd360c01bdb10fadf123a9d747bbc68e8f Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Thu, 20 Feb 2025 11:22:47 +1300 Subject: [PATCH 2/2] Bump version to 0.1.1 Signed-off-by: Nico Burns --- malloc_size_of/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc_size_of/Cargo.toml b/malloc_size_of/Cargo.toml index ab8cbf6..39e35b6 100644 --- a/malloc_size_of/Cargo.toml +++ b/malloc_size_of/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "malloc_size_of" description = "A an allocator-agnostic crate for measuring the heap size of a value" -version = "0.1.0" +version = "0.1.1" authors = ["The Servo Project Developers"] license = "MIT OR Apache-2.0" repository = "https://github.com/servo/malloc_size_of"