Skip to content

Commit 8e084a7

Browse files
authored
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`.
1 parent f3b8030 commit 8e084a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ pretty_assertions = "0.6"
4040

4141
# Until github.com/rust-lang/cargo/pull/7333 makes it into stable,
4242
# this version-less dev-dependency will interfere with publishing
43-
# to crates.io.
43+
# to crates.io. In the meantime, we can publish with nighlty cargo.
4444
[dev-dependencies.test-utilities]
4545
path = "test-utilities"

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ publish-check: lint clippy test
5858
git checkout Cargo.lock
5959

6060
publish: publish-check
61-
cargo publish
61+
cargo +nightly publish
6262
git tag -a {{version}} -m 'Release {{version}}'
6363
git push github {{version}}
6464

0 commit comments

Comments
 (0)