Skip to content
This repository was archived by the owner on Aug 23, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6e9cb42
v0.4.4
VHSgunzo Sep 10, 2025
a19c025
Update README
VHSgunzo Sep 10, 2025
6a930e7
Change the order of checking and setting portable home dir
VHSgunzo Sep 10, 2025
e472122
- Updated DwarFS 0.13.0 → 0.14.0
VHSgunzo Oct 22, 2025
c631791
Update build options and DwarFS mount options
VHSgunzo Oct 22, 2025
571146c
- Updated `DwarFS` version `0.14.0` -> `0.14.1`
VHSgunzo Oct 25, 2025
ab5a4f7
- Add unshare user and mount namespace support
VHSgunzo Oct 27, 2025
c024abb
Fix print mount point path
VHSgunzo Oct 27, 2025
97ab133
- Updated squashfuse (libfuse 3.17.4)
VHSgunzo Nov 1, 2025
019373b
Add random mount point in unshare mode
VHSgunzo Nov 1, 2025
fb584c1
- Added reuse of the mount point in unshare mode
VHSgunzo Nov 2, 2025
3f79868
- New `URUNTIME_UNSHARE` config option
VHSgunzo Nov 2, 2025
92cae8a
Update unshare reuse logic
VHSgunzo Nov 8, 2025
358522c
Fix for reuse of broken mount points
VHSgunzo Nov 17, 2025
722c9cf
- Added SIGUSR1/SIGUSR2 signals to signal handler
VHSgunzo Nov 19, 2025
348239d
Fixed crash due to std::env::vars() unwrap()...
VHSgunzo Nov 19, 2025
68c4e5d
Fix mfd_exec()
VHSgunzo Nov 20, 2025
57dbba7
v0.5.7
VHSgunzo Mar 22, 2026
e6004b5
v0.5.8
VHSgunzo Jun 6, 2026
3c0f2b9
Update DwarFS v0.15.6
VHSgunzo Aug 3, 2026
0d94686
Update deps and bump to v0.6.1
VHSgunzo Aug 22, 2026
d124881
Prepare v0.7.0 multi-architecture release
VHSgunzo Sep 9, 2026
380043f
Isolate CI package installation from third-party repositories
VHSgunzo Sep 9, 2026
82f185e
Install LLVM for xtask artifact tests
VHSgunzo Sep 9, 2026
34943a4
Use Zig linker for native release builds
VHSgunzo Sep 9, 2026
142f792
Filter missing build-std target library paths
VHSgunzo Sep 9, 2026
ec8a33b
Update documentation
VHSgunzo Sep 9, 2026
2697d32
Show Zig metadata validation progress
VHSgunzo Sep 9, 2026
42e038c
Release v0.7.1
VHSgunzo Sep 9, 2026
00cb9ce
Fix native checks to use Zig linker
VHSgunzo Sep 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[alias]
xtask = "run --manifest-path ./xtask/Cargo.toml --"
xtask = "run --locked --manifest-path ./xtask/Cargo.toml --"

[target.x86_64-unknown-linux-musl]
rustflags = ["-Z", "remap-cwd-prefix=", "-C", "panic=abort"]
rustflags = ["-Z", "remap-cwd-prefix="]

[unstable]
build-std = ["std", "panic_abort"]
368 changes: 340 additions & 28 deletions .github/workflows/ci.yml

Large diffs are not rendered by default.

24 changes: 19 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
dist
assets*
target
.vscode
Cargo.lock
/dist/
/release-dist/
/artifacts/

/assets
/assets-*/

/target/
/xtask/target/

/.vscode/
/.ruff_cache/
/.pytest_cache/
__pycache__/
*.py[cod]

/release.json
/release-assets.json
/release-assets-pages.json
Loading