[package]
edition = "2021"
name = "llvm-in-rust-codegen"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Machine-independent code generation infrastructure for LLVM-in-Rust."
homepage = "https://github.com/yudongusa/LLVM-in-Rust"
readme = false
keywords = [
"llvm",
"compiler",
"ir",
"codegen",
"rust",
]
categories = [
"compilers",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/yudongusa/LLVM-in-Rust"
[lib]
name = "llvm_codegen"
path = "src/lib.rs"
[[test]]
name = "codeview_coff"
path = "tests/codeview_coff.rs"
[[test]]
name = "dwarf_line"
path = "tests/dwarf_line.rs"
[[test]]
name = "golden_codegen"
path = "tests/golden_codegen.rs"
[[test]]
name = "linker_compat"
path = "tests/linker_compat.rs"
[[test]]
name = "unwind_verify"
path = "tests/unwind_verify.rs"
[dependencies.llvm-analysis]
version = "0.1.0"
package = "llvm-in-rust-analysis"
[dependencies.llvm-ir]
version = "0.1.0"
package = "llvm-in-rust-ir"