From b3a7740bf16f43371e1b91716c36d57083659b90 Mon Sep 17 00:00:00 2001 From: Praneet Rathi <prrathi10@gmail.com> Date: Sat, 18 Jan 2025 12:41:23 -0600 Subject: [PATCH] undo --- hercules_samples/ccp/Cargo.toml | 4 ++-- juno_build/Cargo.toml | 3 +-- juno_frontend/Cargo.toml | 3 +-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/hercules_samples/ccp/Cargo.toml b/hercules_samples/ccp/Cargo.toml index c665e73f..313fd179 100644 --- a/hercules_samples/ccp/Cargo.toml +++ b/hercules_samples/ccp/Cargo.toml @@ -8,10 +8,10 @@ edition = "2021" cuda = ["juno_build/cuda"] [dependencies] -juno_build = { path = "../../juno_build", features = [] } +juno_build = { path = "../../juno_build" } rand = "*" async-std = "*" with_builtin_macros = "0.1.0" [build-dependencies] -juno_build = { path = "../../juno_build", features = [] } +juno_build = { path = "../../juno_build" } diff --git a/juno_build/Cargo.toml b/juno_build/Cargo.toml index 79b29c87..11ef85db 100644 --- a/juno_build/Cargo.toml +++ b/juno_build/Cargo.toml @@ -5,10 +5,9 @@ authors = ["Aaron Councilman <aaronjc4@illinois.edu>"] edition = "2021" [features] -cuda = ["juno_frontend/cuda", "dep:cuda-support"] +cuda = ["juno_frontend/cuda"] [dependencies] juno_frontend = { path = "../juno_frontend", default-features = false } hercules_ir = { path = "../hercules_ir" } with_builtin_macros = "0.1.0" -cuda-support = { path = "../cuda-support", optional = true } diff --git a/juno_frontend/Cargo.toml b/juno_frontend/Cargo.toml index 05957554..dff81db2 100644 --- a/juno_frontend/Cargo.toml +++ b/juno_frontend/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Aaron Councilman <aaronjc4@illinois.edu>"] edition = "2021" [features] -cuda = ["hercules_opt/cuda", "dep:cuda-support"] +cuda = ["hercules_opt/cuda"] default = [] [[bin]] @@ -23,7 +23,6 @@ lrpar = "0.13" [dependencies] hercules_opt = { path = "../hercules_opt", default-features = false } -cuda-support = { path = "../cuda-support", optional = true } cfgrammar = "0.13" clap = { version = "*", features = ["derive"] } lrlex = "0.13" -- GitLab