From 495a54c03b00ccc913ec8b4f3f5eb837c841d519 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Fri, 9 Aug 2024 04:08:08 -0400 Subject: [PATCH] Revert "build: rm `package.version` from Cargo.toml" This reverts commit 48c51020e571455fa004be25371f85a39a945cad. Deleting the version from Cargo.toml broke the MSRV build with cargo 1.7.0. --- Cargo.lock | 2 +- Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index a7856599..7938bbf3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,7 +73,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "bcachefs-tools" -version = "0.0.0" +version = "1.9.5" dependencies = [ "anyhow", "bch_bindgen", diff --git a/Cargo.toml b/Cargo.toml index b3991a09..0a65a3c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "bcachefs-tools" +version = "1.9.5" authors = ["Yuxuan Shui ", "Kayla Firestack ", "Kent Overstreet " ] edition = "2021" rust-version = "1.70"