chore(deps): Update to new releases (#1255)

This commit is contained in:
aawsome 2024-09-24 10:32:58 +02:00 committed by GitHub
parent 5ec9652511
commit baeb27adfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 62 deletions

67
Cargo.lock generated
View File

@ -3701,7 +3701,7 @@ dependencies = [
"rhai",
"rstest",
"rustic_backend",
"rustic_core 0.3.1 (git+https://github.com/rustic-rs/rustic_core.git)",
"rustic_core",
"rustic_testing",
"scopeguard",
"self_update",
@ -3720,8 +3720,9 @@ dependencies = [
[[package]]
name = "rustic_backend"
version = "0.2.1"
source = "git+https://github.com/rustic-rs/rustic_core.git#bf29cd88c178388b491853c1dc6e09ec03401fb1"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28c795aff2332a69ba31fb6cc91237db3eb88d5d0d160177522ba49a21dd5911"
dependencies = [
"aho-corasick",
"anyhow",
@ -3740,7 +3741,7 @@ dependencies = [
"rand",
"rayon",
"reqwest",
"rustic_core 0.3.1 (git+https://github.com/rustic-rs/rustic_core.git)",
"rustic_core",
"semver",
"serde",
"strum",
@ -3753,61 +3754,9 @@ dependencies = [
[[package]]
name = "rustic_core"
version = "0.3.1"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d03fc568dbd01c9db6cb971ee93320bed6156e42dfd463b3b58869d6457a6d4"
dependencies = [
"aes256ctr_poly1305aes",
"anyhow",
"binrw",
"bytes",
"bytesize",
"cached",
"cachedir",
"chrono",
"crossbeam-channel",
"derivative",
"derive_more",
"derive_setters",
"dirs",
"displaydoc",
"dunce",
"enum-map",
"enum-map-derive",
"enumset",
"filetime",
"gethostname",
"hex",
"humantime",
"ignore",
"integer-sqrt",
"itertools",
"log",
"nix",
"pariter",
"path-dedot",
"quick_cache",
"rand",
"rayon",
"runtime-format",
"scrypt",
"serde",
"serde-aux",
"serde_derive",
"serde_json",
"serde_with",
"sha2",
"strum",
"thiserror",
"walkdir",
"xattr",
"zstd",
]
[[package]]
name = "rustic_core"
version = "0.3.1"
source = "git+https://github.com/rustic-rs/rustic_core.git#bf29cd88c178388b491853c1dc6e09ec03401fb1"
checksum = "666cbd4da5ab6060f77326e73c13fe2d5043c95161393e913b910aecbdc894d0"
dependencies = [
"aes256ctr_poly1305aes",
"anyhow",
@ -3872,7 +3821,7 @@ dependencies = [
"bytes",
"enum-map",
"once_cell",
"rustic_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rustic_core",
"tempfile",
]

View File

@ -41,8 +41,8 @@ rustdoc-args = ["--document-private-items", "--generate-link-to-definition"]
[dependencies]
abscissa_core = { version = "0.7.0", default-features = false, features = ["application"] }
rustic_backend = { git = "https://github.com/rustic-rs/rustic_core.git", version = "0.2.1", features = ["cli"] }
rustic_core = { git = "https://github.com/rustic-rs/rustic_core.git", version = "0.3.1", features = ["cli"] }
rustic_backend = { version = "0.3.0", features = ["cli"] }
rustic_core = { version = "0.4.0", features = ["cli"] }
# allocators
jemallocator-global = { version = "0.3.2", optional = true }
@ -89,7 +89,7 @@ convert_case = "0.6.0"
dialoguer = "0.11.0"
directories = "5"
gethostname = "0.5"
globset = "0.4.14"
globset = "0.4.15"
human-panic = "2.0.1"
humantime = "2"
indicatif = "0.17"