Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/proof/std-fpvm/src/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ struct ReadFuture<'a> {

impl<'a> ReadFuture<'a> {
/// Create a new [ReadFuture] from a channel and a buffer.
#[allow(clippy::missing_const_for_fn)]
fn new(channel: FileChannel, buf: &'a mut [u8]) -> Self {
Self { channel, buf: RefCell::new(buf), read: 0 }
}
Expand Down
4 changes: 0 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ lint-native: fmt-native-check lint-docs
lint-cannon:
docker run \
--rm \
--platform linux/amd64 \
-v `pwd`/:/workdir \
-w="/workdir" \
ghcr.io/op-rs/kona/cannon-builder:main cargo clippy -p kona-std-fpvm --all-features -Zbuild-std=core,alloc -- -D warnings
Expand All @@ -78,7 +77,6 @@ lint-cannon:
lint-asterisc:
docker run \
--rm \
--platform linux/amd64 \
-v `pwd`/:/workdir \
-w="/workdir" \
ghcr.io/op-rs/kona/asterisc-builder:main cargo clippy -p kona-std-fpvm --all-features -Zbuild-std=core,alloc -- -D warnings
Expand All @@ -102,7 +100,6 @@ build-native *args='':
build-cannon *args='':
docker run \
--rm \
--platform linux/amd64 \
-v `pwd`/:/workdir \
-w="/workdir" \
ghcr.io/op-rs/kona/cannon-builder:main cargo build --workspace -Zbuild-std=core,alloc $@ --exclude kona-host --exclude kona-providers-alloy --exclude kona-net
Expand All @@ -111,7 +108,6 @@ build-cannon *args='':
build-asterisc *args='':
docker run \
--rm \
--platform linux/amd64 \
-v `pwd`/:/workdir \
-w="/workdir" \
ghcr.io/op-rs/kona/asterisc-builder:main cargo build --workspace -Zbuild-std=core,alloc $@ --exclude kona-host --exclude kona-providers-alloy --exclude kona-net
Expand Down
Loading