a6a16cf233
Create the wctype crate and stub functions with the unimplemented macro.
33 lines
782 B
TOML
33 lines
782 B
TOML
[package]
|
|
name = "relibc"
|
|
version = "0.1.0"
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
|
|
|
[lib]
|
|
name = "c"
|
|
crate-type = ["staticlib"]
|
|
|
|
[workspace]
|
|
members = ["src/crt0"]
|
|
|
|
[dependencies]
|
|
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
|
|
platform = { path = "src/platform" }
|
|
ctype = { path = "src/ctype" }
|
|
errno = { path = "src/errno" }
|
|
fcntl = { path = "src/fcntl" }
|
|
grp = { path = "src/grp" }
|
|
semaphore = { path = "src/semaphore" }
|
|
mman = { path = "src/mman" }
|
|
stdio = { path = "src/stdio" }
|
|
stdlib = { path = "src/stdlib" }
|
|
string = { path = "src/string" }
|
|
unistd = { path = "src/unistd" }
|
|
wctype = { path = "src/wctype" }
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|