-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1.21 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
40
41
42
[package]
name = "rustc_codegen_nvvm"
version = "0.3.0"
authors = [
"Riccardo D'Ambrosio <rdambrosio016@gmail.com>",
"The Rust Project Developers",
]
edition = "2024"
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.24"
libc = "0.2.169"
libloading = "0.8.0"
tar = "0.4.43"
object = "0.36.7"
bitflags = "2.8.0"
# To avoid duplicate dependencies, this should match the version of gimli used
# by `rustc_codegen_ssa` via its `thorin-dwp` dependency.
gimli = "0.30"
tracing = { version = "0.1.41", features = ["release_max_level_debug"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
rustc_codegen_nvvm_macros = { version = "0.1", path = "../rustc_codegen_nvvm_macros" }
smallvec = { version = "1.14.0", features = ["union", "may_dangle"] }
itertools = "0.14.0"
[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