mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 19:38:01 +00:00
cec283986f
We only need LLD for cross compilation. This significantly reduces the LLVM build times in a cross compilation scenario. Update the README as a drive-by.
39 lines
1000 B
TOML
39 lines
1000 B
TOML
[package]
|
|
name = "revive-llvm-builder"
|
|
description = "revive LLVM compiler framework builder"
|
|
authors = [
|
|
"Oleksandr Zarudnyi <a.zarudnyy@matterlabs.dev>",
|
|
"Anton Baliasnikov <aba@matterlabs.dev>",
|
|
"Cyrill Leutwiler <cyrill@parity.io>",
|
|
]
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "revive-llvm"
|
|
path = "src/revive_llvm/main.rs"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
clap = { workspace = true, features = ["help", "std", "derive"] }
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true, features = [ "derive" ] }
|
|
toml = { workspace = true }
|
|
num_cpus = { workspace = true }
|
|
fs_extra = { workspace = true }
|
|
path-slash = { workspace = true }
|
|
regex = { workspace = true }
|
|
downloader = { workspace = true }
|
|
tar = { workspace = true }
|
|
flate2 = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = { workspace = true }
|
|
assert_fs = { workspace = true }
|