-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: remove `Cargo.toml` `documentation` field * chore: use cargo manifest `workspace.package.authors` * chore: use cargo manifest `workspace.package.repository` * chore: use cargo manifest `workspace.package.license` * chore: use cargo manifest `workspace.package.rust-version` * chore: use cargo manifest `workspace.package.edition`: * chore: use cargo manifest `workspace.package.version` * chore: group cargo workspace package metadata usage * chore: use `workspace.edition` for remaining 2021 edition crates
- Loading branch information
Showing
11 changed files
with
48 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,5 +22,18 @@ exclude = [ | |
|
||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
rust-version = "1.70" | ||
edition = "2021" | ||
|
||
[profile.bench] | ||
debug = true |
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,12 +1,9 @@ | ||
[package] | ||
name = "conformance" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2021" | ||
edition.workspace = true | ||
authors.workspace = true | ||
|
||
[dependencies] | ||
bytes = "1" | ||
|
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,12 +1,9 @@ | ||
[package] | ||
name = "fuzz" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2021" | ||
edition.workspace = true | ||
authors.workspace = true | ||
|
||
[package.metadata] | ||
cargo-fuzz = true | ||
|
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,19 +1,13 @@ | ||
[package] | ||
name = "prost-build" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
documentation = "https://docs.rs/prost-build" | ||
readme = "README.md" | ||
description = "Generate Prost annotated Rust types from Protocol Buffers files." | ||
edition = "2021" | ||
rust-version = "1.70" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
[features] | ||
default = ["format"] | ||
|
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,19 +1,13 @@ | ||
[package] | ||
name = "prost-derive" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
documentation = "https://docs.rs/prost-derive" | ||
readme = "README.md" | ||
description = "Generate encoding and decoding implementations for Prost annotated types." | ||
edition = "2021" | ||
rust-version = "1.70" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
[lib] | ||
proc_macro = true | ||
|
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,19 +1,13 @@ | ||
[package] | ||
name = "prost-types" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
documentation = "https://docs.rs/prost-types" | ||
readme = "README.md" | ||
description = "Prost definitions of Protocol Buffers well known types." | ||
edition = "2021" | ||
rust-version = "1.70" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
[lib] | ||
doctest = false | ||
|
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,21 +1,15 @@ | ||
[package] | ||
name = "prost" | ||
version = "0.12.6" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Lucio Franco <[email protected]>", | ||
"Casper Meijn <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/tokio-rs/prost" | ||
documentation = "https://docs.rs/prost" | ||
readme = "README.md" | ||
description = "A Protocol Buffers implementation for the Rust Language." | ||
keywords = ["protobuf", "serialization"] | ||
categories = ["encoding"] | ||
edition = "2021" | ||
rust-version = "1.70" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
[lib] | ||
# https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options | ||
|
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,12 +1,9 @@ | ||
[package] | ||
name = "protobuf" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2021" | ||
edition.workspace = true | ||
authors.workspace = true | ||
|
||
[dependencies] | ||
prost = { path = "../prost" } | ||
|
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,12 +1,9 @@ | ||
[package] | ||
name = "tests-2015" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2015" | ||
authors.workspace = true | ||
|
||
build = "../tests/src/build.rs" | ||
|
||
|
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,12 +1,9 @@ | ||
[package] | ||
name = "tests-no-std" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2021" | ||
edition.workspace = true | ||
authors.workspace = true | ||
|
||
build = "../tests/src/build.rs" | ||
|
||
|
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,12 +1,9 @@ | ||
[package] | ||
name = "tests" | ||
version = "0.0.0" | ||
authors = [ | ||
"Dan Burkert <[email protected]>", | ||
"Tokio Contributors <[email protected]>", | ||
] | ||
publish = false | ||
edition = "2021" | ||
edition.workspace = true | ||
authors.workspace = true | ||
|
||
build = "src/build.rs" | ||
|
||
|