]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Update gimli
[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 # These have to be in sync with each other
14 cranelift = { git = "https://github.com/CraneStation/cranelift.git" }
15 cranelift-module = { git = "https://github.com/CraneStation/cranelift.git" }
16 cranelift-simplejit = { git = "https://github.com/CraneStation/cranelift.git" }
17 cranelift-faerie = { git = "https://github.com/CraneStation/cranelift.git" }
18 target-lexicon = "0.4.0"
19 faerie = "0.10.0"
20
21 #goblin = "0.0.17"
22 ar = "0.6.1"
23 bitflags = "1.0.3"
24 byteorder = "1.2.7"
25 libc = "0.2.53"
26 tempfile = "3.0.7"
27 env_logger = "0.6"
28 gimli = { git = "https://github.com/gimli-rs/gimli.git" }
29 indexmap = "1.0.2"
30
31 # Uncomment to use local checkout of cranelift
32 #[patch."https://github.com/CraneStation/cranelift.git"]
33 #cranelift = { path = "../cranelift/cranelift-umbrella" }
34 #cranelift-module = { path = "../cranelift/cranelift-module" }
35 #cranelift-simplejit = { path = "../cranelift/cranelift-simplejit" }
36 #cranelift-faerie = { path = "../cranelift/cranelift-faerie" }
37
38 #[patch."https://github.com/gimli-rs/gimli.git"]
39 #gimli = { path = "../" }
40
41 [patch.crates-io]
42 ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "non_multiple_of_two_identifiers_gnu_format" }
43
44 [profile.dev.overrides."*"]
45 opt-level = 3