-
Notifications
You must be signed in to change notification settings - Fork 801
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - Update external deps #1711
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just had one comment (in a few places) on the tree_hash
dependency. Looks like it went from using a relative path (to version 0.1.1) to now using what's on crates.io (0.1.0). Not sure if this was unintentional.
beacon_node/http_api/Cargo.toml
Outdated
@@ -30,5 +30,5 @@ slot_clock = { path = "../../common/slot_clock" } | |||
[dev-dependencies] | |||
store = { path = "../store" } | |||
environment = { path = "../../lighthouse/environment" } | |||
tree_hash = { path = "../../consensus/tree_hash" } | |||
discv5 = { version = "0.1.0-alpha.10", features = ["libp2p"] } | |||
tree_hash = "0.1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the tree_hash
in the code base is 0.1.1, not sure what the difference here is though.
common/validator_dir/Cargo.toml
Outdated
rayon = "1.3.0" | ||
tree_hash = { path = "../../consensus/tree_hash" } | ||
rayon = "1.4.1" | ||
tree_hash = "0.1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above
consensus/fork_choice/Cargo.toml
Outdated
|
||
[dev-dependencies] | ||
state_processing = { path = "../../consensus/state_processing" } | ||
beacon_chain = { path = "../../beacon_node/beacon_chain" } | ||
store = { path = "../../beacon_node/store" } | ||
tree_hash = { path = "../../consensus/tree_hash" } | ||
tree_hash = "0.1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above
rusqlite = { version = "0.23.1", features = ["bundled"] } | ||
r2d2 = "0.8.8" | ||
r2d2_sqlite = "0.16.0" | ||
tree_hash = "0.1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same
|
You can't publish on crates.io with a local path reference. |
b70b9c0
to
1f4b37d
Compare
1f4b37d
to
7427482
Compare
bors r+ |
Canceled. |
bors r+ |
Pull request successfully merged into v0.3.0-staging. Build succeeded: |
Issue Addressed
Proposed Changes
Updates dependencies across the workspace. Any crate that was not able to be brought to the latest version is listed in #1712.
Additional Info
NA