Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
# Workspace
op-alloy-genesis = { version = "0.9.2", path = "crates/genesis", default-features = false }
op-alloy-protocol = { version = "0.9.2", path = "crates/protocol", default-features = false }
op-alloy-consensus = { version = "0.9.2", path = "crates/consensus", default-features = false }
op-alloy-network = { version = "0.9.2", path = "crates/network", default-features = false }
op-alloy-rpc-types = { version = "0.9.2", path = "crates/rpc-types", default-features = false }
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ The following crates are provided by `op-alloy`.
- [`op-alloy-consensus`][op-alloy-consensus]
- [`op-alloy-genesis`][op-alloy-genesis]
- [`op-alloy-network`][op-alloy-network]
- [`op-alloy-protocol`][op-alloy-protocol]
- [`op-alloy-rpc-jsonrpsee`][op-alloy-rpc-jsonrpsee]
- [`op-alloy-rpc-types-engine`][op-alloy-rpc-types-engine]
- [`op-alloy-rpc-types`][op-alloy-rpc-types]
Expand Down Expand Up @@ -55,7 +54,6 @@ The following crates support `no_std`.
Notice, provider crates do not support `no_std` compatibility.

- [`op-alloy-genesis`][op-alloy-genesis]
- [`op-alloy-protocol`][op-alloy-protocol]
- [`op-alloy-consensus`][op-alloy-consensus]
- [`op-alloy-rpc-types`][op-alloy-rpc-types]
- [`op-alloy-rpc-types-engine`][op-alloy-rpc-types-engine]
Expand Down Expand Up @@ -92,7 +90,6 @@ shall be dual licensed as above, without any additional terms or conditions.
[op-alloy-consensus]: https://crates.io/crates/op-alloy-consensus
[op-alloy-genesis]: https://crates.io/crates/op-alloy-genesis
[op-alloy-network]: https://crates.io/crates/op-alloy-network
[op-alloy-protocol]: https://crates.io/crates/op-alloy-protocol
[op-alloy-rpc-jsonrpsee]: https://crates.io/crates/op-alloy-rpc-jsonrpsee
[op-alloy-rpc-types-engine]: https://crates.io/crates/op-alloy-rpc-types-engine
[op-alloy-rpc-types]: https://crates.io/crates/op-alloy-rpc-types
6 changes: 0 additions & 6 deletions crates/op-alloy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ workspace = true
op-alloy-consensus = { workspace = true, optional = true }
op-alloy-genesis = { workspace = true, optional = true }
op-alloy-network = { workspace = true, optional = true }
op-alloy-protocol = { workspace = true, optional = true }
op-alloy-rpc-jsonrpsee = { workspace = true, optional = true }
op-alloy-rpc-types-engine = { workspace = true, optional = true }
op-alloy-rpc-types = { workspace = true, optional = true }
Expand All @@ -33,7 +32,6 @@ default = ["std", "k256", "serde"]
std = [
"op-alloy-consensus?/std",
"op-alloy-genesis?/std",
"op-alloy-protocol?/std",
"op-alloy-rpc-types?/std",
"op-alloy-rpc-types-engine?/std",
]
Expand All @@ -42,7 +40,6 @@ full = [
"consensus",
"genesis",
"network",
"protocol",
"rpc-types",
"rpc-types-engine",
"rpc-jsonrpsee",
Expand All @@ -55,22 +52,19 @@ k256 = [
arbitrary = [
"op-alloy-consensus?/arbitrary",
"op-alloy-genesis?/arbitrary",
"op-alloy-protocol?/arbitrary",
"op-alloy-rpc-types?/arbitrary",
"op-alloy-rpc-types-engine?/arbitrary",
]

serde = [
"op-alloy-consensus?/serde",
"op-alloy-genesis?/serde",
"op-alloy-protocol?/serde",
"op-alloy-rpc-types-engine?/serde",
]

# `no_std` support
consensus = ["dep:op-alloy-consensus"]
genesis = ["dep:op-alloy-genesis"]
protocol = ["dep:op-alloy-protocol"]
rpc-types = ["dep:op-alloy-rpc-types"]
rpc-types-engine = ["dep:op-alloy-rpc-types-engine"]

Expand Down
2 changes: 0 additions & 2 deletions crates/op-alloy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Notice, provider crates do not support `no_std` compatibility.

- [`op-alloy-consensus`][op-alloy-consensus]
- [`op-alloy-genesis`][op-alloy-genesis]
- [`op-alloy-protocol`][op-alloy-protocol]
- [`op-alloy-rpc-types-engine`][op-alloy-rpc-types-engine]
- [`op-alloy-rpc-types`][op-alloy-rpc-types]

Expand Down Expand Up @@ -89,7 +88,6 @@ shall be dual licensed as above, without any additional terms or conditions.
[op-alloy-consensus]: https://crates.io/crates/op-alloy-consensus
[op-alloy-genesis]: https://crates.io/crates/op-alloy-genesis
[op-alloy-network]: https://crates.io/crates/op-alloy-network
[op-alloy-protocol]: https://crates.io/crates/op-alloy-protocol
[op-alloy-rpc-jsonrpsee]: https://crates.io/crates/op-alloy-rpc-jsonrpsee
[op-alloy-rpc-types-engine]: https://crates.io/crates/op-alloy-rpc-types-engine
[op-alloy-rpc-types]: https://crates.io/crates/op-alloy-rpc-types
4 changes: 0 additions & 4 deletions crates/op-alloy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ pub use op_alloy_genesis as genesis;
#[doc(inline)]
pub use op_alloy_network as network;

#[cfg(feature = "protocol")]
#[doc(inline)]
pub use op_alloy_protocol as protocol;

#[cfg(feature = "rpc-types")]
#[doc(inline)]
pub use op_alloy_rpc_types as rpc_types;
Expand Down
26 changes: 0 additions & 26 deletions crates/protocol/Cargo.toml

This file was deleted.

12 changes: 0 additions & 12 deletions crates/protocol/README.md

This file was deleted.

10 changes: 0 additions & 10 deletions crates/protocol/src/lib.rs

This file was deleted.

112 changes: 0 additions & 112 deletions crates/protocol/src/test_utils.rs

This file was deleted.

Loading