-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix/cargo: nested workspace workarounds and integration
See rust-lang/cargo#5042 for details.
- Loading branch information
Showing
8 changed files
with
692 additions
and
2,002 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[workspace] | ||
members = ["greenglas", "coaster", "coaster-nn", "coaster-blas", "juice", "juice-examples", "rust-blas", "rcudnn/cudnn", "rcudnn/cudnn-sys", "rcublas/cublas", "rcublas/cublas-sys"] | ||
|
||
exclude = [ "./rcudnn", "./rcublas" ] | ||
|
||
[patch.crates-io] | ||
coaster-nn = { path = "./coaster-nn" } | ||
coaster-blas = { path = "./coaster-blas" } | ||
coaster = { path = "./coaster" } | ||
greenglas = { path = "./greenglas" } | ||
juice = { path = "./juice" } | ||
rust-blas = { path = "./rust-blas" } | ||
rcublas = { path = "./rcublas/cublas" } | ||
rcublas-sys = { path = "./rcublas/cublas-sys" } | ||
rcudnn = { path = "./rcudnn/cudnn" } | ||
rcudnn-sys = { path = "./rcudnn/cudnn-sys" } | ||
|
||
[profile.bench] | ||
opt-level = 3 | ||
debug = false | ||
rpath = false | ||
lto = false | ||
debug-assertions = false | ||
codegen-units = 1 | ||
|
||
[profile.dev] | ||
opt-level = 0 | ||
debug = true | ||
rpath = false | ||
lto = false | ||
debug-assertions = true | ||
codegen-units = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.