Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
chore: remove unused dev dependencies (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Jul 17, 2023
1 parent 4097d24 commit 0e1a64e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions acvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,3 @@ unstable-fallbacks = []
[dev-dependencies]
rand = "0.8.5"
proptest = "1.2.0"
blake2 = "0.10.6"
sha2 = "0.10.6"
4 changes: 3 additions & 1 deletion acvm/src/pwg/directives/sorting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,11 @@ pub(super) fn route(inputs: Vec<FieldElement>, outputs: Vec<FieldElement>) -> Ve

#[cfg(test)]
mod tests {
// Silence `unused_crate_dependencies` warning
use proptest as _;

Check warning on line 249 in acvm/src/pwg/directives/sorting.rs

View workflow job for this annotation

GitHub Actions / Spellcheck / Spellcheck

Unknown word (proptest)

Check warning on line 249 in acvm/src/pwg/directives/sorting.rs

View workflow job for this annotation

GitHub Actions / Spellcheck / Spellcheck

Unknown word (proptest)

use super::route;
use acir::FieldElement;
use proptest as _;
use rand::prelude::*;

fn execute_network(config: Vec<bool>, inputs: Vec<FieldElement>) -> Vec<FieldElement> {
Expand Down

0 comments on commit 0e1a64e

Please sign in to comment.