diff --git a/hercules_samples/ccp/Cargo.toml b/hercules_samples/ccp/Cargo.toml index c665e73f058d0ec5964a5b2da735ec36395e79f8..313fd179ed25292c51942ff8ddb9da77da0dee79 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 79b29c87f31a73d58723fbb358553e7089132ddd..11ef85db46ba2c7958fa5becc57623a3c5875868 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 059575546aace6582e2c9208788a41af731fa2d1..dff81db22ac19bd481726ea73f4156b839256ff0 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"