Skip to content

Commit

Permalink
[WEEKLY RELEASE] HotShot - 0.5.73 (#3624)
Browse files Browse the repository at this point in the history
* bump version to 0.5.73

* update cargo.lock

* turn off enable_registration_verification

* restore enable_registration_verification to true

* latest main

* clippy

* clippy
  • Loading branch information
dailinsubjam authored Sep 4, 2024
1 parent 3cd7e8b commit 92dfe84
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.5.72" # same as `hotshot`, but workspace subcrate can also release its own version
version = "0.5.73" # same as `hotshot`, but workspace subcrate can also release its own version
authors = ["Espresso Systems <hello@espressosys.com>"]
edition = "2021"
rust-version = "1.76.0"
Expand Down Expand Up @@ -162,8 +162,8 @@ incremental = true

[workspace.lints.clippy]
# warns
all = "warn"
pedantic = "warn"
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_docs_in_private_items = "warn"
panic = "warn"
clone_on_ref_ptr = "warn"
Expand All @@ -173,7 +173,7 @@ module_name_repetitions = "allow"

[workspace.lints.rust]
# warns
rust_2018_idioms = "warn"
rust_2018_idioms = { level = "warn", priority = -1 }
# TODO change to deny
missing_docs = "warn"
warnings = "warn"
2 changes: 1 addition & 1 deletion crates/hotshot/src/tasks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ where
// spawn a task to listen on the (original) internal event stream,
// and broadcast the transformed events to the replacement event stream we just created.
let shutdown_signal = create_shutdown_event_monitor(handle).fuse();
let public_key = handle.public_key();
let public_key = handle.public_key().clone();
let private_key = handle.private_key().clone();
let upgrade_lock = handle.hotshot.upgrade_lock.clone();
let send_handle = async_spawn(async move {
Expand Down
2 changes: 1 addition & 1 deletion crates/macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ fn cross_tests_internal(test_spec: CrossTestData) -> TokenStream {
/// - `Types: []` - a list types that implement `NodeImplementation` over the types in `Impls`
/// - `TestName: example_test` - the name of the test
/// - `Ignore`: whether or not this set of tests are ignored
/// Example usage: see tests in this module
/// Example usage: see tests in this module
#[proc_macro]
pub fn cross_tests(input: TokenStream) -> TokenStream {
let test_spec = parse_macro_input!(input as CrossTestData);
Expand Down

0 comments on commit 92dfe84

Please sign in to comment.