17 lines
395 B
TOML
17 lines
395 B
TOML
[package]
|
|
name = "redox_std"
|
|
version = "0.1.0"
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
|
|
|
[lib]
|
|
name = "std"
|
|
path = "../rust/src/libstd/lib.rs"
|
|
|
|
[dependencies]
|
|
alloc_system = { path = "alloc_system" }
|
|
compiler_builtins = { path = "compiler_builtins" }
|
|
panic_abort = { path = "panic_abort" }
|
|
#panic_unwind = { path = "panic_unwind" }
|
|
libc = { path = "libc" }
|
|
unwind = { path = "unwind" }
|