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 28, 2024
1 parent 2868039 commit a234ba4
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion conformance/Cargo.toml
@@ -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
@@ -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
4 changes: 2 additions & 2 deletions prost-build/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "prost-build"
readme = "README.md"
description = "Generate Prost annotated Rust types from Protocol Buffers files."
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description = "Generate Prost annotated Rust types from Protocol Buffers files."
edition.workspace = true
rust-version.workspace = true

Expand Down
4 changes: 2 additions & 2 deletions prost-derive/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "prost-derive"
readme = "README.md"
description = "Generate encoding and decoding implementations for Prost annotated types."
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description = "Generate encoding and decoding implementations for Prost annotated types."
edition.workspace = true
rust-version.workspace = true

Expand Down
4 changes: 2 additions & 2 deletions prost-types/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "prost-types"
readme = "README.md"
description = "Prost definitions of Protocol Buffers well known types."
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description = "Prost definitions of Protocol Buffers well known types."
edition.workspace = true
rust-version.workspace = true

Expand Down
8 changes: 4 additions & 4 deletions prost/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "prost"
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "../README.md"
description = "A Protocol Buffers implementation for the Rust Language."
keywords = ["protobuf", "serialization"]
categories = ["encoding"]
version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion protobuf/Cargo.toml
@@ -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
@@ -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
@@ -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
@@ -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 a234ba4

Please sign in to comment.