]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge pull request #151 from bjorn3/dependabot/cargo/ar-0.6.1
[rust.git] / Cargo.toml
1 cargo-features = ["profile-overrides"]
2
3 [package]
4 name = "rustc_codegen_cranelift"
5 version = "0.1.0"
6 authors = ["bjorn3 <bjorn3@users.noreply.github.com>"]
7 edition = "2018"
8
9 [lib]
10 crate-type = ["dylib"]
11
12 [dependencies]
13 #cranelift = "0.14.0"
14 #cranelift-module = "0.14.0"
15 #cranelift-simplejit = "0.14.0"
16 #cranelift-faerie = "0.14.0"
17
18 cranelift = { git = "https://github.com/CraneStation/cranelift.git" }
19 cranelift-module = { git = "https://github.com/CraneStation/cranelift.git" }
20 cranelift-simplejit = { git = "https://github.com/CraneStation/cranelift.git" }
21 cranelift-faerie = { git = "https://github.com/CraneStation/cranelift.git" }
22 target-lexicon = "0.2.0"
23 #goblin = "0.0.17"
24 faerie = "0.6.0"
25 ar = "0.6.1"
26 bitflags = "1.0.3"
27 byteorder = "1.2.6"
28 cc = "1.0.25"
29 libc = "0.2.43"
30 tempfile = "3.0.4"
31
32 # Uncomment to use local checkout of cranelift
33 #[patch."https://github.com/CraneStation/cranelift.git"]
34 #cranelift = { path = "../cranelift/lib/umbrella" }
35 #cranelift-module = { path = "../cranelift/lib/module" }
36 #cranelift-simplejit = { path = "../cranelift/lib/simplejit" }
37 #cranelift-faerie = { path = "../cranelift/lib/faerie" }
38
39 [profile.dev.overrides."*"]
40 opt-level = 3