rustic_core icon indicating copy to clipboard operation
rustic_core copied to clipboard

rustic_core - library for fast, encrypted, deduplicated backups that powers rustic-rs

Results 81 rustic_core issues
Sort by recently updated
recently updated
newest added

The `copy` command may copy duplicated blob. How to reproduce: 1. Prepare a file that is large enough, for example, `ffmpeg.exe` 2. Copy `ffmpeg.exe` to `ffmpeg2.exe`, `ffmpeg3.exe` 3. Create a...

C-bug
C-question
A-commands

Recently, I found two related libraries with (mostly) the same underlying principles as `rustic` (see Related libraries). `acid store` has the same use case with uploading encrypted, deduplicated data to...

C-enhancement
A-api
A-dx

With adding `rustic_backend` and the change to a workspace, we need to refine a bit the repository structure, e.g. the root Readme doesn't make a lot of sense in the...

A-meta
C-enhancement

No, depending on the platform a different implementation. Unix - Fuse: https://crates.io/crates/fuser Windows - WinFSP: https://crates.io/crates/winfsp | https://crates.io/crates/dokan (https://github.com/dokan-dev/dokany) Mac - macfuse: https://crates.io/crates/fuser That is also a reason, why it...

C-discussion
A-vfs

Code taken from #106 (webdavfs.rs): ```rust #[derive(Clone, Copy)] enum RuntimeType { Basic, ThreadPool, } impl RuntimeType { fn get() -> Self { static RUNTIME_TYPE: OnceLock = OnceLock::new(); *RUNTIME_TYPE.get_or_init(|| { let...

C-enhancement
A-vfs

We pull in `cached` and `quick_cache`. `cached` basically gives a very convenient macro to use which we only use to cache uid/gid to names mappings. But we maybe able to...

A-dependencies
C-enhancement

currently, `Localtime::Now()` is used...

C-enhancement
good first issue
A-vfs

I would find it nice of us to show support in our readme and add their newly created logo (as they seem to come out of incubator phase): https://www.apache.org/logos/?#opendal to...

A-docs
C-discussion