diff --git a/Cargo.lock b/Cargo.lock index 49bdc75..8f4f5e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", ] diff --git a/Cargo.toml b/Cargo.toml index cd26556..673ba03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"