-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (40 loc) · 1.03 KB
/
Cargo.toml
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
43
44
45
46
[package]
authors = ["Shengtuo Hu <[email protected]>"]
categories = ["command-line-utilities", "development-tools", "development-tools::build-utils"]
description = "A tool to build whole-program LLVM bitcode files"
edition = "2021"
exclude = [
"tests/*",
".github/*",
"Cargo.lock",
]
keywords = ["llvm", "clang", "bitcode", "IR", "gllvm"]
license = "GPL-3.0"
license-file = "LICENSE"
name = "rllvm"
readme = "README.md"
repository = "https://github.com/h1994st/rllvm"
version = "0.1.5"
[dependencies]
clap = {version = "~4.5.23", features = ["derive"]}
confy = "~0.6.1"
log = "~0.4.22"
object = {version = "~0.36.5", features = ["all"]}
regex = "~1.11.1"
serde = {version = "~1.0.216", features = ["derive"]}
simple_logger = "~5.0.0"
which = "~7.0.0"
[target.'cfg(target_vendor = "apple")'.dependencies]
glob = "~0.3.1"
[[bin]]
name = "rllvm-cc"
path = "src/bin/rllvm_cc.rs"
[[bin]]
name = "rllvm-cxx"
path = "src/bin/rllvm_cxx.rs"
[[bin]]
name = "rllvm-get-bc"
path = "src/bin/rllvm_get_bc.rs"
[profile.dist]
inherits = "release"
lto = "thin"