forked from Rust-GPU/rust-cuda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "rustc_codegen_nvvm"
version = "0.3.0"
authors = [
"Riccardo D'Ambrosio <rdambrosio016@gmail.com>",
"The Rust Project Developers",
]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A codegen backend for Rustc which targets the libnvvm CUDA library"
repository = "https://github.com/Rust-GPU/Rust-CUDA"
readme = "../../README.md"
[lib]
crate-type = ["dylib"]
[dependencies]
nvvm = { version = "0.1", path = "../nvvm" }
rustc-demangle = "0.1.20"
cstr = "0.2"
libc = "0.2.97"
libloading = "0.7"
tar = "0.4.35"
once_cell = "1.8.0"
bitflags = "1.3.2"
tracing = { version = "0.1.29", features = ["release_max_level_debug"] }
find_cuda_helper = { version = "0.2", path = "../find_cuda_helper" }
tracing-subscriber = { version = "0.3.1", features = ["env-filter"] }
rustc_codegen_nvvm_macros = { version = "0.1", path = "../rustc_codegen_nvvm_macros" }
[build-dependencies]
build-helper = "0.1.1"
cc = { version = "1.0", features = ["parallel"] }
xz = "0.1.0"
tar = "0.4.37"
curl = "0.4.40"
[package.metadata.rust-analyzer]
rustc_private = true