From ea51668ebc94e2497af31cc2b74699e243a2213e Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:10:12 +0100 Subject: [PATCH] chore: fix binstall pkg-url Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- Cargo.lock | 16 +++++++++------- Cargo.toml | 6 +++--- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index afbc45305..ddd52cb3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2832,8 +2832,9 @@ dependencies = [ [[package]] name = "rustic_backend" -version = "0.1.0" -source = "git+https://github.com/rustic-rs/rustic_core.git#53a7b7295f67fd4ea2141630998696d2544f7817" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "243f76303de119d5a3b25d110b3dfc1aaddedde23ce6ee5f1f1509dfae818a14" dependencies = [ "aho-corasick", "anyhow", @@ -2854,8 +2855,8 @@ dependencies = [ "rustic_core", "serde", "shell-words", - "strum 0.25.0", - "strum_macros 0.25.3", + "strum 0.26.1", + "strum_macros 0.26.1", "thiserror", "tokio", "url", @@ -2865,7 +2866,8 @@ dependencies = [ [[package]] name = "rustic_core" version = "0.2.0" -source = "git+https://github.com/rustic-rs/rustic_core.git#53a7b7295f67fd4ea2141630998696d2544f7817" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d74314a585eb0e1dc42b19f36ffa20135aff62efa12cae1bd8915d883d12ea8" dependencies = [ "aes256ctr_poly1305aes", "anyhow", @@ -3677,9 +3679,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.35.1" +version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" +checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 5fb7afc24..312ae1fb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,8 +109,8 @@ libc = "0.2.153" [workspace.dependencies] abscissa_core = { version = "0.7.0", default-features = false, features = ["application"] } -rustic_backend = { git = "https://github.com/rustic-rs/rustic_core.git", features = ["cli"] } -rustic_core = { git = "https://github.com/rustic-rs/rustic_core.git", features = ["cli"] } +rustic_backend = { version = "0.1", features = ["cli"] } +rustic_core = { version = "0.2", features = ["cli"] } # logging log = "0.4" @@ -159,7 +159,7 @@ dircmp = "0.2" # cargo-binstall support # https://github.com/cargo-bins/cargo-binstall/blob/HEAD/SUPPORT.md [package.metadata.binstall] -pkg-url = "{ repo }/releases/download/v{ version }/{ repo }-v{ version }-{ target }{ archive-suffix }" +pkg-url = "{ repo }/releases/download/v{ version }/{ bin }-v{ version }-{ target }{ archive-suffix }" bin-dir = "{ bin }-{ target }/{ bin }{ binary-ext }" pkg-fmt = "tgz"