-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixup rust publishing Signed-off-by: William Woodruff <[email protected]> * remove a spurious cargo exec Signed-off-by: William Woodruff <[email protected]> --------- Signed-off-by: William Woodruff <[email protected]>
- Loading branch information
Showing
9 changed files
with
33 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
resolver = "2" | ||
members = [ | ||
"sigstore-protobuf-specs", | ||
"derive" | ||
"sigstore-protobuf-specs-derive" | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "sigstore-protobuf-specs-derive" | ||
version = "0.0.1" | ||
edition = "2021" | ||
authors = ["Sigstore Authors <[email protected]>"] | ||
homepage = "https://github.com/sigstore/protobuf-specs" | ||
repository = "https://github.com/sigstore/protobuf-specs" | ||
description = "Derive macros for sigstore-protobuf-specs. This is an implementation detail, you do not need this dependency." | ||
readme = "README.md" | ||
license-file = "LICENSE" | ||
keywords = ["sigstore"] | ||
|
||
[dependencies] | ||
syn = "2.0" | ||
quote = "1.0" | ||
|
||
[lib] | ||
proc-macro = true |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[package] | ||
name = "sigstore_protobuf_specs" | ||
version = "0.3.0" | ||
exclude = ["codegen/"] | ||
authors = ["Sigstore Authors <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/sigstore/protobuf-specs" | ||
|
@@ -18,7 +17,7 @@ prost = "0.12.3" | |
prost-reflect = { version = "0.12.0", features = ["serde", "derive"] } | ||
serde = {version = "1.0", features = ["derive"]} | ||
serde_json = "1.0" | ||
derive = { path = "../derive" } | ||
sigstore-protobuf-specs-derive = { version = "0.0.1", path = "../sigstore-protobuf-specs-derive" } | ||
|
||
[build-dependencies] | ||
anyhow = "1.0.72" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters