38 lines
917 B
TOML
38 lines
917 B
TOML
[package]
|
|
name = "platform-backup"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
authors = ["Provctl Contributors"]
|
|
license = "MIT"
|
|
repository = "https://github.com/provctl"
|
|
|
|
description = "Multi-backend backup management with restic, borg, tar, cpio, and rsync support"
|
|
documentation = "https://docs.rs/backup"
|
|
keywords = ["backup", "restic", "borg", "tar", "snapshots"]
|
|
categories = ["development-tools", "filesystem"]
|
|
|
|
[lib]
|
|
name = "backup"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
toml = "0.9"
|
|
thiserror = "2"
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
async-trait = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
regex = "1.10"
|
|
glob = "0.3"
|
|
which = "5.0"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
tempfile = "3"
|
|
mockall = "0.14"
|
|
tokio-test = "0.4"
|