rust/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

cargo-features = ["edition"]
2018-06-18 00:05:11 +08:00
[package]
2018-07-14 17:59:42 +08:00
name = "rustc_codegen_cranelift"
2018-06-18 00:05:11 +08:00
version = "0.1.0"
authors = ["bjorn3 <bjorn3@users.noreply.github.com>"]
edition = "2018"
2018-06-18 00:05:11 +08:00
[lib]
crate-type = ["dylib"]
[dependencies]
2018-07-16 02:30:03 +08:00
#cranelift = "0.14.0"
#cranelift-module = "0.14.0"
#cranelift-simplejit = "0.14.0"
2018-07-14 17:59:42 +08:00
#cranelift-faerie = "0.14.0"
2018-07-16 02:30:03 +08:00
cranelift = { git = "https://github.com/CraneStation/cranelift.git" }
cranelift-module = { git = "https://github.com/CraneStation/cranelift.git" }
cranelift-simplejit = { git = "https://github.com/CraneStation/cranelift.git" }
cranelift-faerie = { git = "https://github.com/CraneStation/cranelift.git" }
2018-07-23 17:17:39 +08:00
target-lexicon = "0.0.3"
2018-07-24 20:10:53 +08:00
#goblin = "0.0.17"
faerie = "0.4.4"
ar = "0.6.0"
2018-08-09 16:46:56 +08:00
bitflags = "1.0.3"
# Uncomment to use local checkout of cranelift
#[patch."https://github.com/CraneStation/cranelift.git"]
#cranelift = { path = "../cranelift/lib/umbrella" }
#cranelift-module = { path = "../cranelift/lib/module" }
#cranelift-simplejit = { path = "../cranelift/lib/simplejit" }
#cranelift-faerie = { path = "../cranelift/lib/faerie" }