Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
rouzwelt committed Sep 6, 2024
1 parent f391e15 commit 24f7378
Show file tree
Hide file tree
Showing 19 changed files with 613 additions and 1,909 deletions.
3 changes: 0 additions & 3 deletions .env.example

This file was deleted.

68 changes: 53 additions & 15 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.0.0-alpha.0"
edition = "2021"
license = "CAL-1.0"
homepage = "https://github.com/rainprotocol/rain.interpreter"
Expand Down Expand Up @@ -33,7 +34,6 @@ tracing-subscriber = "0.3.17"
reqwest = { version = "0.11.17", features = ["json"] }
once_cell = "1.17.1"
alloy-ethers-typecast = { git = "https://github.com/rainlanguage/alloy-ethers-typecast", rev = "0881930a22e84db49ba955c5b88e790e1266ac66" }
rain-interpreter-env = { path = "crates/env" }
eyre = "0.6"
rain-error-decoding = { git = "https://github.com/rainlanguage/rain.error", rev = "72d9577fdaf7135113847027ba951f9a43b41827" }

Expand All @@ -48,3 +48,6 @@ path = "crates/bindings"

[workspace.dependencies.rain-interpreter-eval]
path = "crates/eval"

[workspace.dependencies.rain_interpreter_test_fixtures]
path = "crates/test_fixtures"
2 changes: 1 addition & 1 deletion crates/bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rain_interpreter_bindings"
version = "0.1.0"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/bindings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,21 @@ sol!(
IInterpreterV3,
"../../out/IInterpreterV3.sol/IInterpreterV3.json"
);
sol!(
#![sol(all_derives = true)]
IInterpreterV4,
"../../out/IInterpreterV4.sol/IInterpreterV4.json"
);
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)]
IParserV1, "../../out/IParserV1.sol/IParserV1.json");
Expand Down
Loading

0 comments on commit 24f7378

Please sign in to comment.