Files
RedBear-OS/Cargo.toml
T
Jeremy Soller e30dec7124 WIP: stdio.h
2018-03-03 15:15:50 -07:00

26 lines
535 B
TOML

[package]
name = "relibc"
version = "0.1.0"
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
[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" }
string = { path = "string" }
unistd = { path = "unistd" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"