12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- [package]
- name = "relibc"
- version = "0.1.0"
- authors = ["Jeremy Soller <[email protected]>"]
- [lib]
- name = "c"
- crate-type = ["staticlib"]
- [workspace]
- members = ["src/crt0"]
- [build-dependencies]
- cc = "1.0"
- [dependencies]
- compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false }
- ctype = { path = "src/ctype" }
- errno = { path = "src/errno" }
- fcntl = { path = "src/fcntl" }
- fenv = { path = "src/fenv" }
- float = { path = "src/float" }
- grp = { path = "src/grp" }
- locale = { path = "src/locale" }
- netinet = { path = "src/netinet" }
- platform = { path = "src/platform" }
- semaphore = { path = "src/semaphore" }
- signal = { path = "src/signal" }
- stdio = { path = "src/stdio" }
- stdlib = { path = "src/stdlib" }
- string = { path = "src/string" }
- sys_mman = { path = "src/sys_mman" }
- sys_resource = { path = "src/sys_resource" }
- sys_socket = { path = "src/sys_socket" }
- sys_stat = { path = "src/sys_stat" }
- sys_time = { path = "src/sys_time" }
- sys_wait = { path = "src/sys_wait" }
- time = { path = "src/time" }
- unistd = { path = "src/unistd" }
- wctype = { path = "src/wctype" }
- [profile.dev]
- panic = "abort"
- [profile.release]
- panic = "abort"
|