Commits on Source (907)
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- .gitlab-ci.yml 2 additions, 0 deletions.gitlab-ci.yml
- .gitmodules 5 additions, 10 deletions.gitmodules
- .vscode/settings.json 3 additions, 0 deletions.vscode/settings.json
- Cargo.lock 352 additions, 429 deletionsCargo.lock
- Cargo.toml 49 additions, 22 deletionsCargo.toml
- Makefile 112 additions, 65 deletionsMakefile
- README.md 155 additions, 12 deletionsREADME.md
- Xargo.toml 0 additions, 1 deletionXargo.toml
- build.rs 16 additions, 52 deletionsbuild.rs
- cbindgen.globdefs.toml 24 additions, 0 deletionscbindgen.globdefs.toml
- core_io 0 additions, 1 deletioncore_io
- dlmalloc-rs 1 addition, 0 deletionsdlmalloc-rs
- fmt.sh 1 addition, 1 deletionfmt.sh
- generic-rt/Cargo.toml 6 additions, 0 deletionsgeneric-rt/Cargo.toml
- generic-rt/src/lib.rs 128 additions, 0 deletionsgeneric-rt/src/lib.rs
- include/bits/assert.h 4 additions, 4 deletionsinclude/bits/assert.h
- include/bits/errno.h 0 additions, 2 deletionsinclude/bits/errno.h
- include/bits/fcntl.h 0 additions, 11 deletionsinclude/bits/fcntl.h
- include/bits/limits.h 1 addition, 1 deletioninclude/bits/limits.h
.vscode/settings.json
0 → 100644
This diff is collapsed.
... | ... | @@ -2,55 +2,82 @@ |
name = "relibc" | ||
version = "0.2.5" | ||
authors = ["Jeremy Soller <jackpot51@gmail.com>"] | ||
edition = "2018" | ||
edition = "2021" | ||
[lib] | ||
name = "relibc" | ||
crate-type = ["staticlib"] | ||
[workspace] | ||
members = ["src/crt0", "src/crti", "src/crtn", "src/ld_so", "src/platform/redox/redox-exec"] | ||
exclude = ["core_io", "ralloc", "tests"] | ||
members = [ | ||
"src/crt0", | ||
"src/crti", | ||
"src/crtn", | ||
"redox-rt", | ||
"ld_so", | ||
"generic-rt", | ||
] | ||
exclude = ["tests", "dlmalloc-rs"] | ||
[build-dependencies] | ||
cbindgen = "0.24.3" | ||
cc = "1.0.25" | ||
cc = "1" | ||
[dependencies] | ||
cbitset = "0.1.0" | ||
core_io = { path = "core_io", features = ["collections"] } | ||
lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] } | ||
memoffset = "0.5.1" | ||
bitflags = "2" | ||
cbitset = "0.2" | ||
posix-regex = { path = "posix-regex", features = ["no_std"] } | ||
rand = { version = "0.5.5", default-features = false } | ||
# TODO: For some reason, rand_jitter hasn't been updated to use the latest rand_core | ||
rand = { version = "0.8", default-features = false, features = ["small_rng"] } | ||
rand_xorshift = "0.3" | ||
rand_jitter = "0.4" | ||
memchr = { version = "2.2.0", default-features = false } | ||
plain = "0.2" | ||
unicode-width = "0.1" | ||
__libc_only_for_layout_checks = { package = "libc", version = "0.2.149", optional = true } | ||
md5-crypto = { package = "md-5", version = "0.10.6", default-features = false } | ||
sha-crypt = { version = "0.5", default-features = false } | ||
base64ct = { version = "1.6", default-features = false, features = ["alloc"] } | ||
bcrypt-pbkdf = { version = "0.10", default-features = false, features = [ | ||
"alloc", | ||
] } | ||
scrypt = { version = "0.11", default-features = false, features = ["simple"] } | ||
pbkdf2 = { version = "0.12", features = ["sha2"] } | ||
sha2 = { version = "0.10", default-features = false } | ||
generic-rt = { path = "generic-rt" } | ||
chrono-tz = {version = "0.10", default-features = false} | ||
chrono = {version = "0.4", default-features = false, features = ["alloc"]} | ||
libm = "0.2" | ||
object = { version = "0.36.7", git = "https://gitlab.redox-os.org/andypython/object", default-features = false, features = ["elf", "read_core"] } | ||
spin = "0.9.8" | ||
[dependencies.goblin] | ||
version = "0.0.21" | ||
[dependencies.dlmalloc] | ||
path = "dlmalloc-rs" | ||
default-features = false | ||
features = ["elf32", "elf64", "endian_fd"] | ||
[dependencies.ralloc] | ||
path = "ralloc" | ||
default-features = false | ||
optional = true | ||
features = ["c_api"] | ||
[target.'cfg(target_os = "linux")'.dependencies] | ||
sc = "0.2.3" | ||
[target.'cfg(target_os = "redox")'.dependencies] | ||
redox_syscall = "0.3" | ||
spin = "0.9.0" | ||
redox-exec = { path = "src/platform/redox/redox-exec" } | ||
redox_syscall = "0.5.8" | ||
redox-rt = { path = "redox-rt" } | ||
redox-path = "0.2" | ||
redox_event = { git = "https://gitlab.redox-os.org/redox-os/event.git", default-features = false, features = [ | ||
"redox_syscall", | ||
] } | ||
[features] | ||
default = [] | ||
default = ["check_against_libc_crate"] | ||
trace = [] | ||
check_against_libc_crate = ["__libc_only_for_layout_checks"] | ||
[profile.dev] | ||
panic = "abort" | ||
[profile.release] | ||
panic = "abort" | ||
[patch.crates-io] | ||
cc-11 = { git = "https://github.com/tea/cc-rs", branch = "riscv-abi-arch-fix", package = "cc" } |
Xargo.toml
deleted
100644 → 0
cbindgen.globdefs.toml
0 → 100644
generic-rt/Cargo.toml
0 → 100644
generic-rt/src/lib.rs
0 → 100644