2018-12-14 06:58:33 -06:00
|
|
|
[package]
|
|
|
|
authors = ["bjorn3 <bjorn3@users.noreply.github.com>"]
|
|
|
|
name = "sysroot"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
core = { path = "./sysroot_src/src/libcore" }
|
2019-07-26 04:45:01 -05:00
|
|
|
compiler_builtins = "0.1"
|
|
|
|
alloc = { path = "./sysroot_src/src/liballoc" }
|
2019-07-31 07:04:00 -05:00
|
|
|
std = { path = "./sysroot_src/src/libstd", features = ["panic_unwind"] }
|
2019-07-26 04:45:01 -05:00
|
|
|
|
|
|
|
alloc_system = { path = "./alloc_system" }
|
2018-12-14 06:58:33 -06:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
rustc-std-workspace-core = { path = "./sysroot_src/src/tools/rustc-std-workspace-core" }
|
2019-04-27 10:44:12 -05:00
|
|
|
rustc-std-workspace-alloc = { path = "./rustc-std-workspace-alloc" }
|
2019-02-03 04:25:56 -06:00
|
|
|
|
2019-08-18 07:49:10 -05:00
|
|
|
[profile.dev]
|
|
|
|
# FIXME On macOS statics and promoted constants have the wrong alignment. This causes a debug
|
|
|
|
# assertion in `copy_nonoverlapping` to panic.
|
|
|
|
debug-assertions = false
|
|
|
|
|
2019-02-03 04:25:56 -06:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
2019-08-18 07:49:10 -05:00
|
|
|
debug-assertions = false
|