From a422fd7f67b824db7e4380252b1f867793f05139 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Wed, 6 Sep 2023 15:17:12 -0700 Subject: [PATCH] cargo: add version number to `jj-lib` dependency This is required for `cargo publish`. It seems better to have it tracked than to do add it whenever we publish. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f8cc8c584..0d93b0db7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -94,7 +94,7 @@ zstd = "0.12.4" # put all inter-workspace libraries, i.e. those that use 'path = ...' here in # their own (alphabetically sorted) block -jj-lib = { path = "lib" } +jj-lib = { path = "lib", version = "0.9.0" } testutils = { path = "lib/testutils" } [profile.release]