Skip to content

Commit

Permalink
Added backup handling (#5)
Browse files Browse the repository at this point in the history
* forgot to commit changes again :/

* very dirty commit (too many changes)

* full backup viewing

* added delete funcitonality

* make backups async

* added restore option to backups

* added backups cache

* fixed backup args error
  • Loading branch information
JakePIXL committed Oct 8, 2023
1 parent b89f392 commit 1fc94b4
Show file tree
Hide file tree
Showing 77 changed files with 4,431 additions and 591 deletions.
Binary file modified .DS_Store
Binary file not shown.
342 changes: 323 additions & 19 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion teller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,20 @@ config = "0.13.3"
directories = "5.0.1"
log = "0.4.20"
reqwest = { version = "0.11.20", features = ["blocking"] }
tokio = { version = "1", features = ["full"] }

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.105"
serde_ini = "0.2.0"

uuid = { version = "1.4.1", features = ["v4"] }

base64 = "0.21.2"
base64 = "0.21.2"
zip = "0.6.6"
anyhow = "1.0.75"
tracing-error = "0.2.0"
thiserror = "1.0.48"
url = "2.4.1"
regex = "1.9.5"
async_zip = { version = "0.0.15", features = ["full", "tokio"] }
async-recursion = "1.0.5"

0 comments on commit 1fc94b4

Please sign in to comment.