Skip to content

Commit

Permalink
solc v0.8.20; shanghai, push0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sbillig committed May 17, 2023
1 parent e16f122 commit be4c9ab
Show file tree
Hide file tree
Showing 143 changed files with 664 additions and 611 deletions.
111 changes: 54 additions & 57 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion crates/analyzer/src/traversal/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,6 @@ pub fn type_desc(
if let Some(val) = self_type {
Ok(Type::SelfType(val).id(context.db()))
} else {
dbg!("Reporting error");
Err(TypeError::new(context.error(
"`Self` can not be used here",
desc.span,
Expand Down
2 changes: 1 addition & 1 deletion crates/test-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ colored = "2.0"

# used by revm; we need to force the js feature for wasm support
getrandom = { version = "0.2.8", features = ["js"] }
revm = "3.0"
revm = "3.3"
5 changes: 2 additions & 3 deletions crates/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ repository = "https://github.com/ethereum/fe"

[dependencies]
ethabi = { default-features = false, features = ["full-serde"], version = "18.0" }
evm = { default-features = false, version = "0.37" }
evm-runtime = { default-features = false, version = "0.37" }
evm = { git = "https://github.com/rust-blockchain/evm", rev = "e7138f7", default-features = false }
fe-common = {path = "../common", version = "^0.22.0"}
fe-driver = {path = "../driver", version = "^0.22.0"}
fe-yulc = {path = "../yulc", version = "^0.22.0", optional = true, features = ["solc-backend"]}
Expand All @@ -18,7 +17,7 @@ test-files = {path = "../test-files", package = "fe-test-files" }
hex = "0.4"
primitive-types = {version = "0.12", default-features = false, features = ["rlp"]}
serde_json = "1.0.64"
solc = { git = "https://github.com/fe-lang/solc-rust", rev = "bde551e", optional = true}
solc = { git = "https://github.com/fe-lang/solc-rust", rev = "d65bef8", optional = true}
yultsur = {git = "https://github.com/fe-lang/yultsur", rev = "ae85470"}
indexmap = "1.6.2"
insta = { default-features = false, version = "1.26" }
Expand Down
Loading

0 comments on commit be4c9ab

Please sign in to comment.