Skip to content

Commit ad641ab

Browse files
committed
chore: fix up manifests
1 parent adac5b4 commit ad641ab

File tree

3 files changed

+38
-19
lines changed

3 files changed

+38
-19
lines changed

Cargo.toml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11
[workspace]
2-
members = [
3-
"crates/*"
4-
]
2+
members = ["crates/*"]
53

64
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021
75
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
86
resolver = "2"
97

8+
[workspace.package]
9+
authors = ["Foundry Maintainers"]
10+
version = "0.5.0"
11+
rust-version = "1.70"
12+
readme = "README.md"
13+
license = "MIT OR Apache-2.0"
14+
repository = "https://github.com/foundry-rs/block-explorers"
15+
homepage = "https://github.com/foundry-rs/block-explorers"
16+
edition = "2021"
17+
exclude = [".github/", "scripts/", "test-data/"]
18+
1019
[workspace.dependencies]
1120
alloy-chains = "0.1"
12-
alloy-primitives = { version = "0.7", default-features = false, features = ["std", "serde"] }
21+
alloy-primitives = { version = "0.7", default-features = false, features = [
22+
"std",
23+
"serde",
24+
] }
1325
alloy-rpc-types-eth = "0.1"
1426
alloy-eips = "0.1"
1527
alloy-serde = "0.1"

crates/blob-explorers/Cargo.toml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
[package]
22
name = "foundry-blob-explorers"
3-
version = "0.1.0"
4-
edition = "2021"
5-
authors = ["Foundry & Alloy Contributors"]
6-
license = "MIT OR Apache-2.0"
73
description = "Bindings for blobscan.com and other blob explorer APIs"
84
keywords = ["ethereum", "blobscan"]
9-
readme = "README.md"
5+
6+
version.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
9+
authors.workspace = true
10+
license.workspace = true
11+
homepage.workspace = true
12+
repository.workspace = true
13+
exclude.workspace = true
1014

1115
[dependencies]
1216
alloy-chains.workspace = true
13-
alloy-primitives = { workspace = true, default-features = false, features = ["std", "serde"] }
17+
alloy-primitives = { workspace = true, default-features = false, features = [
18+
"std",
19+
"serde",
20+
] }
1421

1522
alloy-rpc-types-eth.workspace = true
1623
alloy-serde.workspace = true

crates/block-explorers/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "foundry-block-explorers"
3-
version = "0.4.1"
4-
edition = "2021"
5-
rust-version = "1.65"
6-
authors = ["Foundry Contributors"]
7-
license = "MIT OR Apache-2.0"
83
description = "Bindings for Etherscan.io and other block explorer APIs"
94
keywords = ["crypto", "ethers", "ethereum", "web3", "etherscan"]
10-
homepage = "https://github.com/foundry-rs/block-explorers"
11-
repository = "https://github.com/foundry-rs/block-explorers"
12-
exclude = [".github/", "scripts/", "test-data/"]
13-
readme = "README.md"
5+
6+
version.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
9+
authors.workspace = true
10+
license.workspace = true
11+
homepage.workspace = true
12+
repository.workspace = true
13+
exclude.workspace = true
1414

1515
[package.metadata.docs.rs]
1616
all-features = true

0 commit comments

Comments
 (0)