]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Rustup to rustc 1.34.0-nightly (f66e4697a 2019-02-20)
[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 ar = "0.6.1"
25 bitflags = "1.0.3"
26 byteorder = "1.2.7"
27 libc = "0.2.45"
28 tempfile = "3.0.7"
29 env_logger = "0.6"
30 gimli = { git = "https://github.com/gimli-rs/gimli.git" }
31 faerie = "0.7.1"
32 indexmap = "1.0.2"
33
34 # Uncomment to use local checkout of cranelift
35 #[patch."https://github.com/CraneStation/cranelift.git"]
36 #cranelift = { path = "../cranelift/lib/umbrella" }
37 #cranelift-module = { path = "../cranelift/lib/module" }
38 #cranelift-simplejit = { path = "../cranelift/lib/simplejit" }
39 #cranelift-faerie = { path = "../cranelift/lib/faerie" }
40
41 #[patch."https://github.com/gimli-rs/gimli.git"]
42 #gimli = { path = "../" }
43
44 [profile.dev.overrides."*"]
45 opt-level = 3