Skip to content

Commit

Permalink
chore: group cargo workspace package metadata usage
Browse files Browse the repository at this point in the history
  • Loading branch information
gibbz00 committed Apr 21, 2024
1 parent c4ee08d commit eab9457
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion conformance/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "conformance"
version = "0.0.0"
authors.workspace = true
publish = false
edition = "2018"
authors.workspace = true

[dependencies]
bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "fuzz"
version = "0.0.0"
authors.workspace = true
publish = false
edition = "2018"
authors.workspace = true

[package.metadata]
cargo-fuzz = true
Expand Down
2 changes: 1 addition & 1 deletion prost-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "prost-build"
readme = "README.md"
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion prost-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "prost-derive"
readme = "README.md"
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion prost-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "prost-types"
readme = "README.md"
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions prost/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "prost"
readme = "../README.md"
keywords = ["protobuf", "serialization"]
categories = ["encoding"]
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "../README.md"
description.workspace = true
keywords = ["protobuf", "serialization"]
categories = ["encoding"]
edition.workspace = true
rust-version.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion protobuf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "protobuf"
version = "0.0.0"
authors.workspace = true
publish = false
edition = "2018"
authors.workspace = true

[dependencies]
prost = { path = "../prost" }
Expand Down
2 changes: 1 addition & 1 deletion tests-2015/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "tests-2015"
version = "0.0.0"
authors.workspace = true
publish = false
edition = "2015"
authors.workspace = true

build = "../tests/src/build.rs"

Expand Down
2 changes: 1 addition & 1 deletion tests-no-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "tests-no-std"
version = "0.0.0"
authors.workspace = true
publish = false
edition = "2018"
authors.workspace = true

build = "../tests/src/build.rs"

Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "tests"
version = "0.0.0"
authors.workspace = true
publish = false
edition = "2018"
authors.workspace = true

build = "src/build.rs"

Expand Down

0 comments on commit eab9457

Please sign in to comment.