]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Add comment about how to use local cranelift checkout
[rust.git] / Cargo.toml
1 cargo-features = ["edition"]
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.0.3"
23 #goblin = "0.0.17"
24 faerie = "0.4.4"
25 ar = "0.6.0"
26 bitflags = "1.0.3"
27
28 # Uncomment to use local checkout of cranelift
29 #[patch."https://github.com/CraneStation/cranelift.git"]
30 #cranelift = { path = "../cranelift/lib/umbrella" }
31 #cranelift-module = { path = "../cranelift/lib/module" }
32 #cranelift-simplejit = { path = "../cranelift/lib/simplejit" }
33 #cranelift-faerie = { path = "../cranelift/lib/faerie" }