Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJepsen committed Apr 26, 2024
1 parent 68d078a commit ff678ad
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 25 deletions.
90 changes: 82 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ path = "examples/minter/main.rs"

[workspace.dependencies]
# Arbiter local for development
arbiter-bindings = { path = "bindings" }
arbiter-core = { path = "core" }
arbiter-engine = { path = "engine" }
arbiter-macros = { path = "macros" }
# arbiter-bindings = { path = "bindings" }
# arbiter-core = { path = "core" }
# arbiter-engine = { path = "engine" }
# arbiter-macros = { path = "macros" }

# Arbiter crates.io for release, these need to be used to do crate releases!
# arbiter-bindings = "0.1.4"
# arbiter-core = "0.10.2"
# arbiter-engine = "0.3.0"
# arbiter-macros = "0.1.1"
arbiter-bindings = "0.1.7"
arbiter-core = "0.11.0"
arbiter-engine = "0.4.0"
arbiter-macros = "0.1.4"

revm = { version = "8.0.0", features = ["ethersdb", "std", "serde"] }
revm-primitives = "3.1.1"
Expand Down
2 changes: 1 addition & 1 deletion bindings/lib/forge-std
10 changes: 5 additions & 5 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ serde.workspace = true
serde_json.workspace = true

# Types
bytes = { version = "1.6.0" }
hex = { version = "=0.4.3", default-features = false }
hashbrown = "0.14.3"
uint = "0.9.5"
bytes = { version = "^1.5.0" }
hex = { version = "^0.4.3", default-features = false }
hashbrown = "^0.14.3"
uint = "^0.9.5"

# Concurrency/async
tokio.workspace = true
futures-util.workspace = true
async-trait.workspace = true
async-stream.workspace = true
crossbeam-channel.workspace = true
futures-timer = { version = "3.0.3" }
futures-timer = { version = ">=3.0.2, <4.0.0" }
futures-locks = { version = "=0.7.1" }

# Randomness
Expand Down
6 changes: 3 additions & 3 deletions docs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ tokio = "1.36.0"

[dev-dependencies]
skeptic = "0.13.7"
arbiter-core = "0.10.2"
arbiter-bindings = "0.1.4"
revm-primitives = "2.0.0"
arbiter-core.workspace = true
arbiter-bindings.workspace = true
revm-primitives.workspace = true

0 comments on commit ff678ad

Please sign in to comment.