40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
|
|
[package]
|
||
|
|
authors.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
name = "backup-manager"
|
||
|
|
repository.workspace = true
|
||
|
|
version.workspace = true
|
||
|
|
|
||
|
|
description = "Multi-context backup orchestrator: restic-first with kopia opt-in, multi-destination replication, ontoref-driven docs. One-shot, daemon, standalone, or coordinator modes. Distinct from platform-backup (../prov-ecosystem/crates/backup) which is a low-level multi-backend library; backup-manager is the orchestrator binary."
|
||
|
|
keywords = ["backup", "restic", "kopia", "orchestrator", "ontoref"]
|
||
|
|
categories = ["command-line-utilities", "development-tools"]
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "backup_manager"
|
||
|
|
path = "src/lib.rs"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "prvng-backup"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
platform-config = { workspace = true }
|
||
|
|
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
async-trait = { workspace = true }
|
||
|
|
chrono = { workspace = true }
|
||
|
|
clap = { version = "4", features = ["derive", "env"] }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
tokio = { workspace = true, features = ["full"] }
|
||
|
|
toml = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||
|
|
uuid = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tempfile = { workspace = true }
|
||
|
|
tokio-test = { workspace = true }
|