Crates.io | rustic_backend |
lib.rs | rustic_backend |
version | 0.5.2 |
source | src |
created_at | 2023-08-10 21:00:37.090682 |
updated_at | 2024-11-27 13:26:58.213641 |
description | rustic_backend - library for supporting various backends in rustic-rs |
homepage | https://rustic.cli.rs/ |
repository | https://github.com/rustic-rs/rustic_core/tree/main/crates/backend |
max_upload_size | |
id | 941358 |
size | 111,707 |
Library for supporting various backends in rustic
We temporarily disabled the service-ftp
feature on the opendal
backend due
to build issues. We are working on a fix and will re-enable it as soon as
possible.
This library is a part of the rustic project and
provides a set of backends for the
rustic_core
library. It is used to
interact with various storage backends, such as rclone
, rest
, and in general
opendal
.
The goal of this library is to provide a unified interface for interacting with
various backends, so that the
rustic_core
library can be used to
interact with them in a consistent way.
Note: rustic_backend
is in an early development stage and its API is
subject to change in the next releases. If you want to give feedback on that,
please open an issue.
You can ask questions in the Discussions or have a look at the FAQ.
Contact | Where? |
---|---|
Issue Tracker | GitHub Issues |
Discord | |
Discussions | GitHub Discussions |
Add this to your Cargo.toml
:
[dependencies]
rustic_backend = "*"
This crate exposes a few features for controlling dependency usage:
cli - Enables support for CLI features by enabling merge
and clap
features. This feature is disabled by default.
clap - Enables a dependency on the clap
crate and enables parsing from
the commandline. This feature is disabled by default.
merge - Enables support for merging multiple values into one, which
enables the conflate
dependency. This is needed for parsing commandline
arguments and merging them into one (e.g. config
). This feature is disabled
by default.
opendal - Enables support for the opendal
backend. This feature is
enabled by default.
rclone - Enables support for the rclone
backend. This feature is
enabled by default.
rest - Enables support for the rest
backend. This feature is enabled by
default.
Due to being a support crate for
rustic_core
, there are no examples
here. Please check the examples in the
rustic_core
crate.
Found a bug? Open an issue!
Got an idea for an improvement? Don't keep it to yourself!
Please make sure, that you read the contribution guide.
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.
Licensed under either of: