From 7547892e2122b53a287d7034ea66eca10eb36f30 Mon Sep 17 00:00:00 2001 From: lbeder Date: Mon, 12 Feb 2024 23:18:29 +0000 Subject: [PATCH] Update pbr --- Cargo.lock | 47 +++++++---------------------------------------- Cargo.toml | 4 +--- 2 files changed, 8 insertions(+), 43 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4b5175f..3819bec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,22 +291,18 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.8" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" +checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" dependencies = [ - "cfg-if", "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.16" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" -dependencies = [ - "cfg-if", -] +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "crossterm" @@ -362,12 +358,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "deranged" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" - [[package]] name = "digest" version = "0.10.7" @@ -717,12 +707,12 @@ dependencies = [ [[package]] name = "pbr" -version = "1.0.4" -source = "git+https://github.com/lbeder/pb.git#855549aadd4c6c60f8a82624e6acef10f38dab7b" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5827dfa0d69b6c92493d6c38e633bbaa5937c153d0d7c28bf12313f8c6d514" dependencies = [ "crossbeam-channel", "libc", - "time", "winapi", ] @@ -913,12 +903,6 @@ version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" -[[package]] -name = "serde" -version = "1.0.183" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" - [[package]] name = "sha2" version = "0.10.8" @@ -1067,23 +1051,6 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "time" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" -dependencies = [ - "deranged", - "serde", - "time-core", -] - -[[package]] -name = "time-core" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" - [[package]] name = "tinyvec" version = "1.6.0" diff --git a/Cargo.toml b/Cargo.toml index 27ff25b..e630fe2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,9 +23,7 @@ base64 = "0.21.7" bs58 = "0.5.0" strum_macros = "0.26.1" argon2 = "0.6.0-pre.0" - -[dependencies.pbr] -git = "https://github.com/lbeder/pb.git" +pbr = "1.1.1" [dev-dependencies] rstest = "0.18.2"