2016-10-31 17:49:00 +01:00
|
|
|
[package]
|
|
|
|
name = "redox_std"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
2016-12-21 01:53:16 +01:00
|
|
|
build = "../rust/src/libstd/build.rs"
|
2016-10-31 17:49:00 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "std"
|
|
|
|
path = "../rust/src/libstd/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
alloc_system = { path = "alloc_system" }
|
|
|
|
compiler_builtins = { path = "compiler_builtins" }
|
2016-11-11 03:59:59 +01:00
|
|
|
panic_abort = { path = "panic_abort" }
|
|
|
|
#panic_unwind = { path = "panic_unwind" }
|
2016-10-31 17:49:00 +01:00
|
|
|
libc = { path = "libc" }
|
|
|
|
unwind = { path = "unwind" }
|
2016-12-21 01:53:16 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
build_helper = { path = "../rust/src/build_helper" }
|
|
|
|
gcc = "0.3.27"
|