diff --git a/crates/compute/Cargo.toml b/crates/compute/Cargo.toml index 8045c1d56..baa38f34d 100644 --- a/crates/compute/Cargo.toml +++ b/crates/compute/Cargo.toml @@ -18,6 +18,6 @@ thiserror.workspace = true [dev-dependencies] assert_matches.workspace = true -binius_compute_test_utils = { path = "../compute_test_utils", default-features = false } +binius_compute_test_utils = { path = "test_utils", default-features = false } binius_core = { path = "../core", default-features = false } rand.workspace = true diff --git a/crates/compute/test_utils/Cargo.toml b/crates/compute/test_utils/Cargo.toml new file mode 100644 index 000000000..ed8d56266 --- /dev/null +++ b/crates/compute/test_utils/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "binius_compute_test_utils" +version.workspace = true +edition.workspace = true +authors.workspace = true + + +[lints] +workspace = true + +[dependencies] +binius_compute = { path = "../../compute", default-features = false } +binius_core = { path = "../../core", default-features = false } +binius_field = { path = "../../field", default-features = false } +binius_hal = { path = "../../hal", default-features = false } +binius_hash = { path = "../../hash", default-features = false } +binius_math = { path = "../../math", default-features = false } +binius_ntt = { path = "../../ntt", default-features = false } +binius_utils = { path = "../../utils", default-features = false } +bytemuck = { workspace = true, features = ["extern_crate_alloc"] } +itertools.workspace = true +rand = { workspace = true, features = ["std"] } diff --git a/crates/compute_test_utils/src/bivariate_sumcheck.rs b/crates/compute/test_utils/src/bivariate_sumcheck.rs similarity index 100% rename from crates/compute_test_utils/src/bivariate_sumcheck.rs rename to crates/compute/test_utils/src/bivariate_sumcheck.rs diff --git a/crates/compute_test_utils/src/layer.rs b/crates/compute/test_utils/src/layer.rs similarity index 100% rename from crates/compute_test_utils/src/layer.rs rename to crates/compute/test_utils/src/layer.rs diff --git a/crates/compute_test_utils/src/lib.rs b/crates/compute/test_utils/src/lib.rs similarity index 100% rename from crates/compute_test_utils/src/lib.rs rename to crates/compute/test_utils/src/lib.rs diff --git a/crates/compute_test_utils/src/piop.rs b/crates/compute/test_utils/src/piop.rs similarity index 100% rename from crates/compute_test_utils/src/piop.rs rename to crates/compute/test_utils/src/piop.rs diff --git a/crates/compute_test_utils/src/ring_switch.rs b/crates/compute/test_utils/src/ring_switch.rs similarity index 100% rename from crates/compute_test_utils/src/ring_switch.rs rename to crates/compute/test_utils/src/ring_switch.rs diff --git a/crates/compute_test_utils/Cargo.toml b/crates/compute_test_utils/Cargo.toml deleted file mode 100644 index d590223b5..000000000 --- a/crates/compute_test_utils/Cargo.toml +++ /dev/null @@ -1,22 +0,0 @@ -[package] -name = "binius_compute_test_utils" -version.workspace = true -edition.workspace = true -authors.workspace = true - - -[lints] -workspace = true - -[dependencies] -binius_compute = { path = "../compute", default-features = false } -binius_core = { path = "../core", default-features = false } -binius_field = { path = "../field", default-features = false } -binius_hal = { path = "../hal", default-features = false } -binius_hash = { path = "../hash", default-features = false } -binius_math = { path = "../math", default-features = false } -binius_ntt = { path = "../ntt", default-features = false } -binius_utils = { path = "../utils", default-features = false } -bytemuck = { workspace = true, features = ["extern_crate_alloc"] } -itertools.workspace = true -rand.workspace = true diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 1b4051052..f1d6233cd 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -37,7 +37,7 @@ tracing.workspace = true tracing-profile.workspace = true [dev-dependencies] -binius_compute_test_utils = { path = "../compute_test_utils", default-features = false } +binius_compute_test_utils = { path = "../compute/test_utils", default-features = false } binius_macros = { path = "../macros", default-features = false } criterion.workspace = true proptest.workspace = true diff --git a/crates/fast_compute/Cargo.toml b/crates/fast_compute/Cargo.toml index bf2660158..accbda25c 100644 --- a/crates/fast_compute/Cargo.toml +++ b/crates/fast_compute/Cargo.toml @@ -22,5 +22,5 @@ thread_local = { workspace = true } tracing = { workspace = true } [dev-dependencies] -binius_compute_test_utils = { path = "../compute_test_utils", default-features = false } -rand.workspace = true +binius_compute_test_utils = { path = "../compute/test_utils", default-features = false } +rand = { workspace = true, features = ["std"] }