Skip to content

A remotefs implementation which works on volatile memory. Good for testing

License

Notifications You must be signed in to change notification settings

remotefs-rs/remotefs-rs-memory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

remotefs-memory

logo

~ A remotefs implementation for testing and simulation ~

Developed by @veeso

Current version: 0.1.6

License-MIT Repo stars Downloads counter Latest version Ko-fi

Linux CI Docs


Getting Started

Add remotefs-memory to your Cargo.toml:

remotefs = "0.3"
remotefs-memory = "0.1"

Example

use std::path::PathBuf;

use remotefs_memory::{Inode, MemoryFs, node, Node, Tree};
use remotefs::RemoteFs;
use remotefs::fs::{UnixPex, Metadata};

let tempdir = PathBuf::from("/tmp");
let tree = Tree::new(node!(
    PathBuf::from("/"),
    Inode::dir(0, 0, UnixPex::from(0o755)),
    node!(tempdir.clone(), Inode::dir(0, 0, UnixPex::from(0o755)))
));
let mut client = MemoryFs::new(tree);
assert!(client.connect().is_ok());
// Change directory
assert!(client.change_dir(tempdir.as_path()).is_ok());

Changelog ⏳

View remotefs` changelog HERE


License 📃

remotefs is licensed under the MIT license.

You can read the entire license HERE

About

A remotefs implementation which works on volatile memory. Good for testing

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages