llvm-in-rust 0.1.0

Top-level facade crate for the LLVM-in-Rust compiler pipeline.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "llvm-in-rust"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Top-level facade crate for the LLVM-in-Rust compiler pipeline."
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"
path = "src/lib.rs"

[[bin]]
name = "llvm-ir-min"
path = "src/bin/llvm-ir-min.rs"

[dependencies.llvm-analysis]
version = "0.1.0"
package = "llvm-in-rust-analysis"

[dependencies.llvm-bitcode]
version = "0.1.0"
package = "llvm-in-rust-bitcode"

[dependencies.llvm-codegen]
version = "0.1.0"
package = "llvm-in-rust-codegen"

[dependencies.llvm-ir]
version = "0.1.0"
package = "llvm-in-rust-ir"

[dependencies.llvm-ir-parser]
version = "0.1.0"
package = "llvm-in-rust-ir-parser"

[dependencies.llvm-target-arm]
version = "0.1.0"
package = "llvm-in-rust-target-arm"

[dependencies.llvm-target-riscv]
version = "0.1.0"
package = "llvm-in-rust-target-riscv"

[dependencies.llvm-target-x86]
version = "0.1.0"
package = "llvm-in-rust-target-x86"

[dependencies.llvm-transforms]
version = "0.1.0"
package = "llvm-in-rust-transforms"