Commits on Source (215)
Showing
- .gitlab-ci.yml 29 additions, 0 deletions.gitlab-ci.yml
- Cargo.lock 620 additions, 47 deletionsCargo.lock
- Cargo.toml 53 additions, 8 deletionsCargo.toml
- DESIGN.md 0 additions, 37 deletionsDESIGN.md
- Makefile 18 additions, 3 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 105 additions, 19 deletionssrc/bin/mkfs.rs
- src/bin/mount.rs 367 additions, 64 deletionssrc/bin/mount.rs
- src/block.rs 328 additions, 0 deletionssrc/block.rs
- src/dir.rs 120 additions, 0 deletionssrc/dir.rs
- src/disk/cache.rs 110 additions, 0 deletionssrc/disk/cache.rs
- src/disk/cache/linked_hash_map.rs 0 additions, 936 deletionssrc/disk/cache/linked_hash_map.rs
- src/disk/cache/lru_cache.rs 0 additions, 491 deletionssrc/disk/cache/lru_cache.rs
.gitlab-ci.yml
0 → 100644
This diff is collapsed.
[package] | ||
name = "redoxfs" | ||
description = "The Redox Filesystem" | ||
repository = "https://github.com/redox-os/redoxfs" | ||
version = "0.2.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" | ||
... | ... | @@ -15,17 +16,61 @@ path = "src/lib.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] | ||
spin = { git = "https://github.com/messense/spin-rs", rev = "020f1b3f" } | ||
redox_syscall = "0.1" | ||
[target.'cfg(unix)'.dependencies] | ||
fuse = "0.3" | ||
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" | ||
time = "0.1" | ||
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)'] } |
DESIGN.md
deleted
100644 → 0
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/block.rs
0 → 100644
src/dir.rs
0 → 100644
src/disk/cache/linked_hash_map.rs
deleted
100644 → 0
This diff is collapsed.
src/disk/cache/lru_cache.rs
deleted
100644 → 0
This diff is collapsed.