Skip to content

Commit

Permalink
Merge pull request #47 from ralexstokes/pin-deps
Browse files Browse the repository at this point in the history
pin deps we fetch from git
  • Loading branch information
ralexstokes authored Sep 7, 2022
2 parents f32315b + 8c2d747 commit 617c0ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions mev-boost-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ url = { version = "2.2.2", default-features = false }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0.30"

ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus" }
beacon-api-client = { git = "https://github.com/ralexstokes/beacon-api-client" }
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "v0.1.1" }
beacon-api-client = { git = "https://github.com/ralexstokes/beacon-api-client", rev = "69c3eda" }

mev-build-rs = { path = "../mev-build-rs" }
mev-relay-rs = { path = "../mev-relay-rs" }
Expand Down
6 changes: 3 additions & 3 deletions mev-build-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0.81", optional = true }
thiserror = "1.0.30"

ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus" }
ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs" }
beacon-api-client = { git = "https://github.com/ralexstokes/beacon-api-client", optional = true }
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "v0.1.1" }
ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs", rev = "cb08f1" }
beacon-api-client = { git = "https://github.com/ralexstokes/beacon-api-client", rev = "69c3eda", optional = true }
4 changes: 2 additions & 2 deletions mev-relay-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ url = { version = "2.2.2", default-features = false }

serde = { version = "1.0", features = ["derive"] }

ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus" }
beacon-api-client = { git = "https://github.com/ralexstokes/beacon-api-client" }
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "v0.1.1" }
beacon-api-client = { git = "https://github.com/ralexstokes/beacon-api-client", rev = "69c3eda" }

mev-build-rs = { path = "../mev-build-rs"}

0 comments on commit 617c0ed

Please sign in to comment.