1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- [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.17"
- [dependencies]
- arpainet = { path = "src/arpainet" }
- ctype = { path = "src/ctype" }
- dirent = { path = "src/dirent" }
- errno = { path = "src/errno" }
- fcntl = { path = "src/fcntl" }
- fenv = { path = "src/fenv" }
- float = { path = "src/float" }
- fnmatch = { path = "src/fnmatch" }
- grp = { path = "src/grp" }
- inttypes = { path = "src/inttypes" }
- locale = { path = "src/locale" }
- netinet = { path = "src/netinet" }
- platform = { path = "src/platform" }
- pwd = { path = "src/pwd" }
- semaphore = { path = "src/semaphore" }
- setjmp = { path = "src/setjmp" }
- signal = { path = "src/signal" }
- stdio = { path = "src/stdio" }
- stdlib = { path = "src/stdlib" }
- string = { path = "src/string" }
- strings = { path = "src/strings" }
- sys_ioctl = { path = "src/sys_ioctl" }
- sys_mman = { path = "src/sys_mman" }
- sys_resource = { path = "src/sys_resource" }
- sys_select = { path = "src/sys_select" }
- sys_socket = { path = "src/sys_socket" }
- sys_stat = { path = "src/sys_stat" }
- sys_time = { path = "src/sys_time" }
- sys_times = { path = "src/sys_times" }
- sys_un = { path = "src/sys_un" }
- sys_utsname = { path = "src/sys_utsname" }
- sys_wait = { path = "src/sys_wait" }
- termios = { path = "src/termios" }
- time = { path = "src/time" }
- unistd = { path = "src/unistd" }
- utime = { path = "src/utime" }
- wchar = { path = "src/wchar" }
- wctype = { path = "src/wctype" }
- [dependencies.compiler_builtins]
- git = "https://github.com/rust-lang-nursery/compiler-builtins.git"
- default-features = false
- features = ["no-lang-items", "mangled-names"]
- [profile.dev]
- panic = "abort"
- [profile.release]
- panic = "abort"
|