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
29 changes: 0 additions & 29 deletions crates/bindings/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,56 +1,27 @@
use alloy::sol;

// interpreters
sol!(
#![sol(all_derives = true)]
IInterpreterV2,
"../../out/IInterpreterV2.sol/IInterpreterV2.json"
);
sol!(
#![sol(all_derives = true)]
IInterpreterV3,
"../../out/IInterpreterV3.sol/IInterpreterV3.json"
);
sol!(
#![sol(all_derives = true)]
IInterpreterV4,
"../../out/IInterpreterV4.sol/IInterpreterV4.json"
);

// stores
sol!(
#![sol(all_derives = true)]
IInterpreterStoreV1,
"../../out/IInterpreterStoreV1.sol/IInterpreterStoreV1.json"
);
sol!(
#![sol(all_derives = true)]
IInterpreterStoreV2,
"../../out/IInterpreterStoreV2.sol/IInterpreterStoreV2.json"
);
sol!(
#![sol(all_derives = true)]
IInterpreterStoreV3,
"../../out/IInterpreterStoreV3.sol/IInterpreterStoreV3.json"
);

// parsers
sol!(
#![sol(all_derives = true)]
IParserV1, "../../out/IParserV1.sol/IParserV1.json"
);
sol!(
#![sol(all_derives = true)]
IParserV2, "../../out/IParserV2.sol/IParserV2.json"
);

// pragma
sol!(
#![sol(all_derives = true)]
IParserPragmaV1, "../../out/IParserPragmaV1.sol/IParserPragmaV1.json"
);

// deployer
sol!(
#![sol(all_derives = true)]
IExpressionDeployerV3,
Expand Down
52 changes: 0 additions & 52 deletions crates/eval/src/dispatch.rs

This file was deleted.

1 change: 0 additions & 1 deletion crates/eval/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pub mod dispatch;
pub mod error;
#[cfg(not(target_family = "wasm"))]
pub mod eval;
Expand Down
2 changes: 0 additions & 2 deletions crates/parser/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
pub mod error;
pub mod v1;
pub mod v2;

pub use crate::error::*;
pub use crate::v1::*;
pub use crate::v2::*;
165 changes: 0 additions & 165 deletions crates/parser/src/v1.rs

This file was deleted.