diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-08-09 04:08:08 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-08-09 04:08:08 -0400 |
commit | 495a54c03b00ccc913ec8b4f3f5eb837c841d519 (patch) | |
tree | 81a46ae255a5d88423e735e871910c7141b3d7d7 | |
parent | 3f885423df05f5bd81184d048839f580fa67a58a (diff) |
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.
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -73,7 +73,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "bcachefs-tools" -version = "0.0.0" +version = "1.9.5" dependencies = [ "anyhow", "bch_bindgen", @@ -1,5 +1,6 @@ [package] name = "bcachefs-tools" +version = "1.9.5" authors = ["Yuxuan Shui <yshuiv7@gmail.com>", "Kayla Firestack <dev@kaylafire.me>", "Kent Overstreet <kent.overstreet@linux.dev>" ] edition = "2021" rust-version = "1.70" |