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

needed to implement a `mount` command TODO: - [ ] decide platforms to support - [ ] Think about how to setup the `fuse` feature (unfortunately, there are no target-specific...

If we encounter an error, we should return an error and let the caller handle it. In the following code example, we encounter errors, but instead of returning them as...

A-errors
C-enhancement
C-refactor

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [taiki-e/install-action](https://togithub.com/taiki-e/install-action) | action | digest | `d5ead4f` -> `d9dbaa3` | ---...

A-dependencies

## Target group ### Persona 11: **Aisha - The Integrative Developer** - **Age**: 28 - **Background**: Software Developer at a mid-sized tech company - **Tech-savviness**: Advanced - **Needs**: Robust and...

A-benchmarking
A-docs
A-errors
A-testing

There are still a lot of instances of `unwrap`/`expect` within the code base of rustic_core. We should activate the clippy lints: `#![deny(clippy::expect_used)]` and `#![deny(clippy::unwrap_used)]` and tackle this issue. If we...

A-errors
A-meta
C-enhancement

Culprit, most likely in this test and surroundings, probably something with the runner and being limited in usage of RAM or so, most likely false positive. ```rust #[test] fn chunk_zeros()...

A-testing
C-bug
C-question
O-windows

Hello :wave: `rustic_core 0.2.0` I'm noticing a (perhaps) unusual behaviour when taking a snapshot and pushing it over `opendal:s3`. The backup progressbar seems to increment, then pause, then increment ......

A-architecture
C-refactor

Example using rustic: ```rustic backup src1/ src2/ --as-path /path1/ --as-path /path2/``` would backup `src1/` as `/path1` and `src2/` as `/path2/`.

C-enhancement
A-commands

Adds `Repository::lock_repo` which locks all repository files. Also the backend trait is extended to support locking and a `lock_command` has been added to `RepositoryOptions` which turns any backend into a...