Skip to content

Commit b366c37

Browse files
committed
chore: align crates versions
1 parent 77a981c commit b366c37

File tree

12 files changed

+36
-26
lines changed

12 files changed

+36
-26
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[workspace]
22
members = [
3+
# binary
4+
"bins/revme",
5+
36
# libraries
47
"crates/revm",
58
"crates/primitives",
@@ -15,17 +18,13 @@ members = [
1518
"crates/handler/interface",
1619
"crates/handler",
1720

18-
# binary
19-
"bins/revme",
20-
2121
# variants
2222
"crates/optimism",
2323
"crates/inspector",
2424

2525
# utility
2626
"crates/statetest-types",
2727

28-
2928
# examples
3029
"examples/block_traces",
3130
"examples/contract_deployment",
@@ -40,16 +39,16 @@ default-members = ["crates/revm"]
4039

4140
[workspace.dependencies]
4241
# revm
43-
revm = { path = "crates/revm", version = "14.0.1", default-features = false }
44-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "9.0.1", default-features = false }
42+
revm = { path = "crates/revm", version = "19.2.0", default-features = false }
43+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "15.1.0", default-features = false }
4544
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0", default-features = false }
4645
database = { path = "crates/database", package = "revm-database", version = "1.0.0", default-features = false }
4746
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0", default-features = false }
4847
specification = { path = "crates/specification", package = "revm-specification", version = "1.0.0", default-features = false }
4948
state = { path = "crates/state", package = "revm-state", version = "1.0.0", default-features = false }
50-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "10.0.1", default-features = false }
49+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "15.0.0", default-features = false }
5150
inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0", default-features = false }
52-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "11.0.1", default-features = false }
51+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "16.0.0", default-features = false }
5352
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0", default-features = false }
5453
context = { path = "crates/context", package = "revm-context", version = "1.0.0", default-features = false }
5554
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0", default-features = false }

bins/revme/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revme"
33
description = "Rust Ethereum Virtual Machine Executable"
4-
version = "0.10.1"
4+
version = "2.3.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/bytecode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revm-bytecode"
3-
description = "Revm Database interface"
3+
description = "EVM Bytecodes"
44
version = "1.0.0"
55
authors.workspace = true
66
edition.workspace = true

crates/interpreter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-interpreter"
33
description = "Revm Interpreter that executes bytecode."
4-
version = "10.0.1"
4+
version = "15.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/optimism/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revm-optimism"
3-
description = "Optimism extension of Revm"
3+
description = "Optimism variant of Revm"
44
version = "1.0.0"
55
authors.workspace = true
66
edition.workspace = true

crates/precompile/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-precompile"
33
description = "Revm Precompiles - Ethereum compatible precompiled contracts"
4-
version = "11.0.1"
4+
version = "16.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/primitives/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-primitives"
3-
description = "Revm primitives structure"
4-
version = "9.0.1"
3+
description = "Revm primitives types"
4+
version = "15.1.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/revm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm"
33
description = "Revm - Rust Ethereum Virtual Machine"
4-
version = "14.0.1"
4+
version = "19.2.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/specification/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ rust_2018_idioms = "deny"
2222
all = "warn"
2323

2424
[dependencies]
25-
primitives = { path = "../primitives", package = "revm-primitives", version = "9.0.1", default-features = false }
25+
# revm
26+
primitives.workspace = true
2627

2728
# misc
2829
enumn = { version = "0.1" }

0 commit comments

Comments
 (0)