Skip to content

Commit

Permalink
Make crate as publish = false (#38)
Browse files Browse the repository at this point in the history
Since the buildpack doesn't need to be published to crates.io.

The version in `Cargo.toml` has also been zeroed out, to reduce the chance of
confusion between it and the version in `buildpack.toml`.

GUS-W-10736354.
  • Loading branch information
edmorley authored Feb 23, 2022
1 parent ca57157 commit 1a929a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "procfile-buildpack"
version = "0.1.0"
# The crate is not published, so the only version that is used is the one in buildpack.toml.
version = "0.0.0"
publish = false
edition = "2021"
rust-version = "1.57"

Expand Down

0 comments on commit 1a929a8

Please sign in to comment.