## 🤖 New release * `rustic-rs`: 0.8.1 -> 0.9.0 (✓ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.9.0](https://github.com/rustic-rs/rustic/compare/v0.8.1...v0.9.0) - 2024-09-29 ### Added - *(commands)* Add list indexpacks and list indexcontent commands ([#1254](https://github.com/rustic-rs/rustic/pull/1254)) - *(commands)* Add option `--only-identical` for `diff` to allow for bitrot check ([#1250](https://github.com/rustic-rs/rustic/pull/1250)) - *(commands)* ls: Add option --json ([#1251](https://github.com/rustic-rs/rustic/pull/1251)) - *(commands)* [**breaking**] copy: Use config profile as target ([#1131](https://github.com/rustic-rs/rustic/pull/1131)) - *(commands)* backup: Add option --long ([#1159](https://github.com/rustic-rs/rustic/pull/1159)) ### Fixed - *(deps)* update rust crate libc to v0.2.159 ([#1257](https://github.com/rustic-rs/rustic/pull/1257)) - *(config)* [**breaking**] use multiple options only as array in config profile ([#1240](https://github.com/rustic-rs/rustic/pull/1240)) - *(interactive)* Allow snapshots to be modified and marked to forget ([#1253](https://github.com/rustic-rs/rustic/pull/1253)) - make ls and find show the year of mtime date ([#1249](https://github.com/rustic-rs/rustic/pull/1249)) - ls: Remove printing trailing space ([#1247](https://github.com/rustic-rs/rustic/pull/1247)) - webdav/forget: correctly use application config ([#1241](https://github.com/rustic-rs/rustic/pull/1241)) ### Other - update installation instructions in readme to use `--locked` flag for install from crates.io - *(deps)* lock file maintenance ([#1269](https://github.com/rustic-rs/rustic/pull/1269)) - delete unused xtask pattern directory - *(deps)* update rust crate rstest to 0.23 ([#1267](https://github.com/rustic-rs/rustic/pull/1267)) - *(deps)* update rust crate tempfile to v3.13.0 ([#1266](https://github.com/rustic-rs/rustic/pull/1266)) - *(deps)* update marcoieni/release-plz-action digest to 8b0f89a ([#1265](https://github.com/rustic-rs/rustic/pull/1265)) - *(deps)* update embarkstudios/cargo-deny-action action to v2 ([#1259](https://github.com/rustic-rs/rustic/pull/1259)) - *(deps)* update rustsec/audit-check action to v2 ([#1260](https://github.com/rustic-rs/rustic/pull/1260)) - *(deps)* update softprops/action-gh-release action to v2 ([#1258](https://github.com/rustic-rs/rustic/pull/1258)) - *(deps)* update embarkstudios/cargo-deny-action digest to 3f4a782 ([#1228](https://github.com/rustic-rs/rustic/pull/1228)) - don't let release-plz create GH releases - exclude the CHANGELOG from dprint formatting - remove `-dev` description from version for release-plz to work - remove release-pr workflow and replace with release-plz - *(cd)* try fixing nightly release pipeline - *(deps)* Update to new releases ([#1255](https://github.com/rustic-rs/rustic/pull/1255)) - Reduce memory usage of restore ([#1069](https://github.com/rustic-rs/rustic/pull/1069)) - Update to newest rustic_core ([#1248](https://github.com/rustic-rs/rustic/pull/1248)) - update RepositoryErrorKind rustdoc following rustic_core change ([#1237](https://github.com/rustic-rs/rustic/pull/1237)) - set development version - add flag for building with self-update feature for nightly and CD - Remove self-update from default crate features ([#1139](https://github.com/rustic-rs/rustic/pull/1139)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --------- Co-authored-by: rustic-release-plz[bot] <182542030+rustic-release-plz[bot]@users.noreply.github.com> Co-authored-by: Alexander Weiss <alex@weissfam.de> |
||
|---|---|---|
| .cargo | ||
| .github | ||
| config | ||
| coverage | ||
| docs | ||
| scripts | ||
| src | ||
| tests | ||
| util/systemd | ||
| .gitignore | ||
| build.sh | ||
| Cargo.lock | ||
| Cargo.toml | ||
| CHANGELOG.md | ||
| cliff.toml | ||
| CONTRIBUTING.md | ||
| deny.toml | ||
| Dockerfile | ||
| dprint.json | ||
| ECOSYSTEM.md | ||
| LICENSE-APACHE | ||
| LICENSE-MIT | ||
| maskfile.md | ||
| README.md | ||
| release-plz.toml | ||
fast, encrypted, and deduplicated backups
About
rustic is a backup tool that provides fast, encrypted, deduplicated backups.
It reads and writes the restic repo format described in the design document and can be used as a restic replacement in most cases.
It is implemented in Rust, a performant, memory-efficient, and reliable cross-platform systems programming language.
Hence rustic supports all major operating systems (Linux, MacOs, *BSD), with
Windows support still being experimental.
Stability
rustic currently is in beta state and misses regression tests. It is not
recommended to use it for production backups, yet.
rustic Libraries
The rustic project is split into multiple crates:
- rustic - the main binary
- rustic-core - the core library
- rustic-backend - the library for supporting various backends
Features
- Backup data is deduplicated and encrypted.
- Backup storage can be local or cloud storages, including cold storages.
- Allows multiple clients to concurrently access a backup repository using lock-free operations.
- Backups by default are append-only on the repository.
- The operations are robustly designed and can be safely aborted and efficiently resumed.
- Snapshot organization is possible by hostname, backup paths, label and tags. Also a rich set of metadata is saved with each snapshot.
- Retention policies and cleaning of old backups can be highly customized.
- Follow-up backups only process changed files, but still create a complete backup snapshot.
- In-place restore only modifies files which are changed.
- Uses config files for easy configuration of all every-day commands, see example config files.
Contact
You can ask questions in the Discussions or have a look at the FAQ.
| Contact | Where? |
|---|---|
| Issue Tracker | GitHub Issues |
| Discord | |
| Discussions | GitHub Discussions |
Getting started
Please check our documentation for more information on how to get started.
Installation
From binaries
cargo-binstall
cargo binstall rustic-rs
Windows
Scoop
scoop install rustic
Or you can check out the releases.
Nightly binaries are available here.
From source
Beware: This installs the latest development version, which might be unstable.
cargo install --git https://github.com/rustic-rs/rustic.git rustic-rs
crates.io
cargo install --locked rustic-rs
Differences to restic?
We have collected some improvements of rustic over restic
here.
Contributing
Tried rustic and not satisfied? Don't just walk away! You can help:
- You can report issues or suggest new features on our Discord server or using Github Issues!
Do you know how to code or got an idea for an improvement? Don't keep it to yourself!
- Contribute fixes or new features via a pull requests!
Please make sure, that you read the contribution guide.
Minimum Rust version policy
This crate's minimum supported rustc version is 1.76.0.
The current policy is that the minimum Rust version required to use this crate
can be increased in minor version updates. For example, if crate 1.0 requires
Rust 1.20.0, then crate 1.0.z for all values of z will also require Rust
1.20.0 or newer. However, crate 1.y for y > 0 may require a newer minimum
version of Rust.
In general, this crate will be conservative with respect to the minimum supported version of Rust.
License
Licensed under either of:
at your option.