From 8e084a7042dab8e531bd9a9eec7532b50b0a2a1f Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Thu, 31 Oct 2019 20:10:18 -0700 Subject: [PATCH] Note need to publish with nightly cargo (#506) Until github.com/rust-lang/cargo/pull/7333 makes it into stable rust, we'll be forced to publish using nightly, due to our unpublished dev dependency on `test-utilities`. --- Cargo.toml | 2 +- justfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6169b65..11c253b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,6 +40,6 @@ pretty_assertions = "0.6" # Until github.com/rust-lang/cargo/pull/7333 makes it into stable, # this version-less dev-dependency will interfere with publishing -# to crates.io. +# to crates.io. In the meantime, we can publish with nighlty cargo. [dev-dependencies.test-utilities] path = "test-utilities" diff --git a/justfile b/justfile index 6e436e3..c3759f9 100755 --- a/justfile +++ b/justfile @@ -58,7 +58,7 @@ publish-check: lint clippy test git checkout Cargo.lock publish: publish-check - cargo publish + cargo +nightly publish git tag -a {{version}} -m 'Release {{version}}' git push github {{version}}