1
0
Fork
You've already forked zig-virtualio
0
A attempt at making a virtual sandbox for Zig's new IO interface
  • Zig 100%
2026年04月28日 21:51:19 +02:00
src Skeleton in place 2026年04月28日 21:51:19 +02:00
.gitignore remove init bloat, add git ignore for cache 2026年04月28日 12:52:53 +02:00
build.zig remove init bloat, add git ignore for cache 2026年04月28日 12:52:53 +02:00
build.zig.zon remove init bloat, add git ignore for cache 2026年04月28日 12:52:53 +02:00
LICENSE Add license and readme 2026年04月28日 13:08:49 +02:00
README Add license and readme 2026年04月28日 13:08:49 +02:00

# Virtual IO for Zig Interface
A Zig IO implemention to sandbox file operations, might be useful for interacting with potentially malicious libraries or you just want the illusion of files stored in ram.
## Idea in my head so far
- All IO operations that would touch the disk go into ram, backed by a hash table maybe.
- Everything else gets passed through to a real IO interface chosen by the consumer of the library
- Maybe add some man in the middle code for the network part