]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_codegen_llvm/Cargo.toml
New upstream version 1.68.2+dfsg1
[rustc.git] / compiler / rustc_codegen_llvm / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_codegen_llvm"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
7test = false
1b1a35ee
XL
8
9[dependencies]
10bitflags = "1.0"
6a06907d 11cstr = "0.2"
1b1a35ee 12libc = "0.2"
3c0e092e 13measureme = "10.0.0"
9c376795
FG
14object = { version = "0.30.1", default-features = false, features = [
15 "std",
16 "read",
17] }
1b1a35ee
XL
18tracing = "0.1"
19rustc_middle = { path = "../rustc_middle" }
94222f64 20rustc-demangle = "0.1.21"
1b1a35ee
XL
21rustc_attr = { path = "../rustc_attr" }
22rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
23rustc_data_structures = { path = "../rustc_data_structures" }
24rustc_errors = { path = "../rustc_errors" }
1b1a35ee
XL
25rustc_fs_util = { path = "../rustc_fs_util" }
26rustc_hir = { path = "../rustc_hir" }
1b1a35ee
XL
27rustc_index = { path = "../rustc_index" }
28rustc_llvm = { path = "../rustc_llvm" }
5e7ed085 29rustc_macros = { path = "../rustc_macros" }
17df50a5 30rustc_metadata = { path = "../rustc_metadata" }
c295e0f8 31rustc_query_system = { path = "../rustc_query_system" }
1b1a35ee
XL
32rustc_session = { path = "../rustc_session" }
33rustc_serialize = { path = "../rustc_serialize" }
064997fb 34rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
1b1a35ee 35rustc_target = { path = "../rustc_target" }
064997fb 36smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
1b1a35ee
XL
37rustc_ast = { path = "../rustc_ast" }
38rustc_span = { path = "../rustc_span" }
2b03887a 39tempfile = "3.2.0"