Skip to content

Commit

Permalink
Workspace-ify package fields
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWilsn committed Jan 31, 2025
1 parent 26f5268 commit a4af9f7
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 22 deletions.
17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
[workspace]
members = [ "eipw-preamble", "eipw-lint", "eipw-lint-js", "eipw-snippets" ]

[workspace.package]
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/ethereum/eipw"
rust-version = "1.80"

[workspace.dependencies]
eipw-snippets = { path = "eipw-snippets", version = "0.2.0-dev" }
eipw-lint = { path = "eipw-lint", version = "0.10.0-dev" }
Expand All @@ -17,11 +24,11 @@ assert_matches = "1.5.0"
[package]
name = "eipw"
description = "Ethereum Improvement Proposal linter that's one more than eipv"
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
repository = "https://github.com/ethereum/eipw"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
repository.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
10 changes: 5 additions & 5 deletions eipw-lint-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "eipw-lint-js"
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
repository = "https://github.com/ethereum/eipw"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
repository.workspace = true

description = "Node.js bindings for eipw, the Ethereum Improvement Proposal validator"
publish = false
Expand Down
10 changes: 5 additions & 5 deletions eipw-lint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "eipw-lint"
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
repository = "https://github.com/ethereum/eipw"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
repository.workspace = true
description = "library of lints for eipw, the Ethereum Improvement Proposal validator"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
8 changes: 4 additions & 4 deletions eipw-preamble/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "eipw-preamble"
version = "0.3.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
repository = "https://github.com/ethereum/eipw"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
repository.workspace = true
description = "preamble parser for eipw, the Ethereum Improvement Proposal validator"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions eipw-snippets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name = "eipw-snippets"
description = "(Hopefully) thin wrapper around annotate-snippets "
version = "0.2.0-dev"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.80"
repository = "https://github.com/ethereum/eipw"
edition.workspace = true
rust-version.workspace = true
repository.workspace = true

[dependencies]
serde = { workspace = true, features = [ "derive" ] }
Expand Down

0 comments on commit a4af9f7

Please sign in to comment.