Skip to content
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
10 changes: 10 additions & 0 deletions sp1/guest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Standalone workspace root. This guest crate is compiled out-of-tree for
# the zkVM target and never joins the host Cargo workspace; its own (empty)
# `[workspace]` pins cargo's upward workspace search to this directory.
# Without it, a NESTED checkout — e.g. the benchmark base-run, which checks
# the base repo out under `base/` inside the PR checkout — lets cargo walk
# past the relative `exclude` paths in the outer manifests and resolve this
# crate to the outer workspace, failing the build script with "current
# package believes it's in a workspace when it's not".
[workspace]

[package]
name = "sp1-guest"
version = "0.1.0"
Expand Down
10 changes: 10 additions & 0 deletions zisk/agg-guest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Standalone workspace root. This guest crate is compiled out-of-tree for
# the zkVM target and never joins the host Cargo workspace; its own (empty)
# `[workspace]` pins cargo's upward workspace search to this directory.
# Without it, a NESTED checkout — e.g. the benchmark base-run, which checks
# the base repo out under `base/` inside the PR checkout — lets cargo walk
# past the relative `exclude` paths in the outer manifests and resolve this
# crate to the outer workspace, failing the build script with "current
# package believes it's in a workspace when it's not".
[workspace]

[package]
name = "zisk-agg-guest"
version = "0.1.0"
Expand Down
10 changes: 10 additions & 0 deletions zisk/guest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Standalone workspace root. This guest crate is compiled out-of-tree for
# the zkVM target and never joins the host Cargo workspace; its own (empty)
# `[workspace]` pins cargo's upward workspace search to this directory.
# Without it, a NESTED checkout — e.g. the benchmark base-run, which checks
# the base repo out under `base/` inside the PR checkout — lets cargo walk
# past the relative `exclude` paths in the outer manifests and resolve this
# crate to the outer workspace, failing the build script with "current
# package believes it's in a workspace when it's not".
[workspace]

[package]
name = "zisk-guest"
version = "0.1.0"
Expand Down