Skip to content
Open
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
15 changes: 8 additions & 7 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions crates/pecos-engines/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ bitflags.workspace = true
dyn-clone.workspace = true
num-bigint.workspace = true
bitvec.workspace = true
tempfile.workspace = true

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tempfile is used only by tests/seed_report.rs, so as written it ships as a runtime dependency of pecos-engines and everything downstream (pecos, pecos-hugr, pecos-qasm, pecos-foreign, pecos-phir-json, benchmarks), pulling in its rustix/getrandom/windows-sys chain. Every other crate in the workspace lists it under [dev-dependencies].

Suggested change
tempfile.workspace = true

and add at the end of the file:

[dev-dependencies]
tempfile.workspace = true


pecos-core.workspace = true
pecos-results.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/pecos-engines/src/monte_carlo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ pub mod builder;
pub mod engine;

pub use builder::MonteCarloEngineBuilder;
pub use engine::MonteCarloEngine;
pub use engine::{MonteCarloEngine, SeedReport, WorkerSeedRecord};
Loading
Loading