Commits on Source (1974)
Showing
- .editorconfig 7 additions, 0 deletions.editorconfig
- .gitignore 8 additions, 1 deletion.gitignore
- .gitlab-ci.yml 29 additions, 22 deletions.gitlab-ci.yml
- .gitmodules 12 additions, 10 deletions.gitmodules
- .travis.yml 0 additions, 16 deletions.travis.yml
- .vscode/settings.json 3 additions, 0 deletions.vscode/settings.json
- CONTRIBUTING.md 123 additions, 0 deletionsCONTRIBUTING.md
- Cargo.lock 458 additions, 229 deletionsCargo.lock
- Cargo.toml 58 additions, 17 deletionsCargo.toml
- Makefile 222 additions, 41 deletionsMakefile
- README.md 168 additions, 8 deletionsREADME.md
- build.rs 29 additions, 15 deletionsbuild.rs
- cbindgen 0 additions, 1 deletioncbindgen
- cbindgen.globdefs.toml 24 additions, 0 deletionscbindgen.globdefs.toml
- ci.sh 2 additions, 2 deletionsci.sh
- dlmalloc-rs 1 addition, 0 deletionsdlmalloc-rs
- fmt.sh 1 addition, 7 deletionsfmt.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
- header.sh 0 additions, 16 deletionsheader.sh
Some changes are not shown.
For a faster browsing experience, only 20 of 1000+ files are shown.
.editorconfig
0 → 100644
.travis.yml
deleted
100644 → 0
.vscode/settings.json
0 → 100644
CONTRIBUTING.md
0 → 100644
This diff is collapsed.
[package] | [package] | ||
name = "relibc" | name = "relibc" | ||
version = "0.1.0" | version = "0.2.5" | ||
authors = ["Jeremy Soller <jackpot51@gmail.com>"] | authors = ["Jeremy Soller <jackpot51@gmail.com>"] | ||
edition = "2021" | |||
[lib] | [lib] | ||
name = "c" | name = "relibc" | ||
crate-type = ["staticlib"] | crate-type = ["staticlib"] | ||
[workspace] | [workspace] | ||
members = ["src/crt0", "cbindgen"] | members = [ | ||
"src/crt0", | |||
"src/crti", | |||
"src/crtn", | |||
"redox-rt", | |||
"ld_so", | |||
"generic-rt", | |||
] | |||
exclude = ["tests", "dlmalloc-rs"] | |||
[build-dependencies] | [build-dependencies] | ||
cc = "1.0.17" | cc = "1" | ||
[dependencies] | [dependencies] | ||
lazy_static = { version = "*", features = ["nightly", "spin_no_std"] } | bitflags = "2" | ||
rand = { version = "0.5.2", default-features = false } | cbitset = "0.2" | ||
va_list = { path = "va_list", features = ["no_std"] } | posix-regex = { path = "posix-regex", features = ["no_std"] } | ||
[dependencies.compiler_builtins] | # TODO: For some reason, rand_jitter hasn't been updated to use the latest rand_core | ||
git = "https://github.com/rust-lang-nursery/compiler-builtins.git" | rand = { version = "0.8", default-features = false, features = ["small_rng"] } | ||
default-features = false | rand_xorshift = "0.3" | ||
features = ["no-lang-items", "mangled-names"] | 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.ralloc] | [dependencies.dlmalloc] | ||
path = "ralloc" | path = "dlmalloc-rs" | ||
default-features = false | default-features = false | ||
optional = true | features = ["c_api"] | ||
[target.'cfg(target_os = "linux")'.dependencies] | [target.'cfg(target_os = "linux")'.dependencies] | ||
sc = "0.2" | sc = "0.2.3" | ||
[target.'cfg(target_os = "redox")'.dependencies] | [target.'cfg(target_os = "redox")'.dependencies] | ||
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git", branch = "relibc" } | redox_syscall = "0.5.8" | ||
spin = "0.4" | 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 = ["check_against_libc_crate"] | |||
trace = [] | |||
check_against_libc_crate = ["__libc_only_for_layout_checks"] | |||
[profile.dev] | [profile.dev] | ||
panic = "abort" | panic = "abort" | ||
[profile.release] | [profile.release] | ||
panic = "abort" | panic = "abort" | ||
[patch.crates-io] | |||
cc-11 = { git = "https://github.com/tea/cc-rs", branch = "riscv-abi-arch-fix", package = "cc" } |
cbindgen.globdefs.toml
0 → 100644
generic-rt/src/lib.rs
0 → 100644
header.sh
deleted
100755 → 0