Rust-GPU / Rust-CUDA

Ecosystem of libraries and tools for writing and executing fast GPU code fully in Rust.
Apache License 2.0
2.97k stars 112 forks source link

Transitive dependency not compileable with nightly-2021-12-04 #103

Open 28Smiles opened 1 year ago

28Smiles commented 1 year ago

The crate tracing_subsriber uses thread_local, which in its latest version is not compileable with nightly-2021-12-04, since it now uses language features newer than nightly-2021-12-04. Downgrading with cargo update -p thread_local --precise 1.1.4 worked for me. Maybe add this as a disclaimer to the doc.

apriori commented 1 year ago

You might give https://github.com/Rust-GPU/Rust-CUDA/pull/98 a try.

It seems, as of late this project is effectively unmaintained.

28Smiles commented 1 year ago

I could, but with the downgrade it also works for now.