[package] name = "relibc" version = "0.1.0" authors = ["Jeremy Soller "] [lib] name = "c" crate-type = ["staticlib"] [workspace] members = ["crt0"] [dependencies] compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] } platform = { path = "platform" } fcntl = { path = "fcntl" } stdio = { path = "stdio" } stdlib = { path = "stdlib" } string = { path = "string" } unistd = { path = "unistd" } [profile.dev] panic = "abort" [profile.release] panic = "abort"