Commits on Source (389)
Showing
- .gitignore 3 additions, 12 deletions.gitignore
- .gitlab-ci.yml 29 additions, 0 deletions.gitlab-ci.yml
- .travis.yml 16 additions, 1 deletion.travis.yml
- Cargo.lock 668 additions, 0 deletionsCargo.lock
- Cargo.toml 64 additions, 4 deletionsCargo.toml
- Makefile 37 additions, 0 deletionsMakefile
- README.md 46 additions, 3 deletionsREADME.md
- fuzz/.gitignore 4 additions, 0 deletionsfuzz/.gitignore
- fuzz/Cargo.lock 753 additions, 0 deletionsfuzz/Cargo.lock
- fuzz/Cargo.toml 30 additions, 0 deletionsfuzz/Cargo.toml
- fuzz/fuzz_targets/fuse_fuzz_target.rs 338 additions, 0 deletionsfuzz/fuzz_targets/fuse_fuzz_target.rs
- src/allocator.rs 348 additions, 0 deletionssrc/allocator.rs
- src/archive.rs 146 additions, 0 deletionssrc/archive.rs
- src/bin/ar.rs 108 additions, 0 deletionssrc/bin/ar.rs
- src/bin/mkfs.rs 121 additions, 0 deletionssrc/bin/mkfs.rs
- src/bin/mount.rs 407 additions, 0 deletionssrc/bin/mount.rs
- src/block.rs 328 additions, 0 deletionssrc/block.rs
- src/dir.rs 120 additions, 0 deletionssrc/dir.rs
- src/disk.rs 0 additions, 8 deletionssrc/disk.rs
- src/disk/cache.rs 110 additions, 0 deletionssrc/disk/cache.rs
.gitlab-ci.yml
0 → 100644
Cargo.lock
0 → 100644
[package] | ||
name = "redoxfs" | ||
description = "The Redox Filesystem" | ||
repository = "https://github.com/redox-os/redoxfs" | ||
version = "0.1.0" | ||
repository = "https://gitlab.redox-os.org/redox-os/redoxfs" | ||
version = "0.6.9" | ||
license-file = "LICENSE" | ||
readme = "README.md" | ||
authors = ["Jeremy Soller <jackpot51@gmail.com>"] | ||
edition = "2021" | ||
[lib] | ||
name = "redoxfs" | ||
path = "src/lib.rs" | ||
[[bin]] | ||
name = "redoxfs-utility" | ||
path = "src/utility.rs" | ||
name = "redoxfs" | ||
path = "src/bin/mount.rs" | ||
doc = false | ||
required-features = ["std"] | ||
[[bin]] | ||
name = "redoxfs-ar" | ||
path = "src/bin/ar.rs" | ||
doc = false | ||
required-features = ["std"] | ||
[[bin]] | ||
name = "redoxfs-mkfs" | ||
path = "src/bin/mkfs.rs" | ||
doc = false | ||
required-features = ["std"] | ||
[dependencies] | ||
aes = { version = "=0.7.5", default-features = false } | ||
argon2 = { version = "0.4", default-features = false, features = ["alloc"] } | ||
base64ct = { version = "1", default-features = false } | ||
env_logger = { version = "0.11", optional = true } | ||
endian-num = "0.1" | ||
getrandom = { version = "0.2.5", optional = true } | ||
libc = "0.2" | ||
log = { version = "0.4.14", default-features = false, optional = true} | ||
redox_syscall = { version = "0.5" } | ||
range-tree = { version = "0.1", optional = true } | ||
seahash = { version = "4.1.0", default-features = false } | ||
termion = { version = "4", optional = true } | ||
uuid = { version = "1.4", default-features = false } | ||
redox-path = "0.3.0" | ||
libredox = { version = "0.1.3", optional = true } | ||
redox-scheme = { version = "0.2.1", optional = true } | ||
[features] | ||
default = ["std", "log"] | ||
force-soft = [ | ||
"aes/force-soft" | ||
] | ||
std = [ | ||
"env_logger", | ||
"fuser", | ||
"getrandom", | ||
"libc", | ||
"libredox", | ||
"range-tree", | ||
"termion", | ||
"time", | ||
"uuid/v4", | ||
"redox_syscall/std", | ||
"redox-scheme" | ||
] | ||
[target.'cfg(not(target_os = "redox"))'.dependencies] | ||
fuser = { version = "0.14", optional = true } | ||
libc = { version = "0.2", optional = true } | ||
time = { version = "0.3", optional = true } | ||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } |
Makefile
0 → 100644
fuzz/.gitignore
0 → 100644
fuzz/Cargo.lock
0 → 100644
fuzz/Cargo.toml
0 → 100644
fuzz/fuzz_targets/fuse_fuzz_target.rs
0 → 100644
src/allocator.rs
0 → 100644
src/archive.rs
0 → 100644
src/bin/ar.rs
0 → 100644
src/bin/mkfs.rs
0 → 100644
src/bin/mount.rs
0 → 100644
src/block.rs
0 → 100644
src/dir.rs
0 → 100644
src/disk.rs
deleted
100644 → 0
src/disk/cache.rs
0 → 100644