From e3679fb1cccd6d1f29d5a88a4114614cf282ee2b Mon Sep 17 00:00:00 2001 From: AP Ljungquist Date: Mon, 23 Dec 2024 10:59:21 +0100 Subject: [PATCH] chore: Set some package versions to 0 (#167) Neither cli-version nor ffi-patterns are meant to be used outside this project. To reinforce this, and to be consistent with docs/project.md, I set their version to 0.0.0. These are new crates, with limited use and to my knowledge no one is using them, so this should be safe. --- Cargo.lock | 4 ++-- crates/cli-version/Cargo.toml | 2 +- crates/ffi_patterns/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 86e5860..ff6e08e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -568,7 +568,7 @@ checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" [[package]] name = "cli-version" -version = "0.1.0" +version = "0.0.0" [[package]] name = "colorchoice" @@ -795,7 +795,7 @@ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" [[package]] name = "ffi_patterns" -version = "0.1.0" +version = "0.0.0" [[package]] name = "filetime" diff --git a/crates/cli-version/Cargo.toml b/crates/cli-version/Cargo.toml index b28d51d..bd8c8db 100644 --- a/crates/cli-version/Cargo.toml +++ b/crates/cli-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-version" -version = "0.1.0" +version = "0.0.0" edition.workspace = true [lib] diff --git a/crates/ffi_patterns/Cargo.toml b/crates/ffi_patterns/Cargo.toml index eb4d6c3..ee31d49 100644 --- a/crates/ffi_patterns/Cargo.toml +++ b/crates/ffi_patterns/Cargo.toml @@ -1,4 +1,4 @@ [package] name = "ffi_patterns" -version = "0.1.0" +version = "0.0.0" edition.workspace = true