Skip to content

Commit c26af03

Browse files
authored
Merge pull request #62 from tangle-network/daniel/release-0.4.0
chore: fix some bug to release next version
2 parents 35839b0 + 376eee1 commit c26af03

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262
sudo apt-get install -y protobuf-compiler libprotobuf-dev libgmp-dev
6363
6464
- name: Run Clippy
65-
run: cargo clippy --tests --examples --features build-script -- -D warnings
65+
run: cargo clippy --tests --examples -- -D warnings

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2024"
77
license = "MIT OR Apache-2.0"
88
homepage = "https://tangle.tools"
99
repository = "https://github.com/tangle-network/eigenlayer-contract-deployer"
10-
rust-version = "1.86"
10+
rust-version = "1.88"
1111

1212
[lints.rust]
1313
rust_2018_idioms = { level = "deny", priority = -1 }

src/artifacts/eigenlayer-middleware-1.3.1/SlashingRegistryCoordinator.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

src/slashing_registry_coordinator.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ use crate::bindings::core::{
1616
quorum_bitmap_history_lib, signature_checker_lib, slashing_registry_coordinator,
1717
};
1818

19-
pub const ARTIFACT: &str = include_str!(
20-
"../dependencies/eigenlayer-middleware-1.3.1/out/SlashingRegistryCoordinator.sol/SlashingRegistryCoordinator.json"
21-
);
19+
pub const ARTIFACT: &str =
20+
include_str!("artifacts/eigenlayer-middleware-1.3.1/SlashingRegistryCoordinator.json");
2221

2322
fn artifact() -> std::io::Result<serde_json::Value> {
2423
serde_json::from_str(ARTIFACT).map_err(std::io::Error::other)

0 commit comments

Comments
 (0)