lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
97d15f47 f4041e23

+1115 -992
+4 -1
nixos/doc/manual/release-notes/rl-2405.section.md
··· 43 43 44 44 - The `power.ups` module now generates `upsd.conf`, `upsd.users` and `upsmon.conf` automatically from a set of new configuration options. This breaks compatibility with existing `power.ups` setups where these files were created manually. Back up these files before upgrading NixOS. 45 45 46 - - `k9s` was updated to v0.29. There have been breaking changes in the config file format, check out the [changelog](https://github.com/derailed/k9s/releases/tag/v0.29.0) for details. 46 + - `k9s` was updated to v0.30. There have been various breaking changes in the config file format, 47 + check out the changelog of [v0.29](https://github.com/derailed/k9s/releases/tag/v0.29.0) and 48 + [v0.30](https://github.com/derailed/k9s/releases/tag/v0.30.0) for details. It is recommended 49 + to back up your current configuration and let k9s recreate the new base configuration. 47 50 48 51 - `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details. 49 52
+1 -1
nixos/tests/tomcat.nix
··· 1 - import ./make-test-python.nix ({ pkgs, ... }: { 1 + import ./make-test-python.nix ({ lib, pkgs, ... }: { 2 2 name = "tomcat"; 3 3 meta.maintainers = [ lib.maintainers.anthonyroussel ]; 4 4
+2 -2
pkgs/applications/audio/monkeys-audio/default.nix
··· 5 5 }: 6 6 7 7 stdenv.mkDerivation (finalAttrs: { 8 - version = "10.30"; 8 + version = "10.38"; 9 9 pname = "monkeys-audio"; 10 10 11 11 src = fetchzip { 12 12 url = "https://monkeysaudio.com/files/MAC_${ 13 13 builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip"; 14 - sha256 = "sha256-vTpfHw58WRRjS/h7FVYjYwHSqoXAF08i8Q/i9xI+9Io="; 14 + sha256 = "sha256-cVWwbzKyoBYiSPjMVzCGhPr2gPPWp+ateBqzPZojRP0="; 15 15 stripRoot = false; 16 16 }; 17 17 nativeBuildInputs = [
+5 -3
pkgs/applications/networking/cluster/k9s/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "k9s"; 5 - version = "0.29.1"; 5 + version = "0.30.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "derailed"; 9 9 repo = "k9s"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-agGayZ20RMAcGOx+owwDbUUDsjF3FZajhwDZ5wtE93k="; 11 + hash = "sha256-P06hKqVu/aUttjwdFVCvzC80WWbQn94bXk3LVl/97yw="; 12 12 }; 13 13 14 14 ldflags = [ ··· 23 23 24 24 proxyVendor = true; 25 25 26 - vendorHash = "sha256-9w44gpaB2C/F7hTImjdeabWVgTU5AA/7OSJmAqayrzU="; 26 + vendorHash = "sha256-Exn4NYegZWrItBoGVb97GUDRhhfeSJUEdr7xJnxcRMI="; 27 27 28 28 # TODO investigate why some config tests are failing 29 29 doCheck = !(stdenv.isDarwin && stdenv.isAarch64); ··· 51 51 meta = with lib; { 52 52 description = "Kubernetes CLI To Manage Your Clusters In Style"; 53 53 homepage = "https://github.com/derailed/k9s"; 54 + changelog = "https://github.com/derailed/k9s/releases/tag/v${version}"; 54 55 license = licenses.asl20; 56 + mainProgram = "k9s"; 55 57 maintainers = with maintainers; [ Gonzih markus1189 bryanasdev000 qjoly ]; 56 58 }; 57 59 }
+13 -19
pkgs/applications/networking/instant-messengers/chatty/default.nix
··· 7 7 , meson 8 8 , ninja 9 9 , pkg-config 10 - , python3 11 - , wrapGAppsHook 10 + , wrapGAppsHook4 12 11 , evolution-data-server 13 12 , feedbackd 14 13 , glibmm 15 14 , libsecret 16 15 , gnome-desktop 17 16 , gspell 18 - , gtk3 17 + , gtk4 19 18 , json-glib 20 19 , libgcrypt 21 - , libhandy 20 + , libadwaita 22 21 , libphonenumber 23 22 , modemmanager 24 23 , olm ··· 30 29 31 30 stdenv.mkDerivation rec { 32 31 pname = "chatty"; 33 - version = "0.7.3"; 32 + version = "0.8.0"; 34 33 35 34 src = fetchFromGitLab { 36 - domain = "source.puri.sm"; 37 - owner = "Librem5"; 38 - repo = "chatty"; 35 + domain = "gitlab.gnome.org"; 36 + owner = "World"; 37 + repo = "Chatty"; 39 38 rev = "v${version}"; 40 39 fetchSubmodules = true; 41 - hash = "sha256-zsZDpncnoj+0klJ2/220gY93c7mD0wIvQaP3QF8F3zQ="; 40 + hash = "sha256-jyG6kubXTyHUw2F+MfjJiQ0us4PrbavF5PJS5Pg46Mw="; 42 41 }; 43 - 44 - postPatch = '' 45 - patchShebangs build-aux/meson 46 - ''; 47 42 48 43 nativeBuildInputs = [ 49 44 appstream-glib ··· 52 47 meson 53 48 ninja 54 49 pkg-config 55 - python3 56 - wrapGAppsHook 50 + wrapGAppsHook4 57 51 ]; 58 52 59 53 buildInputs = [ ··· 63 57 libsecret 64 58 gnome-desktop 65 59 gspell 66 - gtk3 60 + gtk4 67 61 json-glib 68 62 libgcrypt 69 - libhandy 63 + libadwaita 70 64 libphonenumber 71 65 modemmanager 72 66 olm ··· 84 78 85 79 meta = with lib; { 86 80 description = "XMPP and SMS messaging via libpurple and ModemManager"; 87 - homepage = "https://source.puri.sm/Librem5/chatty"; 88 - changelog = "https://source.puri.sm/Librem5/chatty/-/blob/${src.rev}/NEWS"; 81 + homepage = "https://gitlab.gnome.org/World/Chatty"; 82 + changelog = "https://gitlab.gnome.org/World/Chatty/-/blob/${src.rev}/NEWS"; 89 83 license = licenses.gpl3Plus; 90 84 maintainers = with maintainers; [ dotlambda tomfitzhenry ]; 91 85 platforms = platforms.linux;
+987 -867
pkgs/applications/networking/instant-messengers/flare-signal/Cargo.lock
··· 30 30 checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 31 31 dependencies = [ 32 32 "generic-array", 33 - "rand_core 0.6.4", 33 + ] 34 + 35 + [[package]] 36 + name = "aead" 37 + version = "0.5.2" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 40 + dependencies = [ 41 + "crypto-common", 42 + "generic-array", 34 43 ] 35 44 36 45 [[package]] ··· 60 69 61 70 [[package]] 62 71 name = "aes-gcm" 63 - version = "0.9.4" 72 + version = "0.9.2" 64 73 source = "registry+https://github.com/rust-lang/crates.io-index" 65 - checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6" 74 + checksum = "bc3be92e19a7ef47457b8e6f90707e12b6ac5d20c6f3866584fa3be0787d839f" 66 75 dependencies = [ 67 - "aead", 76 + "aead 0.4.3", 68 77 "aes 0.7.5", 69 78 "cipher 0.3.0", 70 - "ctr 0.8.0", 71 - "ghash", 79 + "ctr 0.7.0", 80 + "ghash 0.4.4", 72 81 "subtle", 73 82 ] 74 83 75 84 [[package]] 76 85 name = "aes-gcm-siv" 77 - version = "0.10.1" 86 + version = "0.11.1" 78 87 source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "cfde8146762f3c5f3c5cd41aa17a71f3188df09d5857192b658510d850e16068" 88 + checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d" 80 89 dependencies = [ 81 - "aead", 82 - "aes 0.7.5", 83 - "cipher 0.3.0", 84 - "ctr 0.7.0", 85 - "polyval", 90 + "aead 0.5.2", 91 + "aes 0.8.3", 92 + "cipher 0.4.4", 93 + "ctr 0.9.2", 94 + "polyval 0.6.1", 86 95 "subtle", 87 96 "zeroize", 88 97 ] 89 98 90 99 [[package]] 91 100 name = "aho-corasick" 92 - version = "1.0.4" 101 + version = "1.1.2" 93 102 source = "registry+https://github.com/rust-lang/crates.io-index" 94 - checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a" 103 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 95 104 dependencies = [ 96 105 "memchr", 97 106 ] ··· 113 122 114 123 [[package]] 115 124 name = "anyhow" 116 - version = "1.0.75" 125 + version = "1.0.76" 117 126 source = "registry+https://github.com/rust-lang/crates.io-index" 118 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 127 + checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355" 119 128 120 129 [[package]] 121 130 name = "arrayref" ··· 131 140 132 141 [[package]] 133 142 name = "ashpd" 134 - version = "0.5.0" 143 + version = "0.6.7" 135 144 source = "registry+https://github.com/rust-lang/crates.io-index" 136 - checksum = "7370b58af1d7e96df3ca0f454b57e69acf9aa42ed2d7337bd206923bae0d5754" 145 + checksum = "2c018490e423efb6f032ef575f873ea57b61d44bec763cfe027b8e8852a027cf" 137 146 dependencies = [ 138 - "async-std", 139 147 "enumflags2", 140 148 "futures-channel", 141 149 "futures-util", ··· 143 151 "gdk4-x11", 144 152 "gtk4", 145 153 "once_cell", 146 - "rand 0.8.5", 154 + "rand", 147 155 "serde", 148 156 "serde_repr", 157 + "tokio", 149 158 "url", 150 159 "zbus", 151 160 ] ··· 156 165 source = "registry+https://github.com/rust-lang/crates.io-index" 157 166 checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 158 167 dependencies = [ 159 - "event-listener", 168 + "event-listener 2.5.3", 160 169 "futures-core", 161 170 ] 162 171 163 172 [[package]] 164 173 name = "async-channel" 165 - version = "1.9.0" 174 + version = "2.1.1" 166 175 source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 176 + checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 168 177 dependencies = [ 169 178 "concurrent-queue", 170 - "event-listener", 179 + "event-listener 4.0.1", 180 + "event-listener-strategy", 171 181 "futures-core", 182 + "pin-project-lite", 172 183 ] 173 184 174 185 [[package]] 175 - name = "async-executor" 176 - version = "1.5.1" 186 + name = "async-io" 187 + version = "1.13.0" 177 188 source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 189 + checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 179 190 dependencies = [ 180 - "async-lock", 181 - "async-task", 191 + "async-lock 2.8.0", 192 + "autocfg", 193 + "cfg-if", 182 194 "concurrent-queue", 183 - "fastrand 1.9.0", 184 - "futures-lite", 195 + "futures-lite 1.13.0", 196 + "log", 197 + "parking", 198 + "polling 2.8.0", 199 + "rustix 0.37.27", 185 200 "slab", 186 - ] 187 - 188 - [[package]] 189 - name = "async-fs" 190 - version = "1.6.0" 191 - source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 193 - dependencies = [ 194 - "async-lock", 195 - "autocfg", 196 - "blocking", 197 - "futures-lite", 198 - ] 199 - 200 - [[package]] 201 - name = "async-global-executor" 202 - version = "2.3.1" 203 - source = "registry+https://github.com/rust-lang/crates.io-index" 204 - checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 205 - dependencies = [ 206 - "async-channel", 207 - "async-executor", 208 - "async-io", 209 - "async-lock", 210 - "blocking", 211 - "futures-lite", 212 - "once_cell", 201 + "socket2 0.4.10", 202 + "waker-fn", 213 203 ] 214 204 215 205 [[package]] 216 206 name = "async-io" 217 - version = "1.13.0" 207 + version = "2.2.2" 218 208 source = "registry+https://github.com/rust-lang/crates.io-index" 219 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 209 + checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7" 220 210 dependencies = [ 221 - "async-lock", 222 - "autocfg", 211 + "async-lock 3.2.0", 223 212 "cfg-if", 224 213 "concurrent-queue", 225 - "futures-lite", 226 - "log", 214 + "futures-io", 215 + "futures-lite 2.1.0", 227 216 "parking", 228 - "polling", 229 - "rustix 0.37.23", 217 + "polling 3.3.1", 218 + "rustix 0.38.28", 230 219 "slab", 231 - "socket2 0.4.9", 232 - "waker-fn", 220 + "tracing", 221 + "windows-sys 0.52.0", 233 222 ] 234 223 235 224 [[package]] ··· 238 227 source = "registry+https://github.com/rust-lang/crates.io-index" 239 228 checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 240 229 dependencies = [ 241 - "event-listener", 230 + "event-listener 2.5.3", 231 + ] 232 + 233 + [[package]] 234 + name = "async-lock" 235 + version = "3.2.0" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" 238 + dependencies = [ 239 + "event-listener 4.0.1", 240 + "event-listener-strategy", 241 + "pin-project-lite", 242 242 ] 243 243 244 244 [[package]] 245 245 name = "async-process" 246 - version = "1.7.0" 246 + version = "1.8.1" 247 247 source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" 248 + checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 249 249 dependencies = [ 250 - "async-io", 251 - "async-lock", 252 - "autocfg", 250 + "async-io 1.13.0", 251 + "async-lock 2.8.0", 252 + "async-signal", 253 253 "blocking", 254 254 "cfg-if", 255 - "event-listener", 256 - "futures-lite", 257 - "rustix 0.37.23", 258 - "signal-hook", 259 - "windows-sys", 255 + "event-listener 3.1.0", 256 + "futures-lite 1.13.0", 257 + "rustix 0.38.28", 258 + "windows-sys 0.48.0", 260 259 ] 261 260 262 261 [[package]] 263 262 name = "async-recursion" 264 - version = "1.0.4" 263 + version = "1.0.5" 265 264 source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 265 + checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 267 266 dependencies = [ 268 267 "proc-macro2", 269 268 "quote", 270 - "syn 2.0.29", 269 + "syn 2.0.42", 271 270 ] 272 271 273 272 [[package]] 274 - name = "async-std" 275 - version = "1.12.0" 273 + name = "async-signal" 274 + version = "0.2.5" 276 275 source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 276 + checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 278 277 dependencies = [ 279 - "async-channel", 280 - "async-global-executor", 281 - "async-io", 282 - "async-lock", 283 - "crossbeam-utils", 284 - "futures-channel", 278 + "async-io 2.2.2", 279 + "async-lock 2.8.0", 280 + "atomic-waker", 281 + "cfg-if", 285 282 "futures-core", 286 283 "futures-io", 287 - "futures-lite", 288 - "gloo-timers", 289 - "kv-log-macro", 290 - "log", 291 - "memchr", 292 - "once_cell", 293 - "pin-project-lite", 294 - "pin-utils", 284 + "rustix 0.38.28", 285 + "signal-hook-registry", 295 286 "slab", 296 - "wasm-bindgen-futures", 287 + "windows-sys 0.48.0", 297 288 ] 298 289 299 290 [[package]] 300 291 name = "async-task" 301 - version = "4.4.0" 292 + version = "4.6.0" 302 293 source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 294 + checksum = "e1d90cd0b264dfdd8eb5bad0a2c217c1f88fa96a8573f40e7b12de23fb468f46" 304 295 305 296 [[package]] 306 297 name = "async-trait" 307 - version = "0.1.73" 298 + version = "0.1.75" 308 299 source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 300 + checksum = "fdf6721fb0140e4f897002dd086c06f6c27775df19cfe1fccb21181a48fd2c98" 310 301 dependencies = [ 311 302 "proc-macro2", 312 303 "quote", 313 - "syn 2.0.29", 304 + "syn 2.0.42", 314 305 ] 315 306 316 307 [[package]] 317 308 name = "async-tungstenite" 318 - version = "0.17.2" 309 + version = "0.23.0" 319 310 source = "registry+https://github.com/rust-lang/crates.io-index" 320 - checksum = "a1b71b31561643aa8e7df3effe284fa83ab1a840e52294c5f4bd7bfd8b2becbb" 311 + checksum = "a1e9efbe14612da0a19fb983059a0b621e9cf6225d7018ecab4f9988215540dc" 321 312 dependencies = [ 322 313 "futures-io", 323 314 "futures-util", ··· 331 322 332 323 [[package]] 333 324 name = "atomic-waker" 334 - version = "1.1.1" 325 + version = "1.1.2" 335 326 source = "registry+https://github.com/rust-lang/crates.io-index" 336 - checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 327 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 337 328 338 329 [[package]] 339 330 name = "autocfg" ··· 370 361 371 362 [[package]] 372 363 name = "base64" 373 - version = "0.21.2" 364 + version = "0.21.5" 374 365 source = "registry+https://github.com/rust-lang/crates.io-index" 375 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 376 - 377 - [[package]] 378 - name = "base64ct" 379 - version = "1.6.0" 380 - source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 366 + checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 382 367 383 368 [[package]] 384 369 name = "bincode" ··· 390 375 ] 391 376 392 377 [[package]] 378 + name = "bit_field" 379 + version = "0.10.2" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 382 + 383 + [[package]] 393 384 name = "bitflags" 394 385 version = "1.3.2" 395 386 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 397 388 398 389 [[package]] 399 390 name = "bitflags" 400 - version = "2.4.0" 391 + version = "2.4.1" 401 392 source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 393 + checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 403 394 404 395 [[package]] 405 396 name = "blake3" 406 - version = "1.4.1" 397 + version = "1.5.0" 407 398 source = "registry+https://github.com/rust-lang/crates.io-index" 408 - checksum = "199c42ab6972d92c9f8995f086273d25c42fc0f7b2a1fcefba465c1352d25ba5" 399 + checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87" 409 400 dependencies = [ 410 401 "arrayref", 411 402 "arrayvec", 412 403 "cc", 413 404 "cfg-if", 414 405 "constant_time_eq", 415 - "digest 0.10.7", 416 406 ] 417 407 418 408 [[package]] ··· 420 410 version = "0.1.6" 421 411 source = "registry+https://github.com/rust-lang/crates.io-index" 422 412 checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 423 - 424 - [[package]] 425 - name = "block-buffer" 426 - version = "0.9.0" 427 - source = "registry+https://github.com/rust-lang/crates.io-index" 428 - checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 429 - dependencies = [ 430 - "generic-array", 431 - ] 432 413 433 414 [[package]] 434 415 name = "block-buffer" ··· 466 447 467 448 [[package]] 468 449 name = "blocking" 469 - version = "1.3.1" 450 + version = "1.5.1" 470 451 source = "registry+https://github.com/rust-lang/crates.io-index" 471 - checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 452 + checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 472 453 dependencies = [ 473 454 "async-channel", 474 - "async-lock", 455 + "async-lock 3.2.0", 475 456 "async-task", 476 - "atomic-waker", 477 - "fastrand 1.9.0", 478 - "futures-lite", 479 - "log", 457 + "fastrand 2.0.1", 458 + "futures-io", 459 + "futures-lite 2.1.0", 460 + "piper", 461 + "tracing", 480 462 ] 481 463 482 464 [[package]] 483 465 name = "blurhash" 484 - version = "0.1.1" 485 - source = "git+https://github.com/marc0x1/blurhash-rs?branch=pixbuf-patch#c07c0cbcd29b2277e8c1d0f6ae07b2e0fad1ed52" 466 + version = "0.2.0" 467 + source = "registry+https://github.com/rust-lang/crates.io-index" 468 + checksum = "aa5ddff25bcae3e2ac5a93506cc050c730163fd92d319556861375b225164dde" 486 469 dependencies = [ 487 470 "gdk-pixbuf", 488 471 "image 0.23.14", ··· 490 473 491 474 [[package]] 492 475 name = "bumpalo" 493 - version = "3.13.0" 476 + version = "3.14.0" 494 477 source = "registry+https://github.com/rust-lang/crates.io-index" 495 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 478 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 496 479 497 480 [[package]] 498 481 name = "bytemuck" 499 - version = "1.13.1" 482 + version = "1.14.0" 500 483 source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 484 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 502 485 503 486 [[package]] 504 487 name = "byteorder" 505 - version = "1.4.3" 488 + version = "1.5.0" 506 489 source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 490 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 508 491 509 492 [[package]] 510 493 name = "bytes" 511 - version = "1.4.0" 494 + version = "1.5.0" 512 495 source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 496 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 514 497 515 498 [[package]] 516 499 name = "cairo-rs" 517 - version = "0.18.0" 500 + version = "0.18.3" 518 501 source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "d859b656775a6b1dd078d3e5924884e6ea88aa649a7fdde03d5b2ec56ffcc10b" 502 + checksum = "f33613627f0dea6a731b0605101fad59ba4f193a52c96c4687728d822605a8a1" 520 503 dependencies = [ 521 - "bitflags 2.4.0", 504 + "bitflags 2.4.1", 522 505 "cairo-sys-rs", 523 506 "glib", 524 507 "libc", ··· 528 511 529 512 [[package]] 530 513 name = "cairo-sys-rs" 531 - version = "0.18.0" 514 + version = "0.18.2" 532 515 source = "registry+https://github.com/rust-lang/crates.io-index" 533 - checksum = "bd4d115132e01c0165e3bf5f56aedee8980b0b96ede4eb000b693c05a8adb8ff" 516 + checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 534 517 dependencies = [ 535 518 "glib-sys", 536 519 "libc", ··· 558 541 559 542 [[package]] 560 543 name = "cfg-expr" 561 - version = "0.15.4" 544 + version = "0.15.5" 562 545 source = "registry+https://github.com/rust-lang/crates.io-index" 563 - checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" 546 + checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 564 547 dependencies = [ 565 548 "smallvec", 566 549 "target-lexicon", ··· 574 557 575 558 [[package]] 576 559 name = "chacha20" 577 - version = "0.8.2" 560 + version = "0.9.1" 578 561 source = "registry+https://github.com/rust-lang/crates.io-index" 579 - checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" 562 + checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 580 563 dependencies = [ 581 564 "cfg-if", 582 - "cipher 0.3.0", 565 + "cipher 0.4.4", 583 566 "cpufeatures", 584 - "zeroize", 585 567 ] 586 568 587 569 [[package]] 588 570 name = "chacha20poly1305" 589 - version = "0.9.1" 571 + version = "0.10.1" 590 572 source = "registry+https://github.com/rust-lang/crates.io-index" 591 - checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5" 573 + checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 592 574 dependencies = [ 593 - "aead", 575 + "aead 0.5.2", 594 576 "chacha20", 595 - "cipher 0.3.0", 577 + "cipher 0.4.4", 596 578 "poly1305", 597 579 "zeroize", 598 580 ] 599 581 600 582 [[package]] 601 583 name = "chrono" 602 - version = "0.4.26" 584 + version = "0.4.31" 603 585 source = "registry+https://github.com/rust-lang/crates.io-index" 604 - checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 586 + checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 605 587 dependencies = [ 606 588 "android-tzdata", 607 589 "iana-time-zone", 608 590 "num-traits", 609 591 "serde", 610 - "winapi", 592 + "windows-targets 0.48.5", 611 593 ] 612 594 613 595 [[package]] ··· 647 629 648 630 [[package]] 649 631 name = "concurrent-queue" 650 - version = "2.2.0" 632 + version = "2.4.0" 651 633 source = "registry+https://github.com/rust-lang/crates.io-index" 652 - checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 634 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 653 635 dependencies = [ 654 636 "crossbeam-utils", 655 637 ] ··· 662 644 663 645 [[package]] 664 646 name = "core-foundation" 665 - version = "0.9.3" 647 + version = "0.9.4" 666 648 source = "registry+https://github.com/rust-lang/crates.io-index" 667 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 649 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 668 650 dependencies = [ 669 651 "core-foundation-sys", 670 652 "libc", ··· 672 654 673 655 [[package]] 674 656 name = "core-foundation-sys" 675 - version = "0.8.4" 657 + version = "0.8.6" 676 658 source = "registry+https://github.com/rust-lang/crates.io-index" 677 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 659 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 678 660 679 661 [[package]] 680 662 name = "cpufeatures" 681 - version = "0.2.9" 663 + version = "0.2.11" 682 664 source = "registry+https://github.com/rust-lang/crates.io-index" 683 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 665 + checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 684 666 dependencies = [ 685 667 "libc", 686 668 ] ··· 695 677 ] 696 678 697 679 [[package]] 698 - name = "crossbeam-channel" 699 - version = "0.5.8" 700 - source = "registry+https://github.com/rust-lang/crates.io-index" 701 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 702 - dependencies = [ 703 - "cfg-if", 704 - "crossbeam-utils", 705 - ] 706 - 707 - [[package]] 708 680 name = "crossbeam-deque" 709 - version = "0.8.3" 681 + version = "0.8.4" 710 682 source = "registry+https://github.com/rust-lang/crates.io-index" 711 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 683 + checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" 712 684 dependencies = [ 713 685 "cfg-if", 714 686 "crossbeam-epoch", ··· 717 689 718 690 [[package]] 719 691 name = "crossbeam-epoch" 720 - version = "0.9.15" 692 + version = "0.9.17" 721 693 source = "registry+https://github.com/rust-lang/crates.io-index" 722 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 694 + checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d" 723 695 dependencies = [ 724 696 "autocfg", 725 697 "cfg-if", 726 698 "crossbeam-utils", 727 - "memoffset 0.9.0", 728 - "scopeguard", 729 699 ] 730 700 731 701 [[package]] 732 702 name = "crossbeam-utils" 733 - version = "0.8.16" 703 + version = "0.8.18" 734 704 source = "registry+https://github.com/rust-lang/crates.io-index" 735 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 705 + checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c" 736 706 dependencies = [ 737 707 "cfg-if", 738 708 ] 739 709 740 710 [[package]] 711 + name = "crunchy" 712 + version = "0.2.2" 713 + source = "registry+https://github.com/rust-lang/crates.io-index" 714 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 715 + 716 + [[package]] 741 717 name = "crypto-common" 742 718 version = "0.1.6" 743 719 source = "registry+https://github.com/rust-lang/crates.io-index" 744 720 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 745 721 dependencies = [ 746 722 "generic-array", 747 - "rand_core 0.6.4", 723 + "rand_core", 748 724 "typenum", 749 - ] 750 - 751 - [[package]] 752 - name = "crypto-mac" 753 - version = "0.11.1" 754 - source = "registry+https://github.com/rust-lang/crates.io-index" 755 - checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" 756 - dependencies = [ 757 - "generic-array", 758 - "subtle", 759 725 ] 760 726 761 727 [[package]] ··· 777 743 ] 778 744 779 745 [[package]] 746 + name = "ctr" 747 + version = "0.9.2" 748 + source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 750 + dependencies = [ 751 + "cipher 0.4.4", 752 + ] 753 + 754 + [[package]] 780 755 name = "curve25519-dalek" 781 - version = "3.2.1" 782 - source = "git+https://github.com/Schmiddiii/curve25519-dalek?rev=1b9f81352bb659999a46af961f069d635ca432d3#1b9f81352bb659999a46af961f069d635ca432d3" 756 + version = "4.0.0" 757 + source = "git+https://github.com/signalapp/curve25519-dalek?tag=signal-curve25519-4.0.0#463e5c7cba32561ffee8a281c4455ff3c25660d4" 783 758 dependencies = [ 784 - "byteorder", 785 - "digest 0.9.0", 786 - "rand_core 0.5.1", 759 + "cfg-if", 760 + "cpufeatures", 761 + "curve25519-dalek-derive", 762 + "digest", 763 + "fiat-crypto", 764 + "platforms", 765 + "rustc_version", 787 766 "serde", 788 767 "subtle", 789 768 "zeroize", 790 769 ] 791 770 792 771 [[package]] 772 + name = "curve25519-dalek-derive" 773 + version = "0.1.0" 774 + source = "git+https://github.com/signalapp/curve25519-dalek?tag=signal-curve25519-4.0.0#463e5c7cba32561ffee8a281c4455ff3c25660d4" 775 + dependencies = [ 776 + "proc-macro2", 777 + "quote", 778 + "syn 2.0.42", 779 + ] 780 + 781 + [[package]] 782 + name = "data-encoding" 783 + version = "2.5.0" 784 + source = "registry+https://github.com/rust-lang/crates.io-index" 785 + checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 786 + 787 + [[package]] 793 788 name = "deflate" 794 789 version = "0.8.6" 795 790 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 812 807 813 808 [[package]] 814 809 name = "digest" 815 - version = "0.9.0" 816 - source = "registry+https://github.com/rust-lang/crates.io-index" 817 - checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 818 - dependencies = [ 819 - "generic-array", 820 - ] 821 - 822 - [[package]] 823 - name = "digest" 824 810 version = "0.10.7" 825 811 source = "registry+https://github.com/rust-lang/crates.io-index" 826 812 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 827 813 dependencies = [ 828 - "block-buffer 0.10.4", 814 + "block-buffer", 829 815 "crypto-common", 830 816 "subtle", 831 817 ] ··· 838 824 dependencies = [ 839 825 "proc-macro2", 840 826 "quote", 841 - "syn 2.0.29", 827 + "syn 2.0.42", 842 828 ] 843 829 844 830 [[package]] ··· 855 841 856 842 [[package]] 857 843 name = "enumflags2" 858 - version = "0.7.7" 844 + version = "0.7.8" 859 845 source = "registry+https://github.com/rust-lang/crates.io-index" 860 - checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" 846 + checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 861 847 dependencies = [ 862 848 "enumflags2_derive", 863 849 "serde", ··· 865 851 866 852 [[package]] 867 853 name = "enumflags2_derive" 868 - version = "0.7.7" 854 + version = "0.7.8" 869 855 source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" 856 + checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 871 857 dependencies = [ 872 858 "proc-macro2", 873 859 "quote", 874 - "syn 2.0.29", 860 + "syn 2.0.42", 875 861 ] 876 862 877 863 [[package]] 878 864 name = "env_logger" 879 - version = "0.10.0" 865 + version = "0.10.1" 880 866 source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 867 + checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 882 868 dependencies = [ 883 869 "humantime", 884 870 "is-terminal", ··· 909 895 910 896 [[package]] 911 897 name = "errno" 912 - version = "0.3.2" 898 + version = "0.3.8" 913 899 source = "registry+https://github.com/rust-lang/crates.io-index" 914 - checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 900 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 915 901 dependencies = [ 916 - "errno-dragonfly", 917 902 "libc", 918 - "windows-sys", 903 + "windows-sys 0.52.0", 919 904 ] 920 905 921 906 [[package]] 922 - name = "errno-dragonfly" 923 - version = "0.1.2" 907 + name = "event-listener" 908 + version = "2.5.3" 909 + source = "registry+https://github.com/rust-lang/crates.io-index" 910 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 911 + 912 + [[package]] 913 + name = "event-listener" 914 + version = "3.1.0" 924 915 source = "registry+https://github.com/rust-lang/crates.io-index" 925 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 916 + checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 926 917 dependencies = [ 927 - "cc", 928 - "libc", 918 + "concurrent-queue", 919 + "parking", 920 + "pin-project-lite", 929 921 ] 930 922 931 923 [[package]] 932 924 name = "event-listener" 933 - version = "2.5.3" 925 + version = "4.0.1" 926 + source = "registry+https://github.com/rust-lang/crates.io-index" 927 + checksum = "84f2cdcf274580f2d63697192d744727b3198894b1bf02923643bf59e2c26712" 928 + dependencies = [ 929 + "concurrent-queue", 930 + "parking", 931 + "pin-project-lite", 932 + ] 933 + 934 + [[package]] 935 + name = "event-listener-strategy" 936 + version = "0.4.0" 934 937 source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 938 + checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 939 + dependencies = [ 940 + "event-listener 4.0.1", 941 + "pin-project-lite", 942 + ] 943 + 944 + [[package]] 945 + name = "exr" 946 + version = "1.71.0" 947 + source = "registry+https://github.com/rust-lang/crates.io-index" 948 + checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8" 949 + dependencies = [ 950 + "bit_field", 951 + "flume", 952 + "half", 953 + "lebe", 954 + "miniz_oxide 0.7.1", 955 + "rayon-core", 956 + "smallvec", 957 + "zune-inflate", 958 + ] 936 959 937 960 [[package]] 938 961 name = "fastrand" ··· 945 968 946 969 [[package]] 947 970 name = "fastrand" 948 - version = "2.0.0" 971 + version = "2.0.1" 949 972 source = "registry+https://github.com/rust-lang/crates.io-index" 950 - checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 973 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 951 974 952 975 [[package]] 953 976 name = "fdeflate" 954 - version = "0.3.0" 977 + version = "0.3.1" 955 978 source = "registry+https://github.com/rust-lang/crates.io-index" 956 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 979 + checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 957 980 dependencies = [ 958 981 "simd-adler32", 959 982 ] 960 983 961 984 [[package]] 985 + name = "fiat-crypto" 986 + version = "0.1.20" 987 + source = "registry+https://github.com/rust-lang/crates.io-index" 988 + checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77" 989 + 990 + [[package]] 962 991 name = "field-offset" 963 992 version = "0.3.6" 964 993 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 976 1005 977 1006 [[package]] 978 1007 name = "flare" 979 - version = "0.10.0" 1008 + version = "0.11.0" 980 1009 dependencies = [ 981 1010 "ashpd", 982 1011 "async-trait", ··· 988 1017 "gettext-rs", 989 1018 "gtk4", 990 1019 "hex", 991 - "image 0.23.14", 1020 + "image 0.24.7", 992 1021 "lazy_static", 993 1022 "libadwaita", 994 1023 "libsignal-service", ··· 999 1028 "presage", 1000 1029 "presage-store-sled", 1001 1030 "qrcode-generator", 1002 - "rand 0.8.5", 1031 + "rand", 1003 1032 "regex", 1004 1033 "serde", 1005 1034 "serde_json", ··· 1009 1038 "tracing", 1010 1039 "url", 1011 1040 "zbus", 1012 - "zeroize", 1013 1041 ] 1014 1042 1015 1043 [[package]] 1016 1044 name = "flate2" 1017 - version = "1.0.27" 1045 + version = "1.0.28" 1018 1046 source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 1047 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1020 1048 dependencies = [ 1021 1049 "crc32fast", 1022 1050 "miniz_oxide 0.7.1", 1023 1051 ] 1024 1052 1025 1053 [[package]] 1054 + name = "flume" 1055 + version = "0.11.0" 1056 + source = "registry+https://github.com/rust-lang/crates.io-index" 1057 + checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1058 + dependencies = [ 1059 + "spin 0.9.8", 1060 + ] 1061 + 1062 + [[package]] 1026 1063 name = "fnv" 1027 1064 version = "1.0.7" 1028 1065 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1030 1067 1031 1068 [[package]] 1032 1069 name = "form_urlencoded" 1033 - version = "1.2.0" 1070 + version = "1.2.1" 1034 1071 source = "registry+https://github.com/rust-lang/crates.io-index" 1035 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1072 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1036 1073 dependencies = [ 1037 1074 "percent-encoding", 1038 1075 ] ··· 1055 1092 1056 1093 [[package]] 1057 1094 name = "futures" 1058 - version = "0.3.28" 1095 + version = "0.3.29" 1059 1096 source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1097 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1061 1098 dependencies = [ 1062 1099 "futures-channel", 1063 1100 "futures-core", ··· 1070 1107 1071 1108 [[package]] 1072 1109 name = "futures-channel" 1073 - version = "0.3.28" 1110 + version = "0.3.29" 1074 1111 source = "registry+https://github.com/rust-lang/crates.io-index" 1075 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1112 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1076 1113 dependencies = [ 1077 1114 "futures-core", 1078 1115 "futures-sink", ··· 1080 1117 1081 1118 [[package]] 1082 1119 name = "futures-core" 1083 - version = "0.3.28" 1120 + version = "0.3.29" 1084 1121 source = "registry+https://github.com/rust-lang/crates.io-index" 1085 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1122 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1086 1123 1087 1124 [[package]] 1088 1125 name = "futures-executor" 1089 - version = "0.3.28" 1126 + version = "0.3.29" 1090 1127 source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1128 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1092 1129 dependencies = [ 1093 1130 "futures-core", 1094 1131 "futures-task", ··· 1097 1134 1098 1135 [[package]] 1099 1136 name = "futures-io" 1100 - version = "0.3.28" 1137 + version = "0.3.29" 1101 1138 source = "registry+https://github.com/rust-lang/crates.io-index" 1102 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1139 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1103 1140 1104 1141 [[package]] 1105 1142 name = "futures-lite" ··· 1117 1154 ] 1118 1155 1119 1156 [[package]] 1157 + name = "futures-lite" 1158 + version = "2.1.0" 1159 + source = "registry+https://github.com/rust-lang/crates.io-index" 1160 + checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" 1161 + dependencies = [ 1162 + "futures-core", 1163 + "pin-project-lite", 1164 + ] 1165 + 1166 + [[package]] 1120 1167 name = "futures-macro" 1121 - version = "0.3.28" 1168 + version = "0.3.29" 1122 1169 source = "registry+https://github.com/rust-lang/crates.io-index" 1123 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1170 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1124 1171 dependencies = [ 1125 1172 "proc-macro2", 1126 1173 "quote", 1127 - "syn 2.0.29", 1174 + "syn 2.0.42", 1128 1175 ] 1129 1176 1130 1177 [[package]] 1131 1178 name = "futures-sink" 1132 - version = "0.3.28" 1179 + version = "0.3.29" 1133 1180 source = "registry+https://github.com/rust-lang/crates.io-index" 1134 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1181 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1135 1182 1136 1183 [[package]] 1137 1184 name = "futures-task" 1138 - version = "0.3.28" 1185 + version = "0.3.29" 1139 1186 source = "registry+https://github.com/rust-lang/crates.io-index" 1140 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1187 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1141 1188 1142 1189 [[package]] 1143 1190 name = "futures-util" 1144 - version = "0.3.28" 1191 + version = "0.3.29" 1145 1192 source = "registry+https://github.com/rust-lang/crates.io-index" 1146 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1193 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1147 1194 dependencies = [ 1148 1195 "futures-channel", 1149 1196 "futures-core", ··· 1168 1215 1169 1216 [[package]] 1170 1217 name = "gdk-pixbuf" 1171 - version = "0.18.0" 1218 + version = "0.18.3" 1172 1219 source = "registry+https://github.com/rust-lang/crates.io-index" 1173 - checksum = "bbc9c2ed73a81d556b65d08879ba4ee58808a6b1927ce915262185d6d547c6f3" 1220 + checksum = "446f32b74d22c33b7b258d4af4ffde53c2bf96ca2e29abdf1a785fe59bd6c82c" 1174 1221 dependencies = [ 1175 1222 "gdk-pixbuf-sys", 1176 1223 "gio", ··· 1194 1241 1195 1242 [[package]] 1196 1243 name = "gdk4" 1197 - version = "0.7.2" 1244 + version = "0.7.3" 1198 1245 source = "registry+https://github.com/rust-lang/crates.io-index" 1199 - checksum = "6982d9815ed6ac95b0467b189e81f29dea26d08a732926ec113e65744ed3f96c" 1246 + checksum = "7edb019ad581f8ecf8ea8e4baa6df7c483a95b5a59be3140be6a9c3b0c632af6" 1200 1247 dependencies = [ 1201 1248 "cairo-rs", 1202 1249 "gdk-pixbuf", ··· 1285 1332 1286 1333 [[package]] 1287 1334 name = "getrandom" 1288 - version = "0.1.16" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1291 - dependencies = [ 1292 - "cfg-if", 1293 - "libc", 1294 - "wasi 0.9.0+wasi-snapshot-preview1", 1295 - ] 1296 - 1297 - [[package]] 1298 - name = "getrandom" 1299 - version = "0.2.10" 1335 + version = "0.2.11" 1300 1336 source = "registry+https://github.com/rust-lang/crates.io-index" 1301 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1337 + checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1302 1338 dependencies = [ 1303 1339 "cfg-if", 1304 1340 "libc", 1305 - "wasi 0.11.0+wasi-snapshot-preview1", 1341 + "wasi", 1306 1342 ] 1307 1343 1308 1344 [[package]] ··· 1332 1368 checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" 1333 1369 dependencies = [ 1334 1370 "opaque-debug", 1335 - "polyval", 1371 + "polyval 0.5.3", 1372 + ] 1373 + 1374 + [[package]] 1375 + name = "ghash" 1376 + version = "0.5.0" 1377 + source = "registry+https://github.com/rust-lang/crates.io-index" 1378 + checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" 1379 + dependencies = [ 1380 + "opaque-debug", 1381 + "polyval 0.6.1", 1382 + "zeroize", 1336 1383 ] 1337 1384 1338 1385 [[package]] ··· 1346 1393 ] 1347 1394 1348 1395 [[package]] 1396 + name = "gif" 1397 + version = "0.12.0" 1398 + source = "registry+https://github.com/rust-lang/crates.io-index" 1399 + checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 1400 + dependencies = [ 1401 + "color_quant", 1402 + "weezl", 1403 + ] 1404 + 1405 + [[package]] 1349 1406 name = "gimli" 1350 - version = "0.28.0" 1407 + version = "0.28.1" 1351 1408 source = "registry+https://github.com/rust-lang/crates.io-index" 1352 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1409 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1353 1410 1354 1411 [[package]] 1355 1412 name = "gio" 1356 - version = "0.18.1" 1413 + version = "0.18.4" 1357 1414 source = "registry+https://github.com/rust-lang/crates.io-index" 1358 - checksum = "7884cba6b1c5db1607d970cadf44b14a43913d42bc68766eea6a5e2fe0891524" 1415 + checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 1359 1416 dependencies = [ 1360 1417 "futures-channel", 1361 1418 "futures-core", ··· 1385 1442 1386 1443 [[package]] 1387 1444 name = "glib" 1388 - version = "0.18.1" 1445 + version = "0.18.4" 1389 1446 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "331156127e8166dd815cf8d2db3a5beb492610c716c03ee6db4f2d07092af0a7" 1447 + checksum = "951bbd7fdc5c044ede9f05170f05a3ae9479239c3afdfe2d22d537a3add15c4e" 1391 1448 dependencies = [ 1392 - "bitflags 2.4.0", 1449 + "bitflags 2.4.1", 1393 1450 "futures-channel", 1394 1451 "futures-core", 1395 1452 "futures-executor", ··· 1408 1465 1409 1466 [[package]] 1410 1467 name = "glib-macros" 1411 - version = "0.18.0" 1468 + version = "0.18.3" 1412 1469 source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "179643c50bf28d20d2f6eacd2531a88f2f5d9747dd0b86b8af1e8bb5dd0de3c0" 1470 + checksum = "72793962ceece3863c2965d7f10c8786323b17c7adea75a515809fa20ab799a5" 1414 1471 dependencies = [ 1415 1472 "heck 0.4.1", 1416 - "proc-macro-crate", 1473 + "proc-macro-crate 2.0.1", 1417 1474 "proc-macro-error", 1418 1475 "proc-macro2", 1419 1476 "quote", 1420 - "syn 2.0.29", 1477 + "syn 2.0.42", 1421 1478 ] 1422 1479 1423 1480 [[package]] ··· 1435 1492 version = "0.3.1" 1436 1493 source = "registry+https://github.com/rust-lang/crates.io-index" 1437 1494 checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1438 - 1439 - [[package]] 1440 - name = "gloo-timers" 1441 - version = "0.2.6" 1442 - source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1444 - dependencies = [ 1445 - "futures-channel", 1446 - "futures-core", 1447 - "js-sys", 1448 - "wasm-bindgen", 1449 - ] 1450 1495 1451 1496 [[package]] 1452 1497 name = "gobject-sys" ··· 1484 1529 1485 1530 [[package]] 1486 1531 name = "gsk4" 1487 - version = "0.7.2" 1532 + version = "0.7.3" 1488 1533 source = "registry+https://github.com/rust-lang/crates.io-index" 1489 - checksum = "cc25855255120f294d874acd6eaf4fbed7ce1cdc550e2d8415ea57fafbe816d5" 1534 + checksum = "0d958e351d2f210309b32d081c832d7de0aca0b077aa10d88336c6379bd01f7e" 1490 1535 dependencies = [ 1491 1536 "cairo-rs", 1492 1537 "gdk4", ··· 1499 1544 1500 1545 [[package]] 1501 1546 name = "gsk4-sys" 1502 - version = "0.7.2" 1547 + version = "0.7.3" 1503 1548 source = "registry+https://github.com/rust-lang/crates.io-index" 1504 - checksum = "e1ecf3a63bf1223d68f80f72cc896c4d8c80482fbce1c9a12c66d3de7290ee46" 1549 + checksum = "12bd9e3effea989f020e8f1ff3fa3b8c63ba93d43b899c11a118868853a56d55" 1505 1550 dependencies = [ 1506 1551 "cairo-sys-rs", 1507 1552 "gdk4-sys", ··· 1515 1560 1516 1561 [[package]] 1517 1562 name = "gtk4" 1518 - version = "0.7.2" 1563 + version = "0.7.3" 1519 1564 source = "registry+https://github.com/rust-lang/crates.io-index" 1520 - checksum = "a3b095b26f2a2df70be1805d3590eeb9d7a05ecb5be9649b82defc72dc56228c" 1565 + checksum = "5aeb51aa3e9728575a053e1f43543cd9992ac2477e1b186ad824fd4adfb70842" 1521 1566 dependencies = [ 1522 1567 "cairo-rs", 1523 1568 "field-offset", ··· 1541 1586 checksum = "d57ec49cf9b657f69a05bca8027cff0a8dfd0c49e812be026fc7311f2163832f" 1542 1587 dependencies = [ 1543 1588 "anyhow", 1544 - "proc-macro-crate", 1589 + "proc-macro-crate 1.3.1", 1545 1590 "proc-macro-error", 1546 1591 "proc-macro2", 1547 1592 "quote", ··· 1550 1595 1551 1596 [[package]] 1552 1597 name = "gtk4-sys" 1553 - version = "0.7.2" 1598 + version = "0.7.3" 1554 1599 source = "registry+https://github.com/rust-lang/crates.io-index" 1555 - checksum = "7b0bdde87c50317b4f355bcbb4a9c2c414ece1b7c824fb4ad4ba8f3bdb2c6603" 1600 + checksum = "54d8c4aa23638ce9faa2caf7e2a27d4a1295af2155c8e8d28c4d4eeca7a65eb8" 1556 1601 dependencies = [ 1557 1602 "cairo-sys-rs", 1558 1603 "gdk-pixbuf-sys", ··· 1568 1613 ] 1569 1614 1570 1615 [[package]] 1616 + name = "half" 1617 + version = "2.2.1" 1618 + source = "registry+https://github.com/rust-lang/crates.io-index" 1619 + checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" 1620 + dependencies = [ 1621 + "crunchy", 1622 + ] 1623 + 1624 + [[package]] 1571 1625 name = "hashbrown" 1572 - version = "0.14.0" 1626 + version = "0.14.3" 1573 1627 source = "registry+https://github.com/rust-lang/crates.io-index" 1574 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 1628 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1575 1629 1576 1630 [[package]] 1577 1631 name = "headers" 1578 - version = "0.3.8" 1632 + version = "0.3.9" 1579 1633 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1634 + checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" 1581 1635 dependencies = [ 1582 - "base64 0.13.1", 1583 - "bitflags 1.3.2", 1636 + "base64 0.21.5", 1584 1637 "bytes", 1585 1638 "headers-core", 1586 1639 "http", ··· 1615 1668 1616 1669 [[package]] 1617 1670 name = "hermit-abi" 1618 - version = "0.3.2" 1671 + version = "0.3.3" 1619 1672 source = "registry+https://github.com/rust-lang/crates.io-index" 1620 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1673 + checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1621 1674 1622 1675 [[package]] 1623 1676 name = "hex" ··· 1627 1680 1628 1681 [[package]] 1629 1682 name = "hkdf" 1630 - version = "0.11.0" 1683 + version = "0.12.4" 1631 1684 source = "registry+https://github.com/rust-lang/crates.io-index" 1632 - checksum = "01706d578d5c281058480e673ae4086a9f4710d8df1ad80a5b03e39ece5f886b" 1633 - dependencies = [ 1634 - "digest 0.9.0", 1635 - "hmac 0.11.0", 1636 - ] 1637 - 1638 - [[package]] 1639 - name = "hkdf" 1640 - version = "0.12.3" 1641 - source = "registry+https://github.com/rust-lang/crates.io-index" 1642 - checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 1685 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1643 1686 dependencies = [ 1644 - "hmac 0.12.1", 1687 + "hmac", 1645 1688 ] 1646 1689 1647 1690 [[package]] 1648 1691 name = "hmac" 1649 - version = "0.11.0" 1692 + version = "0.12.1" 1650 1693 source = "registry+https://github.com/rust-lang/crates.io-index" 1651 - checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" 1694 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1652 1695 dependencies = [ 1653 - "crypto-mac", 1654 - "digest 0.9.0", 1696 + "digest", 1655 1697 ] 1656 1698 1657 1699 [[package]] 1658 - name = "hmac" 1659 - version = "0.12.1" 1700 + name = "home" 1701 + version = "0.5.9" 1660 1702 source = "registry+https://github.com/rust-lang/crates.io-index" 1661 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1703 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1662 1704 dependencies = [ 1663 - "digest 0.10.7", 1705 + "windows-sys 0.52.0", 1664 1706 ] 1665 1707 1666 1708 [[package]] ··· 1674 1716 1675 1717 [[package]] 1676 1718 name = "http" 1677 - version = "0.2.9" 1719 + version = "0.2.11" 1678 1720 source = "registry+https://github.com/rust-lang/crates.io-index" 1679 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1721 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1680 1722 dependencies = [ 1681 1723 "bytes", 1682 1724 "fnv", ··· 1685 1727 1686 1728 [[package]] 1687 1729 name = "http-body" 1688 - version = "0.4.5" 1730 + version = "0.4.6" 1689 1731 source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1732 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1691 1733 dependencies = [ 1692 1734 "bytes", 1693 1735 "http", ··· 1714 1756 1715 1757 [[package]] 1716 1758 name = "hyper" 1717 - version = "0.14.27" 1759 + version = "0.14.28" 1718 1760 source = "registry+https://github.com/rust-lang/crates.io-index" 1719 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1761 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1720 1762 dependencies = [ 1721 1763 "bytes", 1722 1764 "futures-channel", ··· 1728 1770 "httpdate", 1729 1771 "itoa", 1730 1772 "pin-project-lite", 1731 - "socket2 0.4.9", 1773 + "socket2 0.5.5", 1732 1774 "tokio", 1733 1775 "tower-service", 1734 1776 "tracing", ··· 1737 1779 1738 1780 [[package]] 1739 1781 name = "hyper-rustls" 1740 - version = "0.23.2" 1782 + version = "0.24.2" 1741 1783 source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 1784 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1743 1785 dependencies = [ 1786 + "futures-util", 1744 1787 "http", 1745 1788 "hyper", 1746 1789 "log", ··· 1764 1807 1765 1808 [[package]] 1766 1809 name = "iana-time-zone" 1767 - version = "0.1.57" 1810 + version = "0.1.58" 1768 1811 source = "registry+https://github.com/rust-lang/crates.io-index" 1769 - checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 1812 + checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 1770 1813 dependencies = [ 1771 1814 "android_system_properties", 1772 1815 "core-foundation-sys", 1773 1816 "iana-time-zone-haiku", 1774 1817 "js-sys", 1775 1818 "wasm-bindgen", 1776 - "windows", 1819 + "windows-core", 1777 1820 ] 1778 1821 1779 1822 [[package]] ··· 1787 1830 1788 1831 [[package]] 1789 1832 name = "idna" 1790 - version = "0.4.0" 1833 + version = "0.5.0" 1791 1834 source = "registry+https://github.com/rust-lang/crates.io-index" 1792 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1835 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1793 1836 dependencies = [ 1794 1837 "unicode-bidi", 1795 1838 "unicode-normalization", ··· 1804 1847 "bytemuck", 1805 1848 "byteorder", 1806 1849 "color_quant", 1807 - "gif", 1808 - "jpeg-decoder", 1850 + "gif 0.11.4", 1851 + "jpeg-decoder 0.1.22", 1809 1852 "num-iter", 1810 1853 "num-rational 0.3.2", 1811 1854 "num-traits", 1812 1855 "png 0.16.8", 1813 1856 "scoped_threadpool", 1814 - "tiff", 1857 + "tiff 0.6.1", 1815 1858 ] 1816 1859 1817 1860 [[package]] ··· 1823 1866 "bytemuck", 1824 1867 "byteorder", 1825 1868 "color_quant", 1869 + "exr", 1870 + "gif 0.12.0", 1871 + "jpeg-decoder 0.3.0", 1826 1872 "num-rational 0.4.1", 1827 1873 "num-traits", 1828 1874 "png 0.17.10", 1875 + "qoi", 1876 + "tiff 0.9.0", 1829 1877 ] 1830 1878 1831 1879 [[package]] 1832 1880 name = "indexmap" 1833 - version = "2.0.0" 1881 + version = "2.1.0" 1834 1882 source = "registry+https://github.com/rust-lang/crates.io-index" 1835 - checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 1883 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1836 1884 dependencies = [ 1837 1885 "equivalent", 1838 1886 "hashbrown", ··· 1865 1913 dependencies = [ 1866 1914 "hermit-abi", 1867 1915 "libc", 1868 - "windows-sys", 1916 + "windows-sys 0.48.0", 1869 1917 ] 1870 1918 1871 1919 [[package]] ··· 1875 1923 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1876 1924 dependencies = [ 1877 1925 "hermit-abi", 1878 - "rustix 0.38.9", 1879 - "windows-sys", 1926 + "rustix 0.38.28", 1927 + "windows-sys 0.48.0", 1880 1928 ] 1881 1929 1882 1930 [[package]] ··· 1889 1937 ] 1890 1938 1891 1939 [[package]] 1940 + name = "itertools" 1941 + version = "0.11.0" 1942 + source = "registry+https://github.com/rust-lang/crates.io-index" 1943 + checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 1944 + dependencies = [ 1945 + "either", 1946 + ] 1947 + 1948 + [[package]] 1892 1949 name = "itoa" 1893 - version = "1.0.9" 1950 + version = "1.0.10" 1894 1951 source = "registry+https://github.com/rust-lang/crates.io-index" 1895 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1952 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1896 1953 1897 1954 [[package]] 1898 1955 name = "jobserver" 1899 - version = "0.1.26" 1956 + version = "0.1.27" 1900 1957 source = "registry+https://github.com/rust-lang/crates.io-index" 1901 - checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1958 + checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 1902 1959 dependencies = [ 1903 1960 "libc", 1904 1961 ] ··· 1913 1970 ] 1914 1971 1915 1972 [[package]] 1916 - name = "js-sys" 1917 - version = "0.3.64" 1973 + name = "jpeg-decoder" 1974 + version = "0.3.0" 1918 1975 source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1976 + checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 1920 1977 dependencies = [ 1921 - "wasm-bindgen", 1978 + "rayon", 1922 1979 ] 1923 1980 1924 1981 [[package]] 1925 - name = "kv-log-macro" 1926 - version = "1.0.7" 1982 + name = "js-sys" 1983 + version = "0.3.66" 1927 1984 source = "registry+https://github.com/rust-lang/crates.io-index" 1928 - checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 1985 + checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 1929 1986 dependencies = [ 1930 - "log", 1987 + "wasm-bindgen", 1931 1988 ] 1932 1989 1933 1990 [[package]] ··· 1936 1993 source = "registry+https://github.com/rust-lang/crates.io-index" 1937 1994 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1938 1995 dependencies = [ 1939 - "spin", 1996 + "spin 0.5.2", 1940 1997 ] 1941 1998 1942 1999 [[package]] 2000 + name = "lebe" 2001 + version = "0.5.2" 2002 + source = "registry+https://github.com/rust-lang/crates.io-index" 2003 + checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" 2004 + 2005 + [[package]] 1943 2006 name = "libadwaita" 1944 - version = "0.5.2" 2007 + version = "0.5.3" 1945 2008 source = "registry+https://github.com/rust-lang/crates.io-index" 1946 - checksum = "06444f4ca05a60693da6e9e2b591bd40a298e65a118a8d5e830771718b3e0253" 2009 + checksum = "2fe7e70c06507ed10a16cda707f358fbe60fe0dc237498f78c686ade92fd979c" 1947 2010 dependencies = [ 1948 2011 "gdk-pixbuf", 1949 2012 "gdk4", ··· 1957 2020 1958 2021 [[package]] 1959 2022 name = "libadwaita-sys" 1960 - version = "0.5.2" 2023 + version = "0.5.3" 1961 2024 source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "021cfe3d1fcfa82411765a791f7e9b32f35dd98ce88d2e3fa10e7320f5cc8ce7" 2025 + checksum = "5e10aaa38de1d53374f90deeb4535209adc40cc5dba37f9704724169bceec69a" 1963 2026 dependencies = [ 1964 2027 "gdk4-sys", 1965 2028 "gio-sys", ··· 1973 2036 1974 2037 [[package]] 1975 2038 name = "libc" 1976 - version = "0.2.147" 2039 + version = "0.2.151" 1977 2040 source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 2041 + checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" 1979 2042 1980 2043 [[package]] 1981 2044 name = "libm" 1982 - version = "0.2.7" 2045 + version = "0.2.8" 1983 2046 source = "registry+https://github.com/rust-lang/crates.io-index" 1984 - checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 2047 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 1985 2048 1986 2049 [[package]] 1987 2050 name = "libsignal-protocol" 1988 2051 version = "0.1.0" 1989 - source = "git+https://github.com/signalapp/libsignal?tag=v0.28.1#86b2fcc427bf32530866f4e30b18707c1f3682f7" 2052 + source = "git+https://github.com/signalapp/libsignal?tag=v0.32.0#72f046fe19a5eac22c7abcf9917956f240759364" 1990 2053 dependencies = [ 1991 - "aes 0.7.5", 2054 + "aes 0.8.3", 1992 2055 "aes-gcm-siv", 1993 2056 "arrayref", 1994 2057 "async-trait", 1995 - "block-modes", 2058 + "ctr 0.9.2", 1996 2059 "curve25519-dalek", 1997 2060 "displaydoc", 1998 - "generic-array", 1999 2061 "hex", 2000 - "hkdf 0.11.0", 2001 - "hmac 0.11.0", 2002 - "itertools", 2062 + "hkdf", 2063 + "hmac", 2064 + "itertools 0.10.5", 2003 2065 "log", 2004 2066 "num_enum", 2005 2067 "pqcrypto-kyber", 2006 2068 "pqcrypto-traits", 2007 2069 "prost 0.9.0", 2008 2070 "prost-build 0.9.0", 2009 - "rand 0.7.3", 2010 - "sha2 0.9.9", 2071 + "rand", 2072 + "sha2", 2011 2073 "signal-crypto", 2074 + "static_assertions", 2012 2075 "subtle", 2013 2076 "thiserror", 2014 - "typenum", 2015 2077 "uuid", 2016 2078 "x25519-dalek", 2017 2079 ] ··· 2019 2081 [[package]] 2020 2082 name = "libsignal-service" 2021 2083 version = "0.1.0" 2022 - source = "git+https://github.com/whisperfish/libsignal-service-rs?rev=8789920#87899201123b8095cd0f30317620a6d5b7fd652b" 2084 + source = "git+https://github.com/whisperfish/libsignal-service-rs?rev=0a7987e#0a7987e59bbb9fb110e899ac09e8efb6e28bc46d" 2023 2085 dependencies = [ 2024 2086 "aes 0.7.5", 2025 2087 "aes-gcm", ··· 2032 2094 "derivative", 2033 2095 "futures", 2034 2096 "hex", 2035 - "hkdf 0.12.3", 2036 - "hmac 0.12.1", 2097 + "hkdf", 2098 + "hmac", 2037 2099 "libsignal-protocol", 2038 2100 "log", 2039 2101 "phonenumber", 2040 2102 "prost 0.10.4", 2041 2103 "prost-build 0.10.4", 2042 - "rand 0.7.3", 2104 + "rand", 2043 2105 "serde", 2044 2106 "serde_json", 2045 - "sha2 0.10.7", 2107 + "sha2", 2046 2108 "thiserror", 2047 2109 "url", 2048 2110 "uuid", ··· 2052 2114 [[package]] 2053 2115 name = "libsignal-service-hyper" 2054 2116 version = "0.1.0" 2055 - source = "git+https://github.com/whisperfish/libsignal-service-rs?rev=8789920#87899201123b8095cd0f30317620a6d5b7fd652b" 2117 + source = "git+https://github.com/whisperfish/libsignal-service-rs?rev=0a7987e#0a7987e59bbb9fb110e899ac09e8efb6e28bc46d" 2056 2118 dependencies = [ 2057 2119 "async-trait", 2058 2120 "async-tungstenite", 2059 - "base64 0.13.1", 2060 2121 "bytes", 2061 2122 "futures", 2062 2123 "headers", ··· 2118 2179 2119 2180 [[package]] 2120 2181 name = "linux-raw-sys" 2121 - version = "0.4.5" 2182 + version = "0.4.12" 2122 2183 source = "registry+https://github.com/rust-lang/crates.io-index" 2123 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 2184 + checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 2124 2185 2125 2186 [[package]] 2126 2187 name = "locale_config" ··· 2137 2198 2138 2199 [[package]] 2139 2200 name = "lock_api" 2140 - version = "0.4.10" 2201 + version = "0.4.11" 2141 2202 source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 2203 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 2143 2204 dependencies = [ 2144 2205 "autocfg", 2145 2206 "scopeguard", ··· 2150 2211 version = "0.4.20" 2151 2212 source = "registry+https://github.com/rust-lang/crates.io-index" 2152 2213 checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2153 - dependencies = [ 2154 - "value-bag", 2155 - ] 2156 2214 2157 2215 [[package]] 2158 2216 name = "lru-cache" ··· 2173 2231 ] 2174 2232 2175 2233 [[package]] 2176 - name = "matrix-sdk-store-encryption" 2177 - version = "0.2.0" 2178 - source = "registry+https://github.com/rust-lang/crates.io-index" 2179 - checksum = "9ddee75c3cca58f3a323283dc4e849d19d52988903f907ed0fb53dcad5d6fd25" 2180 - dependencies = [ 2181 - "blake3", 2182 - "chacha20poly1305", 2183 - "displaydoc", 2184 - "hmac 0.12.1", 2185 - "pbkdf2 0.11.0", 2186 - "rand 0.8.5", 2187 - "serde", 2188 - "serde_json", 2189 - "sha2 0.10.7", 2190 - "thiserror", 2191 - "zeroize", 2192 - ] 2193 - 2194 - [[package]] 2195 2234 name = "memchr" 2196 - version = "2.5.0" 2235 + version = "2.6.4" 2197 2236 source = "registry+https://github.com/rust-lang/crates.io-index" 2198 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2237 + checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2199 2238 2200 2239 [[package]] 2201 2240 name = "memoffset" ··· 2268 2307 2269 2308 [[package]] 2270 2309 name = "mio" 2271 - version = "0.8.8" 2310 + version = "0.8.10" 2272 2311 source = "registry+https://github.com/rust-lang/crates.io-index" 2273 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 2312 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 2274 2313 dependencies = [ 2275 2314 "libc", 2276 - "wasi 0.11.0+wasi-snapshot-preview1", 2277 - "windows-sys", 2315 + "wasi", 2316 + "windows-sys 0.48.0", 2278 2317 ] 2279 2318 2280 2319 [[package]] ··· 2293 2332 "mime_guess", 2294 2333 "percent-encoding", 2295 2334 "pin-project-lite", 2296 - "rand 0.8.5", 2335 + "rand", 2297 2336 "thiserror", 2298 2337 "tokio", 2299 2338 "tokio-util", ··· 2307 2346 2308 2347 [[package]] 2309 2348 name = "nix" 2310 - version = "0.26.2" 2349 + version = "0.26.4" 2311 2350 source = "registry+https://github.com/rust-lang/crates.io-index" 2312 - checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 2351 + checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 2313 2352 dependencies = [ 2314 2353 "bitflags 1.3.2", 2315 2354 "cfg-if", 2316 2355 "libc", 2317 2356 "memoffset 0.7.1", 2318 - "static_assertions", 2319 2357 ] 2320 2358 2321 2359 [[package]] ··· 2365 2403 "num-integer", 2366 2404 "num-iter", 2367 2405 "num-traits", 2368 - "rand 0.8.5", 2406 + "rand", 2369 2407 "serde", 2370 2408 "smallvec", 2371 2409 "zeroize", ··· 2426 2464 2427 2465 [[package]] 2428 2466 name = "num-traits" 2429 - version = "0.2.16" 2467 + version = "0.2.17" 2430 2468 source = "registry+https://github.com/rust-lang/crates.io-index" 2431 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 2469 + checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 2432 2470 dependencies = [ 2433 2471 "autocfg", 2434 2472 ] ··· 2445 2483 2446 2484 [[package]] 2447 2485 name = "num_enum" 2448 - version = "0.5.11" 2486 + version = "0.6.1" 2449 2487 source = "registry+https://github.com/rust-lang/crates.io-index" 2450 - checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2488 + checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" 2451 2489 dependencies = [ 2452 2490 "num_enum_derive", 2453 2491 ] 2454 2492 2455 2493 [[package]] 2456 2494 name = "num_enum_derive" 2457 - version = "0.5.11" 2495 + version = "0.6.1" 2458 2496 source = "registry+https://github.com/rust-lang/crates.io-index" 2459 - checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2497 + checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" 2460 2498 dependencies = [ 2461 - "proc-macro-crate", 2499 + "proc-macro-crate 1.3.1", 2462 2500 "proc-macro2", 2463 2501 "quote", 2464 - "syn 1.0.109", 2502 + "syn 2.0.42", 2465 2503 ] 2466 2504 2467 2505 [[package]] ··· 2495 2533 2496 2534 [[package]] 2497 2535 name = "object" 2498 - version = "0.32.0" 2536 + version = "0.32.2" 2499 2537 source = "registry+https://github.com/rust-lang/crates.io-index" 2500 - checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe" 2538 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2501 2539 dependencies = [ 2502 2540 "memchr", 2503 2541 ] 2504 2542 2505 2543 [[package]] 2506 2544 name = "once_cell" 2507 - version = "1.18.0" 2545 + version = "1.19.0" 2508 2546 source = "registry+https://github.com/rust-lang/crates.io-index" 2509 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2547 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2510 2548 2511 2549 [[package]] 2512 2550 name = "oncemutex" ··· 2521 2559 checksum = "220729ba847d98e1a9902c05e41dae79ce4a0b913dad68bc540dd3120a8c2b6b" 2522 2560 dependencies = [ 2523 2561 "aes 0.8.3", 2524 - "async-global-executor", 2525 - "async-std", 2526 2562 "byteorder", 2527 2563 "cbc", 2528 2564 "cipher 0.4.4", 2529 - "digest 0.10.7", 2565 + "digest", 2530 2566 "futures-util", 2531 - "hkdf 0.12.3", 2532 - "hmac 0.12.1", 2567 + "hkdf", 2568 + "hmac", 2533 2569 "num", 2534 2570 "num-bigint-dig", 2535 2571 "once_cell", 2536 - "pbkdf2 0.12.2", 2537 - "rand 0.8.5", 2572 + "pbkdf2", 2573 + "rand", 2538 2574 "serde", 2539 - "sha2 0.10.7", 2575 + "sha2", 2576 + "tokio", 2540 2577 "zbus", 2541 2578 "zeroize", 2542 2579 ] ··· 2565 2602 2566 2603 [[package]] 2567 2604 name = "pango" 2568 - version = "0.18.0" 2605 + version = "0.18.3" 2569 2606 source = "registry+https://github.com/rust-lang/crates.io-index" 2570 - checksum = "06a9e54b831d033206160096b825f2070cf5fda7e35167b1c01e9e774f9202d1" 2607 + checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 2571 2608 dependencies = [ 2572 2609 "gio", 2573 2610 "glib", ··· 2590 2627 2591 2628 [[package]] 2592 2629 name = "parking" 2593 - version = "2.1.0" 2630 + version = "2.2.0" 2594 2631 source = "registry+https://github.com/rust-lang/crates.io-index" 2595 - checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 2632 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 2596 2633 2597 2634 [[package]] 2598 2635 name = "parking_lot" ··· 2620 2657 ] 2621 2658 2622 2659 [[package]] 2623 - name = "password-hash" 2624 - version = "0.4.2" 2625 - source = "registry+https://github.com/rust-lang/crates.io-index" 2626 - checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2627 - dependencies = [ 2628 - "base64ct", 2629 - "rand_core 0.6.4", 2630 - "subtle", 2631 - ] 2632 - 2633 - [[package]] 2634 - name = "pbkdf2" 2635 - version = "0.11.0" 2636 - source = "registry+https://github.com/rust-lang/crates.io-index" 2637 - checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2638 - dependencies = [ 2639 - "digest 0.10.7", 2640 - "hmac 0.12.1", 2641 - "password-hash", 2642 - "sha2 0.10.7", 2643 - ] 2644 - 2645 - [[package]] 2646 2660 name = "pbkdf2" 2647 2661 version = "0.12.2" 2648 2662 source = "registry+https://github.com/rust-lang/crates.io-index" 2649 2663 checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 2650 2664 dependencies = [ 2651 - "digest 0.10.7", 2652 - "hmac 0.12.1", 2665 + "digest", 2666 + "hmac", 2653 2667 ] 2654 2668 2655 2669 [[package]] 2656 2670 name = "percent-encoding" 2657 - version = "2.3.0" 2671 + version = "2.3.1" 2658 2672 source = "registry+https://github.com/rust-lang/crates.io-index" 2659 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2673 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2660 2674 2661 2675 [[package]] 2662 2676 name = "petgraph" ··· 2670 2684 2671 2685 [[package]] 2672 2686 name = "phonenumber" 2673 - version = "0.3.2+8.13.9" 2687 + version = "0.3.3+8.13.9" 2674 2688 source = "registry+https://github.com/rust-lang/crates.io-index" 2675 - checksum = "34749f64ea9d76f10cdc8a859588b57775f59177c7dd91f744d620bd62982d6f" 2689 + checksum = "635f3e6288e4f01c049d89332a031bd74f25d64b6fb94703ca966e819488cd06" 2676 2690 dependencies = [ 2677 2691 "bincode", 2678 2692 "either", 2679 2693 "fnv", 2680 - "itertools", 2694 + "itertools 0.11.0", 2681 2695 "lazy_static", 2682 2696 "nom", 2683 2697 "quick-xml", ··· 2685 2699 "regex-cache", 2686 2700 "serde", 2687 2701 "serde_derive", 2702 + "strum", 2688 2703 "thiserror", 2689 2704 ] 2690 2705 ··· 2701 2716 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2702 2717 2703 2718 [[package]] 2719 + name = "piper" 2720 + version = "0.2.1" 2721 + source = "registry+https://github.com/rust-lang/crates.io-index" 2722 + checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 2723 + dependencies = [ 2724 + "atomic-waker", 2725 + "fastrand 2.0.1", 2726 + "futures-io", 2727 + ] 2728 + 2729 + [[package]] 2704 2730 name = "pkg-config" 2705 - version = "0.3.27" 2731 + version = "0.3.28" 2732 + source = "registry+https://github.com/rust-lang/crates.io-index" 2733 + checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" 2734 + 2735 + [[package]] 2736 + name = "platforms" 2737 + version = "3.2.0" 2706 2738 source = "registry+https://github.com/rust-lang/crates.io-index" 2707 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 2739 + checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" 2708 2740 2709 2741 [[package]] 2710 2742 name = "png" ··· 2734 2766 [[package]] 2735 2767 name = "poksho" 2736 2768 version = "0.7.0" 2737 - source = "git+https://github.com/signalapp/libsignal?tag=v0.28.1#86b2fcc427bf32530866f4e30b18707c1f3682f7" 2769 + source = "git+https://github.com/signalapp/libsignal?tag=v0.32.0#72f046fe19a5eac22c7abcf9917956f240759364" 2738 2770 dependencies = [ 2739 2771 "curve25519-dalek", 2740 - "hmac 0.11.0", 2741 - "sha2 0.9.9", 2772 + "hmac", 2773 + "sha2", 2774 + "subtle", 2742 2775 ] 2743 2776 2744 2777 [[package]] ··· 2754 2787 "libc", 2755 2788 "log", 2756 2789 "pin-project-lite", 2757 - "windows-sys", 2790 + "windows-sys 0.48.0", 2791 + ] 2792 + 2793 + [[package]] 2794 + name = "polling" 2795 + version = "3.3.1" 2796 + source = "registry+https://github.com/rust-lang/crates.io-index" 2797 + checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" 2798 + dependencies = [ 2799 + "cfg-if", 2800 + "concurrent-queue", 2801 + "pin-project-lite", 2802 + "rustix 0.38.28", 2803 + "tracing", 2804 + "windows-sys 0.52.0", 2758 2805 ] 2759 2806 2760 2807 [[package]] 2761 2808 name = "poly1305" 2762 - version = "0.7.2" 2809 + version = "0.8.0" 2763 2810 source = "registry+https://github.com/rust-lang/crates.io-index" 2764 - checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede" 2811 + checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 2765 2812 dependencies = [ 2766 2813 "cpufeatures", 2767 2814 "opaque-debug", 2768 - "universal-hash", 2815 + "universal-hash 0.5.1", 2769 2816 ] 2770 2817 2771 2818 [[package]] ··· 2777 2824 "cfg-if", 2778 2825 "cpufeatures", 2779 2826 "opaque-debug", 2780 - "universal-hash", 2827 + "universal-hash 0.4.0", 2828 + ] 2829 + 2830 + [[package]] 2831 + name = "polyval" 2832 + version = "0.6.1" 2833 + source = "registry+https://github.com/rust-lang/crates.io-index" 2834 + checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb" 2835 + dependencies = [ 2836 + "cfg-if", 2837 + "cpufeatures", 2838 + "opaque-debug", 2839 + "universal-hash 0.5.1", 2781 2840 ] 2782 2841 2783 2842 [[package]] ··· 2794 2853 dependencies = [ 2795 2854 "cc", 2796 2855 "dunce", 2797 - "getrandom 0.2.10", 2856 + "getrandom", 2798 2857 "libc", 2799 2858 ] 2800 2859 2801 2860 [[package]] 2802 2861 name = "pqcrypto-kyber" 2803 - version = "0.7.6" 2862 + version = "0.7.8" 2804 2863 source = "registry+https://github.com/rust-lang/crates.io-index" 2805 - checksum = "fe9d9695c19e525d5366c913562a331fbeef9a2ad801d9a9ded61a0e4c2fe0fb" 2864 + checksum = "e205df07793e278e4a77c44db68b7d0e81064984cfcf508f24ae68cde63b6609" 2806 2865 dependencies = [ 2807 2866 "cc", 2808 2867 "glob", ··· 2813 2872 2814 2873 [[package]] 2815 2874 name = "pqcrypto-traits" 2816 - version = "0.3.4" 2875 + version = "0.3.5" 2817 2876 source = "registry+https://github.com/rust-lang/crates.io-index" 2818 - checksum = "97e91cb6af081c6daad5fa705f8adb0634c027662052cb3174bdf2957bf07e25" 2877 + checksum = "94e851c7654eed9e68d7d27164c454961a616cf8c203d500607ef22c737b51bb" 2819 2878 2820 2879 [[package]] 2821 2880 name = "presage" 2822 2881 version = "0.6.0-dev" 2823 - source = "git+https://github.com/MarcusGrass/presage?rev=d6d8fff#d6d8fff5f5e6429e6fe9d3c6d388323d094fdab6" 2882 + source = "git+https://github.com/Schmiddiii/presage?rev=1166349dbe47be3b23a2b698ace5b51c760a6e9d#1166349dbe47be3b23a2b698ace5b51c760a6e9d" 2824 2883 dependencies = [ 2825 - "base64 0.12.3", 2884 + "base64 0.21.5", 2826 2885 "futures", 2827 2886 "libsignal-service", 2828 2887 "libsignal-service-hyper", 2829 2888 "log", 2830 2889 "parking_lot", 2831 - "rand 0.7.3", 2890 + "rand", 2832 2891 "serde", 2833 2892 "serde_json", 2893 + "sha2", 2834 2894 "thiserror", 2835 2895 "tokio", 2836 2896 "url", 2837 2897 ] 2838 2898 2839 2899 [[package]] 2900 + name = "presage-store-cipher" 2901 + version = "0.1.0" 2902 + source = "git+https://github.com/Schmiddiii/presage?rev=1166349dbe47be3b23a2b698ace5b51c760a6e9d#1166349dbe47be3b23a2b698ace5b51c760a6e9d" 2903 + dependencies = [ 2904 + "blake3", 2905 + "chacha20poly1305", 2906 + "hmac", 2907 + "pbkdf2", 2908 + "rand", 2909 + "serde", 2910 + "serde_json", 2911 + "sha2", 2912 + "thiserror", 2913 + "zeroize", 2914 + ] 2915 + 2916 + [[package]] 2840 2917 name = "presage-store-sled" 2841 2918 version = "0.6.0-dev" 2842 - source = "git+https://github.com/MarcusGrass/presage?rev=d6d8fff#d6d8fff5f5e6429e6fe9d3c6d388323d094fdab6" 2919 + source = "git+https://github.com/Schmiddiii/presage?rev=1166349dbe47be3b23a2b698ace5b51c760a6e9d#1166349dbe47be3b23a2b698ace5b51c760a6e9d" 2843 2920 dependencies = [ 2844 2921 "async-trait", 2845 2922 "base64 0.12.3", 2846 2923 "fs_extra", 2847 2924 "log", 2848 - "matrix-sdk-store-encryption", 2849 2925 "presage", 2926 + "presage-store-cipher", 2850 2927 "prost 0.10.4", 2851 2928 "prost-build 0.10.4", 2929 + "quickcheck_macros", 2852 2930 "serde", 2853 2931 "serde_json", 2854 - "sha2 0.10.7", 2932 + "sha2", 2855 2933 "sled", 2856 2934 "thiserror", 2857 2935 ] ··· 2863 2941 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2864 2942 dependencies = [ 2865 2943 "once_cell", 2866 - "toml_edit", 2944 + "toml_edit 0.19.15", 2945 + ] 2946 + 2947 + [[package]] 2948 + name = "proc-macro-crate" 2949 + version = "2.0.1" 2950 + source = "registry+https://github.com/rust-lang/crates.io-index" 2951 + checksum = "97dc5fea232fc28d2f597b37c4876b348a40e33f3b02cc975c8d006d78d94b1a" 2952 + dependencies = [ 2953 + "toml_datetime", 2954 + "toml_edit 0.20.2", 2867 2955 ] 2868 2956 2869 2957 [[package]] ··· 2892 2980 2893 2981 [[package]] 2894 2982 name = "proc-macro2" 2895 - version = "1.0.66" 2983 + version = "1.0.71" 2896 2984 source = "registry+https://github.com/rust-lang/crates.io-index" 2897 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 2985 + checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8" 2898 2986 dependencies = [ 2899 2987 "unicode-ident", 2900 2988 ] ··· 2927 3015 dependencies = [ 2928 3016 "bytes", 2929 3017 "heck 0.3.3", 2930 - "itertools", 3018 + "itertools 0.10.5", 2931 3019 "lazy_static", 2932 3020 "log", 2933 3021 "multimap", ··· 2949 3037 "cfg-if", 2950 3038 "cmake", 2951 3039 "heck 0.4.1", 2952 - "itertools", 3040 + "itertools 0.10.5", 2953 3041 "lazy_static", 2954 3042 "log", 2955 3043 "multimap", ··· 2968 3056 checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe" 2969 3057 dependencies = [ 2970 3058 "anyhow", 2971 - "itertools", 3059 + "itertools 0.10.5", 2972 3060 "proc-macro2", 2973 3061 "quote", 2974 3062 "syn 1.0.109", ··· 2981 3069 checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc" 2982 3070 dependencies = [ 2983 3071 "anyhow", 2984 - "itertools", 3072 + "itertools 0.10.5", 2985 3073 "proc-macro2", 2986 3074 "quote", 2987 3075 "syn 1.0.109", ··· 3008 3096 ] 3009 3097 3010 3098 [[package]] 3099 + name = "qoi" 3100 + version = "0.4.1" 3101 + source = "registry+https://github.com/rust-lang/crates.io-index" 3102 + checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 3103 + dependencies = [ 3104 + "bytemuck", 3105 + ] 3106 + 3107 + [[package]] 3011 3108 name = "qrcode-generator" 3012 - version = "4.1.8" 3109 + version = "4.1.9" 3013 3110 source = "registry+https://github.com/rust-lang/crates.io-index" 3014 - checksum = "fc713c23eb7e1a5f18b84e72be88b82a617ee25783a524a38f0caa4c986b2d76" 3111 + checksum = "1d06cb9646c7a14096231a2474d7f21e5e8c13de090c68d13bde6157cfe7f159" 3015 3112 dependencies = [ 3016 3113 "html-escape", 3017 3114 "image 0.24.7", ··· 3034 3131 ] 3035 3132 3036 3133 [[package]] 3037 - name = "quote" 3038 - version = "1.0.33" 3134 + name = "quickcheck_macros" 3135 + version = "1.0.0" 3039 3136 source = "registry+https://github.com/rust-lang/crates.io-index" 3040 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3137 + checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9" 3041 3138 dependencies = [ 3042 3139 "proc-macro2", 3140 + "quote", 3141 + "syn 1.0.109", 3043 3142 ] 3044 3143 3045 3144 [[package]] 3046 - name = "rand" 3047 - version = "0.7.3" 3145 + name = "quote" 3146 + version = "1.0.33" 3048 3147 source = "registry+https://github.com/rust-lang/crates.io-index" 3049 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3148 + checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3050 3149 dependencies = [ 3051 - "getrandom 0.1.16", 3052 - "libc", 3053 - "rand_chacha 0.2.2", 3054 - "rand_core 0.5.1", 3055 - "rand_hc", 3150 + "proc-macro2", 3056 3151 ] 3057 3152 3058 3153 [[package]] ··· 3062 3157 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3063 3158 dependencies = [ 3064 3159 "libc", 3065 - "rand_chacha 0.3.1", 3066 - "rand_core 0.6.4", 3067 - ] 3068 - 3069 - [[package]] 3070 - name = "rand_chacha" 3071 - version = "0.2.2" 3072 - source = "registry+https://github.com/rust-lang/crates.io-index" 3073 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3074 - dependencies = [ 3075 - "ppv-lite86", 3076 - "rand_core 0.5.1", 3160 + "rand_chacha", 3161 + "rand_core", 3077 3162 ] 3078 3163 3079 3164 [[package]] ··· 3083 3168 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3084 3169 dependencies = [ 3085 3170 "ppv-lite86", 3086 - "rand_core 0.6.4", 3087 - ] 3088 - 3089 - [[package]] 3090 - name = "rand_core" 3091 - version = "0.5.1" 3092 - source = "registry+https://github.com/rust-lang/crates.io-index" 3093 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3094 - dependencies = [ 3095 - "getrandom 0.1.16", 3171 + "rand_core", 3096 3172 ] 3097 3173 3098 3174 [[package]] ··· 3101 3177 source = "registry+https://github.com/rust-lang/crates.io-index" 3102 3178 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3103 3179 dependencies = [ 3104 - "getrandom 0.2.10", 3105 - ] 3106 - 3107 - [[package]] 3108 - name = "rand_hc" 3109 - version = "0.2.0" 3110 - source = "registry+https://github.com/rust-lang/crates.io-index" 3111 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3112 - dependencies = [ 3113 - "rand_core 0.5.1", 3180 + "getrandom", 3114 3181 ] 3115 3182 3116 3183 [[package]] 3117 3184 name = "rayon" 3118 - version = "1.7.0" 3185 + version = "1.8.0" 3119 3186 source = "registry+https://github.com/rust-lang/crates.io-index" 3120 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 3187 + checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3121 3188 dependencies = [ 3122 3189 "either", 3123 3190 "rayon-core", ··· 3125 3192 3126 3193 [[package]] 3127 3194 name = "rayon-core" 3128 - version = "1.11.0" 3195 + version = "1.12.0" 3129 3196 source = "registry+https://github.com/rust-lang/crates.io-index" 3130 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 3197 + checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3131 3198 dependencies = [ 3132 - "crossbeam-channel", 3133 3199 "crossbeam-deque", 3134 3200 "crossbeam-utils", 3135 - "num_cpus", 3136 3201 ] 3137 3202 3138 3203 [[package]] ··· 3146 3211 3147 3212 [[package]] 3148 3213 name = "redox_syscall" 3149 - version = "0.3.5" 3214 + version = "0.4.1" 3150 3215 source = "registry+https://github.com/rust-lang/crates.io-index" 3151 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3216 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3152 3217 dependencies = [ 3153 3218 "bitflags 1.3.2", 3154 3219 ] 3155 3220 3156 3221 [[package]] 3157 3222 name = "regex" 3158 - version = "1.9.3" 3223 + version = "1.10.2" 3159 3224 source = "registry+https://github.com/rust-lang/crates.io-index" 3160 - checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 3225 + checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 3161 3226 dependencies = [ 3162 3227 "aho-corasick", 3163 3228 "memchr", 3164 3229 "regex-automata", 3165 - "regex-syntax 0.7.4", 3230 + "regex-syntax 0.8.2", 3166 3231 ] 3167 3232 3168 3233 [[package]] 3169 3234 name = "regex-automata" 3170 - version = "0.3.6" 3235 + version = "0.4.3" 3171 3236 source = "registry+https://github.com/rust-lang/crates.io-index" 3172 - checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 3237 + checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 3173 3238 dependencies = [ 3174 3239 "aho-corasick", 3175 3240 "memchr", 3176 - "regex-syntax 0.7.4", 3241 + "regex-syntax 0.8.2", 3177 3242 ] 3178 3243 3179 3244 [[package]] ··· 3196 3261 3197 3262 [[package]] 3198 3263 name = "regex-syntax" 3199 - version = "0.7.4" 3264 + version = "0.8.2" 3200 3265 source = "registry+https://github.com/rust-lang/crates.io-index" 3201 - checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 3266 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 3202 3267 3203 3268 [[package]] 3204 3269 name = "ring" 3205 - version = "0.16.20" 3270 + version = "0.17.7" 3206 3271 source = "registry+https://github.com/rust-lang/crates.io-index" 3207 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3272 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 3208 3273 dependencies = [ 3209 3274 "cc", 3275 + "getrandom", 3210 3276 "libc", 3211 - "once_cell", 3212 - "spin", 3277 + "spin 0.9.8", 3213 3278 "untrusted", 3214 - "web-sys", 3215 - "winapi", 3279 + "windows-sys 0.48.0", 3216 3280 ] 3217 3281 3218 3282 [[package]] ··· 3232 3296 3233 3297 [[package]] 3234 3298 name = "rustix" 3235 - version = "0.37.23" 3299 + version = "0.37.27" 3236 3300 source = "registry+https://github.com/rust-lang/crates.io-index" 3237 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 3301 + checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 3238 3302 dependencies = [ 3239 3303 "bitflags 1.3.2", 3240 3304 "errno", 3241 3305 "io-lifetimes", 3242 3306 "libc", 3243 3307 "linux-raw-sys 0.3.8", 3244 - "windows-sys", 3308 + "windows-sys 0.48.0", 3245 3309 ] 3246 3310 3247 3311 [[package]] 3248 3312 name = "rustix" 3249 - version = "0.38.9" 3313 + version = "0.38.28" 3250 3314 source = "registry+https://github.com/rust-lang/crates.io-index" 3251 - checksum = "9bfe0f2582b4931a45d1fa608f8a8722e8b3c7ac54dd6d5f3b3212791fedef49" 3315 + checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" 3252 3316 dependencies = [ 3253 - "bitflags 2.4.0", 3317 + "bitflags 2.4.1", 3254 3318 "errno", 3255 3319 "libc", 3256 - "linux-raw-sys 0.4.5", 3257 - "windows-sys", 3320 + "linux-raw-sys 0.4.12", 3321 + "windows-sys 0.52.0", 3258 3322 ] 3259 3323 3260 3324 [[package]] 3261 3325 name = "rustls" 3262 - version = "0.20.8" 3326 + version = "0.21.10" 3263 3327 source = "registry+https://github.com/rust-lang/crates.io-index" 3264 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 3328 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 3265 3329 dependencies = [ 3266 3330 "log", 3267 3331 "ring", 3332 + "rustls-webpki", 3268 3333 "sct", 3269 - "webpki", 3270 3334 ] 3271 3335 3272 3336 [[package]] ··· 3276 3340 checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 3277 3341 dependencies = [ 3278 3342 "openssl-probe", 3279 - "rustls-pemfile 1.0.3", 3343 + "rustls-pemfile 1.0.4", 3280 3344 "schannel", 3281 3345 "security-framework", 3282 3346 ] ··· 3292 3356 3293 3357 [[package]] 3294 3358 name = "rustls-pemfile" 3295 - version = "1.0.3" 3359 + version = "1.0.4" 3360 + source = "registry+https://github.com/rust-lang/crates.io-index" 3361 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3362 + dependencies = [ 3363 + "base64 0.21.5", 3364 + ] 3365 + 3366 + [[package]] 3367 + name = "rustls-webpki" 3368 + version = "0.101.7" 3296 3369 source = "registry+https://github.com/rust-lang/crates.io-index" 3297 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 3370 + checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3298 3371 dependencies = [ 3299 - "base64 0.21.2", 3372 + "ring", 3373 + "untrusted", 3300 3374 ] 3301 3375 3302 3376 [[package]] ··· 3307 3381 3308 3382 [[package]] 3309 3383 name = "ryu" 3310 - version = "1.0.15" 3384 + version = "1.0.16" 3311 3385 source = "registry+https://github.com/rust-lang/crates.io-index" 3312 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 3386 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 3313 3387 3314 3388 [[package]] 3315 3389 name = "schannel" ··· 3317 3391 source = "registry+https://github.com/rust-lang/crates.io-index" 3318 3392 checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 3319 3393 dependencies = [ 3320 - "windows-sys", 3394 + "windows-sys 0.48.0", 3321 3395 ] 3322 3396 3323 3397 [[package]] ··· 3334 3408 3335 3409 [[package]] 3336 3410 name = "sct" 3337 - version = "0.7.0" 3411 + version = "0.7.1" 3338 3412 source = "registry+https://github.com/rust-lang/crates.io-index" 3339 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 3413 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3340 3414 dependencies = [ 3341 3415 "ring", 3342 3416 "untrusted", ··· 3367 3441 3368 3442 [[package]] 3369 3443 name = "semver" 3370 - version = "1.0.18" 3444 + version = "1.0.20" 3371 3445 source = "registry+https://github.com/rust-lang/crates.io-index" 3372 - checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 3446 + checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 3373 3447 3374 3448 [[package]] 3375 3449 name = "serde" 3376 - version = "1.0.187" 3450 + version = "1.0.193" 3377 3451 source = "registry+https://github.com/rust-lang/crates.io-index" 3378 - checksum = "30a7fe14252655bd1e578af19f5fa00fe02fd0013b100ca6b49fde31c41bae4c" 3452 + checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 3379 3453 dependencies = [ 3380 3454 "serde_derive", 3381 3455 ] 3382 3456 3383 3457 [[package]] 3384 3458 name = "serde_derive" 3385 - version = "1.0.187" 3459 + version = "1.0.193" 3386 3460 source = "registry+https://github.com/rust-lang/crates.io-index" 3387 - checksum = "e46b2a6ca578b3f1d4501b12f78ed4692006d79d82a1a7c561c12dbc3d625eb8" 3461 + checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 3388 3462 dependencies = [ 3389 3463 "proc-macro2", 3390 3464 "quote", 3391 - "syn 2.0.29", 3465 + "syn 2.0.42", 3392 3466 ] 3393 3467 3394 3468 [[package]] 3395 3469 name = "serde_json" 3396 - version = "1.0.105" 3470 + version = "1.0.108" 3397 3471 source = "registry+https://github.com/rust-lang/crates.io-index" 3398 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 3472 + checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 3399 3473 dependencies = [ 3400 3474 "itoa", 3401 3475 "ryu", ··· 3404 3478 3405 3479 [[package]] 3406 3480 name = "serde_repr" 3407 - version = "0.1.16" 3481 + version = "0.1.17" 3408 3482 source = "registry+https://github.com/rust-lang/crates.io-index" 3409 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 3483 + checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 3410 3484 dependencies = [ 3411 3485 "proc-macro2", 3412 3486 "quote", 3413 - "syn 2.0.29", 3487 + "syn 2.0.42", 3414 3488 ] 3415 3489 3416 3490 [[package]] 3417 3491 name = "serde_spanned" 3418 - version = "0.6.3" 3492 + version = "0.6.5" 3419 3493 source = "registry+https://github.com/rust-lang/crates.io-index" 3420 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 3494 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 3421 3495 dependencies = [ 3422 3496 "serde", 3423 3497 ] 3424 3498 3425 3499 [[package]] 3426 - name = "sha-1" 3427 - version = "0.9.8" 3428 - source = "registry+https://github.com/rust-lang/crates.io-index" 3429 - checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" 3430 - dependencies = [ 3431 - "block-buffer 0.9.0", 3432 - "cfg-if", 3433 - "cpufeatures", 3434 - "digest 0.9.0", 3435 - "opaque-debug", 3436 - ] 3437 - 3438 - [[package]] 3439 - name = "sha-1" 3440 - version = "0.10.1" 3441 - source = "registry+https://github.com/rust-lang/crates.io-index" 3442 - checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 3443 - dependencies = [ 3444 - "cfg-if", 3445 - "cpufeatures", 3446 - "digest 0.10.7", 3447 - ] 3448 - 3449 - [[package]] 3450 3500 name = "sha1" 3451 - version = "0.10.5" 3452 - source = "registry+https://github.com/rust-lang/crates.io-index" 3453 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 3454 - dependencies = [ 3455 - "cfg-if", 3456 - "cpufeatures", 3457 - "digest 0.10.7", 3458 - ] 3459 - 3460 - [[package]] 3461 - name = "sha2" 3462 - version = "0.9.9" 3501 + version = "0.10.6" 3463 3502 source = "registry+https://github.com/rust-lang/crates.io-index" 3464 - checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 3503 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3465 3504 dependencies = [ 3466 - "block-buffer 0.9.0", 3467 3505 "cfg-if", 3468 3506 "cpufeatures", 3469 - "digest 0.9.0", 3470 - "opaque-debug", 3507 + "digest", 3471 3508 ] 3472 3509 3473 3510 [[package]] 3474 3511 name = "sha2" 3475 - version = "0.10.7" 3512 + version = "0.10.8" 3476 3513 source = "registry+https://github.com/rust-lang/crates.io-index" 3477 - checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 3514 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 3478 3515 dependencies = [ 3479 3516 "cfg-if", 3480 3517 "cpufeatures", 3481 - "digest 0.10.7", 3518 + "digest", 3482 3519 ] 3483 3520 3484 3521 [[package]] 3485 3522 name = "signal-crypto" 3486 3523 version = "0.1.0" 3487 - source = "git+https://github.com/signalapp/libsignal?tag=v0.28.1#86b2fcc427bf32530866f4e30b18707c1f3682f7" 3524 + source = "git+https://github.com/signalapp/libsignal?tag=v0.32.0#72f046fe19a5eac22c7abcf9917956f240759364" 3488 3525 dependencies = [ 3489 - "aes 0.7.5", 3490 - "block-modes", 3526 + "aes 0.8.3", 3527 + "cbc", 3528 + "ctr 0.9.2", 3491 3529 "displaydoc", 3492 - "generic-array", 3493 - "ghash", 3494 - "hmac 0.11.0", 3495 - "sha-1 0.9.8", 3496 - "sha2 0.9.9", 3530 + "ghash 0.5.0", 3531 + "hmac", 3532 + "sha1", 3533 + "sha2", 3497 3534 "subtle", 3498 3535 "thiserror", 3499 - ] 3500 - 3501 - [[package]] 3502 - name = "signal-hook" 3503 - version = "0.3.17" 3504 - source = "registry+https://github.com/rust-lang/crates.io-index" 3505 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 3506 - dependencies = [ 3507 - "libc", 3508 - "signal-hook-registry", 3509 3536 ] 3510 3537 3511 3538 [[package]] ··· 3550 3577 3551 3578 [[package]] 3552 3579 name = "smallvec" 3553 - version = "1.11.0" 3580 + version = "1.11.2" 3554 3581 source = "registry+https://github.com/rust-lang/crates.io-index" 3555 - checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 3582 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 3556 3583 3557 3584 [[package]] 3558 3585 name = "socket2" 3559 - version = "0.4.9" 3586 + version = "0.4.10" 3560 3587 source = "registry+https://github.com/rust-lang/crates.io-index" 3561 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 3588 + checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 3562 3589 dependencies = [ 3563 3590 "libc", 3564 3591 "winapi", ··· 3566 3593 3567 3594 [[package]] 3568 3595 name = "socket2" 3569 - version = "0.5.3" 3596 + version = "0.5.5" 3570 3597 source = "registry+https://github.com/rust-lang/crates.io-index" 3571 - checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 3598 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 3572 3599 dependencies = [ 3573 3600 "libc", 3574 - "windows-sys", 3601 + "windows-sys 0.48.0", 3575 3602 ] 3576 3603 3577 3604 [[package]] ··· 3616 3643 checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3617 3644 3618 3645 [[package]] 3646 + name = "spin" 3647 + version = "0.9.8" 3648 + source = "registry+https://github.com/rust-lang/crates.io-index" 3649 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3650 + dependencies = [ 3651 + "lock_api", 3652 + ] 3653 + 3654 + [[package]] 3619 3655 name = "static_assertions" 3620 3656 version = "1.1.0" 3621 3657 source = "registry+https://github.com/rust-lang/crates.io-index" 3622 3658 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3623 3659 3624 3660 [[package]] 3661 + name = "strum" 3662 + version = "0.24.1" 3663 + source = "registry+https://github.com/rust-lang/crates.io-index" 3664 + checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 3665 + dependencies = [ 3666 + "strum_macros", 3667 + ] 3668 + 3669 + [[package]] 3670 + name = "strum_macros" 3671 + version = "0.24.3" 3672 + source = "registry+https://github.com/rust-lang/crates.io-index" 3673 + checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 3674 + dependencies = [ 3675 + "heck 0.4.1", 3676 + "proc-macro2", 3677 + "quote", 3678 + "rustversion", 3679 + "syn 1.0.109", 3680 + ] 3681 + 3682 + [[package]] 3625 3683 name = "subtle" 3626 - version = "2.4.1" 3684 + version = "2.5.0" 3627 3685 source = "registry+https://github.com/rust-lang/crates.io-index" 3628 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3686 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 3629 3687 3630 3688 [[package]] 3631 3689 name = "syn" ··· 3640 3698 3641 3699 [[package]] 3642 3700 name = "syn" 3643 - version = "2.0.29" 3701 + version = "2.0.42" 3644 3702 source = "registry+https://github.com/rust-lang/crates.io-index" 3645 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 3703 + checksum = "5b7d0a2c048d661a1a59fcd7355baa232f7ed34e0ee4df2eef3c1c1c0d3852d8" 3646 3704 dependencies = [ 3647 3705 "proc-macro2", 3648 3706 "quote", ··· 3663 3721 3664 3722 [[package]] 3665 3723 name = "system-deps" 3666 - version = "6.1.1" 3724 + version = "6.2.0" 3667 3725 source = "registry+https://github.com/rust-lang/crates.io-index" 3668 - checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" 3726 + checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 3669 3727 dependencies = [ 3670 3728 "cfg-expr", 3671 3729 "heck 0.4.1", ··· 3676 3734 3677 3735 [[package]] 3678 3736 name = "target-lexicon" 3679 - version = "0.12.11" 3737 + version = "0.12.12" 3680 3738 source = "registry+https://github.com/rust-lang/crates.io-index" 3681 - checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 3739 + checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" 3682 3740 3683 3741 [[package]] 3684 3742 name = "temp-dir" 3685 - version = "0.1.11" 3743 + version = "0.1.12" 3686 3744 source = "registry+https://github.com/rust-lang/crates.io-index" 3687 - checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab" 3745 + checksum = "dd16aa9ffe15fe021c6ee3766772132c6e98dfa395a167e16864f61a9cfb71d6" 3688 3746 3689 3747 [[package]] 3690 3748 name = "tempfile" 3691 - version = "3.8.0" 3749 + version = "3.8.1" 3692 3750 source = "registry+https://github.com/rust-lang/crates.io-index" 3693 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 3751 + checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 3694 3752 dependencies = [ 3695 3753 "cfg-if", 3696 - "fastrand 2.0.0", 3697 - "redox_syscall 0.3.5", 3698 - "rustix 0.38.9", 3699 - "windows-sys", 3754 + "fastrand 2.0.1", 3755 + "redox_syscall 0.4.1", 3756 + "rustix 0.38.28", 3757 + "windows-sys 0.48.0", 3700 3758 ] 3701 3759 3702 3760 [[package]] 3703 3761 name = "termcolor" 3704 - version = "1.2.0" 3762 + version = "1.4.0" 3705 3763 source = "registry+https://github.com/rust-lang/crates.io-index" 3706 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 3764 + checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 3707 3765 dependencies = [ 3708 3766 "winapi-util", 3709 3767 ] 3710 3768 3711 3769 [[package]] 3712 3770 name = "thiserror" 3713 - version = "1.0.47" 3771 + version = "1.0.51" 3714 3772 source = "registry+https://github.com/rust-lang/crates.io-index" 3715 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 3773 + checksum = "f11c217e1416d6f036b870f14e0413d480dbf28edbee1f877abaf0206af43bb7" 3716 3774 dependencies = [ 3717 3775 "thiserror-impl", 3718 3776 ] 3719 3777 3720 3778 [[package]] 3721 3779 name = "thiserror-impl" 3722 - version = "1.0.47" 3780 + version = "1.0.51" 3723 3781 source = "registry+https://github.com/rust-lang/crates.io-index" 3724 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 3782 + checksum = "01742297787513b79cf8e29d1056ede1313e2420b7b3b15d0a768b4921f549df" 3725 3783 dependencies = [ 3726 3784 "proc-macro2", 3727 3785 "quote", 3728 - "syn 2.0.29", 3786 + "syn 2.0.42", 3729 3787 ] 3730 3788 3731 3789 [[package]] ··· 3734 3792 source = "registry+https://github.com/rust-lang/crates.io-index" 3735 3793 checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437" 3736 3794 dependencies = [ 3737 - "jpeg-decoder", 3795 + "jpeg-decoder 0.1.22", 3738 3796 "miniz_oxide 0.4.4", 3739 3797 "weezl", 3740 3798 ] 3741 3799 3742 3800 [[package]] 3801 + name = "tiff" 3802 + version = "0.9.0" 3803 + source = "registry+https://github.com/rust-lang/crates.io-index" 3804 + checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 3805 + dependencies = [ 3806 + "flate2", 3807 + "jpeg-decoder 0.3.0", 3808 + "weezl", 3809 + ] 3810 + 3811 + [[package]] 3743 3812 name = "tinyvec" 3744 3813 version = "1.6.0" 3745 3814 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3756 3825 3757 3826 [[package]] 3758 3827 name = "tokio" 3759 - version = "1.32.0" 3828 + version = "1.35.1" 3760 3829 source = "registry+https://github.com/rust-lang/crates.io-index" 3761 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 3830 + checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 3762 3831 dependencies = [ 3763 3832 "backtrace", 3833 + "bytes", 3764 3834 "libc", 3765 3835 "mio", 3766 3836 "num_cpus", 3767 3837 "pin-project-lite", 3768 - "socket2 0.5.3", 3838 + "signal-hook-registry", 3839 + "socket2 0.5.5", 3769 3840 "tokio-macros", 3770 - "windows-sys", 3841 + "tracing", 3842 + "windows-sys 0.48.0", 3771 3843 ] 3772 3844 3773 3845 [[package]] ··· 3782 3854 3783 3855 [[package]] 3784 3856 name = "tokio-macros" 3785 - version = "2.1.0" 3857 + version = "2.2.0" 3786 3858 source = "registry+https://github.com/rust-lang/crates.io-index" 3787 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 3859 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 3788 3860 dependencies = [ 3789 3861 "proc-macro2", 3790 3862 "quote", 3791 - "syn 2.0.29", 3863 + "syn 2.0.42", 3792 3864 ] 3793 3865 3794 3866 [[package]] 3795 3867 name = "tokio-rustls" 3796 - version = "0.23.4" 3868 + version = "0.24.1" 3797 3869 source = "registry+https://github.com/rust-lang/crates.io-index" 3798 - checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 3870 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 3799 3871 dependencies = [ 3800 3872 "rustls", 3801 3873 "tokio", 3802 - "webpki", 3803 3874 ] 3804 3875 3805 3876 [[package]] ··· 3818 3889 3819 3890 [[package]] 3820 3891 name = "toml" 3821 - version = "0.7.6" 3892 + version = "0.8.2" 3822 3893 source = "registry+https://github.com/rust-lang/crates.io-index" 3823 - checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 3894 + checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 3824 3895 dependencies = [ 3825 3896 "serde", 3826 3897 "serde_spanned", 3827 3898 "toml_datetime", 3828 - "toml_edit", 3899 + "toml_edit 0.20.2", 3829 3900 ] 3830 3901 3831 3902 [[package]] ··· 3839 3910 3840 3911 [[package]] 3841 3912 name = "toml_edit" 3842 - version = "0.19.14" 3913 + version = "0.19.15" 3914 + source = "registry+https://github.com/rust-lang/crates.io-index" 3915 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3916 + dependencies = [ 3917 + "indexmap", 3918 + "toml_datetime", 3919 + "winnow", 3920 + ] 3921 + 3922 + [[package]] 3923 + name = "toml_edit" 3924 + version = "0.20.2" 3843 3925 source = "registry+https://github.com/rust-lang/crates.io-index" 3844 - checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 3926 + checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 3845 3927 dependencies = [ 3846 3928 "indexmap", 3847 3929 "serde", ··· 3858 3940 3859 3941 [[package]] 3860 3942 name = "tracing" 3861 - version = "0.1.37" 3943 + version = "0.1.40" 3862 3944 source = "registry+https://github.com/rust-lang/crates.io-index" 3863 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 3945 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3864 3946 dependencies = [ 3865 - "cfg-if", 3866 3947 "log", 3867 3948 "pin-project-lite", 3868 3949 "tracing-attributes", ··· 3871 3952 3872 3953 [[package]] 3873 3954 name = "tracing-attributes" 3874 - version = "0.1.26" 3955 + version = "0.1.27" 3875 3956 source = "registry+https://github.com/rust-lang/crates.io-index" 3876 - checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 3957 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3877 3958 dependencies = [ 3878 3959 "proc-macro2", 3879 3960 "quote", 3880 - "syn 2.0.29", 3961 + "syn 2.0.42", 3881 3962 ] 3882 3963 3883 3964 [[package]] 3884 3965 name = "tracing-core" 3885 - version = "0.1.31" 3966 + version = "0.1.32" 3886 3967 source = "registry+https://github.com/rust-lang/crates.io-index" 3887 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 3968 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3888 3969 dependencies = [ 3889 3970 "once_cell", 3890 3971 ] 3891 3972 3892 3973 [[package]] 3893 3974 name = "try-lock" 3894 - version = "0.2.4" 3975 + version = "0.2.5" 3895 3976 source = "registry+https://github.com/rust-lang/crates.io-index" 3896 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 3977 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3897 3978 3898 3979 [[package]] 3899 3980 name = "tungstenite" 3900 - version = "0.17.3" 3981 + version = "0.20.1" 3901 3982 source = "registry+https://github.com/rust-lang/crates.io-index" 3902 - checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" 3983 + checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 3903 3984 dependencies = [ 3904 - "base64 0.13.1", 3905 3985 "byteorder", 3906 3986 "bytes", 3987 + "data-encoding", 3907 3988 "http", 3908 3989 "httparse", 3909 3990 "log", 3910 - "rand 0.8.5", 3991 + "rand", 3911 3992 "rustls", 3912 - "sha-1 0.10.1", 3993 + "sha1", 3913 3994 "thiserror", 3914 3995 "url", 3915 3996 "utf-8", 3916 - "webpki", 3917 3997 ] 3918 3998 3919 3999 [[package]] 3920 4000 name = "typenum" 3921 - version = "1.16.0" 4001 + version = "1.17.0" 3922 4002 source = "registry+https://github.com/rust-lang/crates.io-index" 3923 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4003 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3924 4004 3925 4005 [[package]] 3926 4006 name = "uds_windows" 3927 - version = "1.0.2" 4007 + version = "1.1.0" 3928 4008 source = "registry+https://github.com/rust-lang/crates.io-index" 3929 - checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 4009 + checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 3930 4010 dependencies = [ 4011 + "memoffset 0.9.0", 3931 4012 "tempfile", 3932 4013 "winapi", 3933 4014 ] ··· 3943 4024 3944 4025 [[package]] 3945 4026 name = "unicode-bidi" 3946 - version = "0.3.13" 4027 + version = "0.3.14" 3947 4028 source = "registry+https://github.com/rust-lang/crates.io-index" 3948 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 4029 + checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 3949 4030 3950 4031 [[package]] 3951 4032 name = "unicode-ident" 3952 - version = "1.0.11" 4033 + version = "1.0.12" 3953 4034 source = "registry+https://github.com/rust-lang/crates.io-index" 3954 - checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 4035 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3955 4036 3956 4037 [[package]] 3957 4038 name = "unicode-normalization" ··· 3976 4057 3977 4058 [[package]] 3978 4059 name = "universal-hash" 3979 - version = "0.4.1" 4060 + version = "0.4.0" 3980 4061 source = "registry+https://github.com/rust-lang/crates.io-index" 3981 - checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 4062 + checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402" 3982 4063 dependencies = [ 3983 4064 "generic-array", 3984 4065 "subtle", 3985 4066 ] 3986 4067 3987 4068 [[package]] 4069 + name = "universal-hash" 4070 + version = "0.5.1" 4071 + source = "registry+https://github.com/rust-lang/crates.io-index" 4072 + checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 4073 + dependencies = [ 4074 + "crypto-common", 4075 + "subtle", 4076 + ] 4077 + 4078 + [[package]] 3988 4079 name = "untrusted" 3989 - version = "0.7.1" 4080 + version = "0.9.0" 3990 4081 source = "registry+https://github.com/rust-lang/crates.io-index" 3991 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4082 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3992 4083 3993 4084 [[package]] 3994 4085 name = "url" 3995 - version = "2.4.0" 4086 + version = "2.5.0" 3996 4087 source = "registry+https://github.com/rust-lang/crates.io-index" 3997 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 4088 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 3998 4089 dependencies = [ 3999 4090 "form_urlencoded", 4000 4091 "idna", ··· 4010 4101 4011 4102 [[package]] 4012 4103 name = "utf8-width" 4013 - version = "0.1.6" 4104 + version = "0.1.7" 4014 4105 source = "registry+https://github.com/rust-lang/crates.io-index" 4015 - checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" 4106 + checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 4016 4107 4017 4108 [[package]] 4018 4109 name = "uuid" 4019 - version = "1.4.1" 4110 + version = "1.6.1" 4020 4111 source = "registry+https://github.com/rust-lang/crates.io-index" 4021 - checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 4112 + checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 4022 4113 dependencies = [ 4023 4114 "serde", 4024 4115 ] 4025 4116 4026 4117 [[package]] 4027 - name = "value-bag" 4028 - version = "1.4.1" 4029 - source = "registry+https://github.com/rust-lang/crates.io-index" 4030 - checksum = "d92ccd67fb88503048c01b59152a04effd0782d035a83a6d256ce6085f08f4a3" 4031 - 4032 - [[package]] 4033 4118 name = "version-compare" 4034 4119 version = "0.1.1" 4035 4120 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4043 4128 4044 4129 [[package]] 4045 4130 name = "waker-fn" 4046 - version = "1.1.0" 4131 + version = "1.1.1" 4047 4132 source = "registry+https://github.com/rust-lang/crates.io-index" 4048 - checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 4133 + checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 4049 4134 4050 4135 [[package]] 4051 4136 name = "want" ··· 4058 4143 4059 4144 [[package]] 4060 4145 name = "wasi" 4061 - version = "0.9.0+wasi-snapshot-preview1" 4062 - source = "registry+https://github.com/rust-lang/crates.io-index" 4063 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4064 - 4065 - [[package]] 4066 - name = "wasi" 4067 4146 version = "0.11.0+wasi-snapshot-preview1" 4068 4147 source = "registry+https://github.com/rust-lang/crates.io-index" 4069 4148 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4070 4149 4071 4150 [[package]] 4072 4151 name = "wasm-bindgen" 4073 - version = "0.2.87" 4152 + version = "0.2.89" 4074 4153 source = "registry+https://github.com/rust-lang/crates.io-index" 4075 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 4154 + checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 4076 4155 dependencies = [ 4077 4156 "cfg-if", 4078 4157 "wasm-bindgen-macro", ··· 4080 4159 4081 4160 [[package]] 4082 4161 name = "wasm-bindgen-backend" 4083 - version = "0.2.87" 4162 + version = "0.2.89" 4084 4163 source = "registry+https://github.com/rust-lang/crates.io-index" 4085 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 4164 + checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 4086 4165 dependencies = [ 4087 4166 "bumpalo", 4088 4167 "log", 4089 4168 "once_cell", 4090 4169 "proc-macro2", 4091 4170 "quote", 4092 - "syn 2.0.29", 4171 + "syn 2.0.42", 4093 4172 "wasm-bindgen-shared", 4094 4173 ] 4095 4174 4096 4175 [[package]] 4097 - name = "wasm-bindgen-futures" 4098 - version = "0.4.37" 4099 - source = "registry+https://github.com/rust-lang/crates.io-index" 4100 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 4101 - dependencies = [ 4102 - "cfg-if", 4103 - "js-sys", 4104 - "wasm-bindgen", 4105 - "web-sys", 4106 - ] 4107 - 4108 - [[package]] 4109 4176 name = "wasm-bindgen-macro" 4110 - version = "0.2.87" 4177 + version = "0.2.89" 4111 4178 source = "registry+https://github.com/rust-lang/crates.io-index" 4112 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 4179 + checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 4113 4180 dependencies = [ 4114 4181 "quote", 4115 4182 "wasm-bindgen-macro-support", ··· 4117 4184 4118 4185 [[package]] 4119 4186 name = "wasm-bindgen-macro-support" 4120 - version = "0.2.87" 4187 + version = "0.2.89" 4121 4188 source = "registry+https://github.com/rust-lang/crates.io-index" 4122 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 4189 + checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 4123 4190 dependencies = [ 4124 4191 "proc-macro2", 4125 4192 "quote", 4126 - "syn 2.0.29", 4193 + "syn 2.0.42", 4127 4194 "wasm-bindgen-backend", 4128 4195 "wasm-bindgen-shared", 4129 4196 ] 4130 4197 4131 4198 [[package]] 4132 4199 name = "wasm-bindgen-shared" 4133 - version = "0.2.87" 4134 - source = "registry+https://github.com/rust-lang/crates.io-index" 4135 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 4136 - 4137 - [[package]] 4138 - name = "web-sys" 4139 - version = "0.3.64" 4200 + version = "0.2.89" 4140 4201 source = "registry+https://github.com/rust-lang/crates.io-index" 4141 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 4142 - dependencies = [ 4143 - "js-sys", 4144 - "wasm-bindgen", 4145 - ] 4146 - 4147 - [[package]] 4148 - name = "webpki" 4149 - version = "0.22.0" 4150 - source = "registry+https://github.com/rust-lang/crates.io-index" 4151 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 4152 - dependencies = [ 4153 - "ring", 4154 - "untrusted", 4155 - ] 4202 + checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 4156 4203 4157 4204 [[package]] 4158 4205 name = "weezl" ··· 4162 4209 4163 4210 [[package]] 4164 4211 name = "which" 4165 - version = "4.4.0" 4212 + version = "4.4.2" 4166 4213 source = "registry+https://github.com/rust-lang/crates.io-index" 4167 - checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 4214 + checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 4168 4215 dependencies = [ 4169 4216 "either", 4170 - "libc", 4217 + "home", 4171 4218 "once_cell", 4219 + "rustix 0.38.28", 4172 4220 ] 4173 4221 4174 4222 [[package]] ··· 4189 4237 4190 4238 [[package]] 4191 4239 name = "winapi-util" 4192 - version = "0.1.5" 4240 + version = "0.1.6" 4193 4241 source = "registry+https://github.com/rust-lang/crates.io-index" 4194 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 4242 + checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 4195 4243 dependencies = [ 4196 4244 "winapi", 4197 4245 ] ··· 4203 4251 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4204 4252 4205 4253 [[package]] 4206 - name = "windows" 4207 - version = "0.48.0" 4254 + name = "windows-core" 4255 + version = "0.51.1" 4208 4256 source = "registry+https://github.com/rust-lang/crates.io-index" 4209 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 4257 + checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 4210 4258 dependencies = [ 4211 - "windows-targets", 4259 + "windows-targets 0.48.5", 4212 4260 ] 4213 4261 4214 4262 [[package]] ··· 4217 4265 source = "registry+https://github.com/rust-lang/crates.io-index" 4218 4266 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4219 4267 dependencies = [ 4220 - "windows-targets", 4268 + "windows-targets 0.48.5", 4269 + ] 4270 + 4271 + [[package]] 4272 + name = "windows-sys" 4273 + version = "0.52.0" 4274 + source = "registry+https://github.com/rust-lang/crates.io-index" 4275 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4276 + dependencies = [ 4277 + "windows-targets 0.52.0", 4221 4278 ] 4222 4279 4223 4280 [[package]] ··· 4226 4283 source = "registry+https://github.com/rust-lang/crates.io-index" 4227 4284 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4228 4285 dependencies = [ 4229 - "windows_aarch64_gnullvm", 4230 - "windows_aarch64_msvc", 4231 - "windows_i686_gnu", 4232 - "windows_i686_msvc", 4233 - "windows_x86_64_gnu", 4234 - "windows_x86_64_gnullvm", 4235 - "windows_x86_64_msvc", 4286 + "windows_aarch64_gnullvm 0.48.5", 4287 + "windows_aarch64_msvc 0.48.5", 4288 + "windows_i686_gnu 0.48.5", 4289 + "windows_i686_msvc 0.48.5", 4290 + "windows_x86_64_gnu 0.48.5", 4291 + "windows_x86_64_gnullvm 0.48.5", 4292 + "windows_x86_64_msvc 0.48.5", 4293 + ] 4294 + 4295 + [[package]] 4296 + name = "windows-targets" 4297 + version = "0.52.0" 4298 + source = "registry+https://github.com/rust-lang/crates.io-index" 4299 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 4300 + dependencies = [ 4301 + "windows_aarch64_gnullvm 0.52.0", 4302 + "windows_aarch64_msvc 0.52.0", 4303 + "windows_i686_gnu 0.52.0", 4304 + "windows_i686_msvc 0.52.0", 4305 + "windows_x86_64_gnu 0.52.0", 4306 + "windows_x86_64_gnullvm 0.52.0", 4307 + "windows_x86_64_msvc 0.52.0", 4236 4308 ] 4237 4309 4238 4310 [[package]] ··· 4240 4312 version = "0.48.5" 4241 4313 source = "registry+https://github.com/rust-lang/crates.io-index" 4242 4314 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4315 + 4316 + [[package]] 4317 + name = "windows_aarch64_gnullvm" 4318 + version = "0.52.0" 4319 + source = "registry+https://github.com/rust-lang/crates.io-index" 4320 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 4243 4321 4244 4322 [[package]] 4245 4323 name = "windows_aarch64_msvc" ··· 4248 4326 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4249 4327 4250 4328 [[package]] 4329 + name = "windows_aarch64_msvc" 4330 + version = "0.52.0" 4331 + source = "registry+https://github.com/rust-lang/crates.io-index" 4332 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 4333 + 4334 + [[package]] 4251 4335 name = "windows_i686_gnu" 4252 4336 version = "0.48.5" 4253 4337 source = "registry+https://github.com/rust-lang/crates.io-index" 4254 4338 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4255 4339 4256 4340 [[package]] 4341 + name = "windows_i686_gnu" 4342 + version = "0.52.0" 4343 + source = "registry+https://github.com/rust-lang/crates.io-index" 4344 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 4345 + 4346 + [[package]] 4257 4347 name = "windows_i686_msvc" 4258 4348 version = "0.48.5" 4259 4349 source = "registry+https://github.com/rust-lang/crates.io-index" 4260 4350 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4261 4351 4262 4352 [[package]] 4353 + name = "windows_i686_msvc" 4354 + version = "0.52.0" 4355 + source = "registry+https://github.com/rust-lang/crates.io-index" 4356 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 4357 + 4358 + [[package]] 4263 4359 name = "windows_x86_64_gnu" 4264 4360 version = "0.48.5" 4265 4361 source = "registry+https://github.com/rust-lang/crates.io-index" 4266 4362 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4267 4363 4268 4364 [[package]] 4365 + name = "windows_x86_64_gnu" 4366 + version = "0.52.0" 4367 + source = "registry+https://github.com/rust-lang/crates.io-index" 4368 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 4369 + 4370 + [[package]] 4269 4371 name = "windows_x86_64_gnullvm" 4270 4372 version = "0.48.5" 4271 4373 source = "registry+https://github.com/rust-lang/crates.io-index" 4272 4374 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4273 4375 4274 4376 [[package]] 4377 + name = "windows_x86_64_gnullvm" 4378 + version = "0.52.0" 4379 + source = "registry+https://github.com/rust-lang/crates.io-index" 4380 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 4381 + 4382 + [[package]] 4275 4383 name = "windows_x86_64_msvc" 4276 4384 version = "0.48.5" 4277 4385 source = "registry+https://github.com/rust-lang/crates.io-index" 4278 4386 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4279 4387 4280 4388 [[package]] 4389 + name = "windows_x86_64_msvc" 4390 + version = "0.52.0" 4391 + source = "registry+https://github.com/rust-lang/crates.io-index" 4392 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 4393 + 4394 + [[package]] 4281 4395 name = "winnow" 4282 - version = "0.5.15" 4396 + version = "0.5.30" 4283 4397 source = "registry+https://github.com/rust-lang/crates.io-index" 4284 - checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 4398 + checksum = "9b5c3db89721d50d0e2a673f5043fc4722f76dcc352d7b1ab8b8288bed4ed2c5" 4285 4399 dependencies = [ 4286 4400 "memchr", 4287 4401 ] 4288 4402 4289 4403 [[package]] 4290 4404 name = "x25519-dalek" 4291 - version = "1.1.1" 4405 + version = "2.0.0" 4292 4406 source = "registry+https://github.com/rust-lang/crates.io-index" 4293 - checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f" 4407 + checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96" 4294 4408 dependencies = [ 4295 4409 "curve25519-dalek", 4296 - "rand_core 0.5.1", 4410 + "rand_core", 4411 + "serde", 4297 4412 "zeroize", 4298 4413 ] 4299 4414 ··· 4314 4429 checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 4315 4430 dependencies = [ 4316 4431 "async-broadcast", 4317 - "async-executor", 4318 - "async-fs", 4319 - "async-io", 4320 - "async-lock", 4321 4432 "async-process", 4322 4433 "async-recursion", 4323 - "async-task", 4324 4434 "async-trait", 4325 - "blocking", 4326 4435 "byteorder", 4327 4436 "derivative", 4328 4437 "enumflags2", 4329 - "event-listener", 4438 + "event-listener 2.5.3", 4330 4439 "futures-core", 4331 4440 "futures-sink", 4332 4441 "futures-util", ··· 4334 4443 "nix", 4335 4444 "once_cell", 4336 4445 "ordered-stream", 4337 - "rand 0.8.5", 4446 + "rand", 4338 4447 "serde", 4339 4448 "serde_repr", 4340 4449 "sha1", 4341 4450 "static_assertions", 4451 + "tokio", 4342 4452 "tracing", 4343 4453 "uds_windows", 4344 4454 "winapi", ··· 4354 4464 source = "registry+https://github.com/rust-lang/crates.io-index" 4355 4465 checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 4356 4466 dependencies = [ 4357 - "proc-macro-crate", 4467 + "proc-macro-crate 1.3.1", 4358 4468 "proc-macro2", 4359 4469 "quote", 4360 4470 "regex", ··· 4375 4485 4376 4486 [[package]] 4377 4487 name = "zeroize" 4378 - version = "1.6.0" 4488 + version = "1.7.0" 4379 4489 source = "registry+https://github.com/rust-lang/crates.io-index" 4380 - checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 4490 + checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 4381 4491 dependencies = [ 4382 4492 "zeroize_derive", 4383 4493 ] ··· 4390 4500 dependencies = [ 4391 4501 "proc-macro2", 4392 4502 "quote", 4393 - "syn 2.0.29", 4503 + "syn 2.0.42", 4394 4504 ] 4395 4505 4396 4506 [[package]] 4397 4507 name = "zkcredential" 4398 4508 version = "0.1.0" 4399 - source = "git+https://github.com/signalapp/libsignal?tag=v0.28.1#86b2fcc427bf32530866f4e30b18707c1f3682f7" 4509 + source = "git+https://github.com/signalapp/libsignal?tag=v0.32.0#72f046fe19a5eac22c7abcf9917956f240759364" 4400 4510 dependencies = [ 4401 4511 "curve25519-dalek", 4402 4512 "displaydoc", ··· 4408 4518 [[package]] 4409 4519 name = "zkgroup" 4410 4520 version = "0.9.0" 4411 - source = "git+https://github.com/signalapp/libsignal?tag=v0.28.1#86b2fcc427bf32530866f4e30b18707c1f3682f7" 4521 + source = "git+https://github.com/signalapp/libsignal?tag=v0.32.0#72f046fe19a5eac22c7abcf9917956f240759364" 4412 4522 dependencies = [ 4413 - "aead", 4414 4523 "aes-gcm-siv", 4415 4524 "bincode", 4416 4525 "curve25519-dalek", 4417 4526 "displaydoc", 4418 4527 "hex", 4419 4528 "lazy_static", 4529 + "libsignal-protocol", 4420 4530 "poksho", 4421 4531 "serde", 4422 - "sha2 0.9.9", 4532 + "sha2", 4423 4533 "signal-crypto", 4424 4534 "subtle", 4535 + "uuid", 4425 4536 "zkcredential", 4537 + ] 4538 + 4539 + [[package]] 4540 + name = "zune-inflate" 4541 + version = "0.2.54" 4542 + source = "registry+https://github.com/rust-lang/crates.io-index" 4543 + checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 4544 + dependencies = [ 4545 + "simd-adler32", 4426 4546 ] 4427 4547 4428 4548 [[package]] ··· 4446 4566 source = "registry+https://github.com/rust-lang/crates.io-index" 4447 4567 checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 4448 4568 dependencies = [ 4449 - "proc-macro-crate", 4569 + "proc-macro-crate 1.3.1", 4450 4570 "proc-macro2", 4451 4571 "quote", 4452 4572 "syn 1.0.109",
+6 -7
pkgs/applications/networking/instant-messengers/flare-signal/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "flare"; 24 - version = "0.10.0"; 24 + version = "0.11.0"; 25 25 26 26 src = fetchFromGitLab { 27 27 domain = "gitlab.com"; 28 28 owner = "schmiddi-on-mobile"; 29 29 repo = pname; 30 30 rev = version; 31 - hash = "sha256-+9zpYW9xjLe78c2GRL6raFDR5g+R/JWxQzU/ZS+5JtY="; 31 + hash = "sha256-mOy16w6K/xUc28c2tRxifWxsBf9VxLuDPB+GXE2iYtE="; 32 32 }; 33 33 34 34 cargoDeps = rustPlatform.importCargoLock { 35 35 lockFile = ./Cargo.lock; 36 36 outputHashes = { 37 - "blurhash-0.1.1" = "sha256-SLpszTL2CupMAfUQK5KlnsHTIBDB8hbJs1d6DQXaUiA="; 38 - "curve25519-dalek-3.2.1" = "sha256-0hFRhn920tLBpo6ZNCl6DYtTMHMXY/EiDvuhOPVjvC0="; 39 - "libsignal-protocol-0.1.0" = "sha256-VQwrGTNZnlDK5p8ZleAZYtbzDiVTHxc93/CRlCUjWtE="; 40 - "libsignal-service-0.1.0" = "sha256-1ub0IPSvGhZ2tsC6IolusJ1NSWy+5SXSx8qlIdPngTE="; 41 - "presage-0.6.0-dev" = "sha256-4isKBn/4yHoAYsYbBTULK/veZmaecU7t+PvE4Y0oNgk="; 37 + "curve25519-dalek-4.0.0" = "sha256-KUXvYXeVvJEQ/+dydKzXWCZmA2bFa2IosDzaBL6/Si0="; 38 + "libsignal-protocol-0.1.0" = "sha256-FCrJO7porlY5FrwZ2c67UPd4tgN7cH2/3DTwfPjihwM="; 39 + "libsignal-service-0.1.0" = "sha256-OWLtaxldKgYPP/aJuWezNkNN0990l3RtDWK38R1fL90="; 40 + "presage-0.6.0-dev" = "sha256-sd/kvdbrlJnKPSC/0SDXo6Z6Zc5Am0op/t6gprJf91w="; 42 41 }; 43 42 }; 44 43
+2 -2
pkgs/applications/video/smplayer/default.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "smplayer"; 11 - version = "23.6.0.10170"; 11 + version = "23.12.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "smplayer-dev"; 15 15 repo = "smplayer"; 16 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-ByheWIXvCw9jL3lY63oRzRZhl0jZz4jr+rw5Wi7Mm8w="; 17 + hash = "sha256-ip4y9GF2u1yl1Ts8T9XcFg9wdXVTYXfDrrPuHLz6oSs="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+32
pkgs/by-name/gi/git-releaser/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , nix-update-script 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "git-releaser"; 9 + version = "0.1.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "git-releaser"; 13 + repo = "git-releaser"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-owIXiLLnCkda9O0C0wW0nEuwXC4hipNpR9fdFqgbWts="; 16 + }; 17 + 18 + vendorHash = "sha256-dTyHKSCEImySu6Tagqvh6jDvgDbOTL0fMUOjFBpp64k="; 19 + 20 + ldflags = [ "-X main.version=${version}" ]; 21 + 22 + passthru.updateScript = nix-update-script { }; 23 + 24 + meta = with lib; { 25 + description = "Tool for creating Git releases based on Semantic Versioning"; 26 + homepage = "https://github.com/git-releaser/git-releaser"; 27 + changelog = "https://github.com/git-releaser/git-releaser/releases/tag/v${version}"; 28 + maintainers = with maintainers; [ jakuzure ]; 29 + license = licenses.asl20; 30 + mainProgram = "git-releaser"; 31 + }; 32 + }
+2 -2
pkgs/development/libraries/sptk/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "sptk"; 9 - version = "4.1"; 9 + version = "4.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "sp-nitech"; 13 13 repo = "SPTK"; 14 14 rev = "v${version}"; 15 - hash = "sha256-t8XVdKrrewfqefUnEz5xHgRHF0NThNQD1KGPMLOO/o8="; 15 + hash = "sha256-lIyOcN2AR3ilUZ9stpicjbwlredbwgGPwmMICxZEijU="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/biopython/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "biopython"; 10 - version = "1.81"; 10 + version = "1.82"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - hash = "sha256-LPOBErbYQVrTnWphGYjNEftfM+sJNGZmqHJjvrqWFOA="; 15 + hash = "sha256-qbENlZroipdEqRxs42AfTIbn7EFnm8k8KfZ5IY9hZ7s="; 16 16 }; 17 17 18 18 disabled = !isPy3k;
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 363 363 364 364 buildPythonPackage rec { 365 365 pname = "boto3-stubs"; 366 - version = "1.34.7"; 366 + version = "1.34.8"; 367 367 format = "setuptools"; 368 368 369 369 src = fetchPypi { 370 370 inherit pname version; 371 - hash = "sha256-UalmhfyiPlJ7x9Ua3vVXGl0GIZoQ97zE4Ijm2aeSdI8="; 371 + hash = "sha256-A/4+po7ZeLAYiQnd2EjjYPEZns4GK6F0J53z3JDM/fA="; 372 372 }; 373 373 374 374 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "botocore-stubs"; 12 - version = "1.34.7"; 12 + version = "1.34.8"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 17 17 src = fetchPypi { 18 18 pname = "botocore_stubs"; 19 19 inherit version; 20 - hash = "sha256-iPbp3F0ZeZ9KWBO/aTMezo8ze6zziLO5YV+lfAXtJDs="; 20 + hash = "sha256-1smqKxGai3dv6ofisZbGSLdOGYw0DbXAb43De6LWKvc="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/cf-xarray/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "cf-xarray"; 22 - version = "0.8.6"; 22 + version = "0.8.7"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "xarray-contrib"; 29 29 repo = "cf-xarray"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-qcoHz/yZoPVu0uBKKx4AV7MOokiuXSCaWPD/92VlRFk="; 31 + hash = "sha256-ldnrEks6NkUkaRaev0X6aRHdOZHfsy9/Maihvq8xdSs="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django-import-export/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "django-import-export"; 16 - version = "3.3.4"; 16 + version = "3.3.5"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "django-import-export"; 23 23 repo = pname; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-I8iOJXrqO/4GA6WajVH+w7NOnXlbzNpWd4iSWvtiejc="; 25 + hash = "sha256-bYb000KRnvuMSMTTicqrJ+0zU/XguQFcLATqxUvc5V0="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/django-webpack-loader/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "django-webpack-loader"; 10 - version = "2.0.1"; 10 + version = "3.0.0"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-Do37L82znb/QG+dgPAYBMqRmT0g4Ec48dfLTwNOat2I="; 17 + hash = "sha256-dND6btp4i4Sxq4KMLn786EFLBe7wpOsr8n0xGlDgpO0="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -4
pkgs/development/python-modules/einops/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , chainer 4 3 , fetchFromGitHub 5 4 , hatchling 6 5 , jupyter ··· 15 14 buildPythonPackage rec { 16 15 pname = "einops"; 17 16 version = "0.7.0"; 18 - format = "pyproject"; 17 + pyproject = true; 19 18 20 19 disabled = pythonOlder "3.7"; 21 20 ··· 29 28 nativeBuildInputs = [ hatchling ]; 30 29 31 30 nativeCheckInputs = [ 32 - chainer 33 31 jupyter 34 32 nbconvert 35 33 numpy ··· 38 36 pytestCheckHook 39 37 ]; 40 38 41 - env.EINOPS_TEST_BACKENDS = "numpy,chainer"; 39 + env.EINOPS_TEST_BACKENDS = "numpy"; 42 40 43 41 preCheck = '' 44 42 export HOME=$(mktemp -d);
+2 -2
pkgs/development/python-modules/evohome-async/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "evohome-async"; 13 - version = "0.4.15"; 13 + version = "0.4.16"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.11"; ··· 19 19 owner = "zxdavb"; 20 20 repo = "evohome-async"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-ulkLl3K62MFUzFWUdsog4Q+jJ9uZjxNvDQTaWDhkhjo="; 22 + hash = "sha256-2tcfcM/XFPP/HO+MEcXdPA6/4BUOQBuEIUWCvjUTbdg="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/faraday-plugins/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "faraday-plugins"; 21 - version = "1.15.0"; 21 + version = "1.15.1"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "infobyte"; 28 28 repo = "faraday_plugins"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-2Z3S5zojaRVaeeujFor/g3x+rxKppw/jSyq0GRJ49OY="; 30 + hash = "sha256-cJ7gFE8zTN+7fp4EY8ZRwjS8i0r+8WaIH/EdY89nZew="; 31 31 }; 32 32 33 33 postPatch = ''
+2 -2
pkgs/development/python-modules/garminconnect/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "garminconnect"; 13 - version = "0.2.11"; 13 + version = "0.2.12"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.10"; ··· 19 19 owner = "cyberjunky"; 20 20 repo = "python-garminconnect"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-T8flktIBRhtXpxd17bqrocncgpIfinMDvVwvaoltZAs="; 22 + hash = "sha256-uq3biWZvcORvrAMd/Ix0Cj1ol5fiqdDsO54zD82G2vA="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/garth/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "garth"; 15 - version = "0.4.41"; 15 + version = "0.4.42"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.9"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-1CnRgPJTG7cpfa/SyhBwVw0Lj6ENI/YY/q2yNeve9c0="; 22 + hash = "sha256-tCQtT7KrM/CHqAaMsvgj4aS3tkpcCYpaagvkO9DljY0="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/kornia/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "kornia"; 11 - version = "0.7.0"; 11 + version = "0.7.1"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = pname; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-XcQXKn4F3DIgn+XQcN5ZcGZLehd/IPBgLuGzIkPSxZg="; 20 + hash = "sha256-gHMrA4Uzazpw4TdswrXdoZG4+ek5g+wtLXNmhH3SlOM="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/lcgit/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "lcgit"; 10 - version = "0.2.0"; 10 + version = "0.2.1"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 16 16 owner = "cisagov"; 17 17 repo = "lcgit"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-MYRqlfz2MRayBT7YGZmcyqJdoDRfENmgxk/TmhyoAlQ="; 19 + hash = "sha256-bLeblC68+j+YwvgnV1wgJiWm/jxZFzhTSDwXpoSzUTg="; 20 20 }; 21 21 22 22 postPatch = ''
+3 -3
pkgs/development/python-modules/linien-common/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "linien-common"; 15 - version = "1.0.0"; 15 + version = "1.0.1"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "linien-org"; 20 20 repo = "linien"; 21 - rev = "v${version}"; 22 - hash = "sha256-BMYFi1HsNKWHmYdrnX/mAehke7UxQZlruFmpaAvxWvQ="; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-ZgAp1SEiHijyjK74VZyRLYY3Hzfc3BQ6cnoO3hZzvbE="; 23 23 }; 24 24 25 25 sourceRoot = "source/linien-common";
+2 -2
pkgs/development/python-modules/recurring-ical-events/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "recurring-ical-events"; 18 - version = "2.1.1"; 18 + version = "2.1.2"; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 ··· 25 25 owner = "niccokunzmann"; 26 26 repo = "python-recurring-ical-events"; 27 27 rev = "v${version}"; 28 - hash = "sha256-I5D4CAk0C60H2hMBV62gOaIRA+wYF2ORKxHfWustQz0="; 28 + hash = "sha256-6qFUw5xfZvDuM/UBEGtoiHON15/6oq1S8H0Z1qk3k8s="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/wavinsentio/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "wavinsentio"; 10 - version = "0.4.0"; 10 + version = "0.4.1"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.8"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-c3MpFoJrT2FBQrNce+zP/bfIZFqu8gSAA9oIa1jKYCo="; 17 + hash = "sha256-Oko3Ivj95vajNWjQTQK18i5B/DIBngjw2HLlzYqLv2Y="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/database/prqlc/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "prqlc"; 15 - version = "0.10.1"; 15 + version = "0.11.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "prql"; 19 19 repo = "prql"; 20 20 rev = version; 21 - hash = "sha256-E6++xmEzY9Ndq4RCKALEHF9mh1E1NBME1gaJN70O2sE="; 21 + hash = "sha256-XKb19qevscNjFUMtLL1nk7fXJuPOyQYZvZ3/4BHS0jo="; 22 22 }; 23 23 24 - cargoHash = "sha256-WLJ9XrtCXDGfqhSccSdel28EARNxZgoGbC6B+W9CsTc="; 24 + cargoHash = "sha256-cZkXz9sXfFo0OBQDrHKUfYJsTH1RiLEFb4xU6TDaZUQ="; 25 25 26 26 nativeBuildInputs = [ 27 27 pkg-config
+2 -2
pkgs/development/tools/package-project-cmake/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 7 pname = "package-project-cmake"; 8 - version = "1.11.0"; 8 + version = "1.11.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "TheLartians"; 12 12 repo = "PackageProject.cmake"; 13 13 rev = "v${finalAttrs.version}"; 14 - hash = "sha256-41cJm6eO5Q6xhARJbshi6Tesk/IxEQNsMShmDcjVqzs="; 14 + hash = "sha256-E7WZSYDlss5bidbiWL1uX41Oh6JxBRtfhYsFU19kzIw="; 15 15 }; 16 16 17 17 dontConfigure = true;
+4 -6
pkgs/os-specific/linux/lenovo-legion/app.nix
··· 7 7 src = fetchFromGitHub { 8 8 owner = "johnfanv2"; 9 9 repo = "LenovoLegionLinux"; 10 - rev = "v${version}-prerelese"; 11 - hash = "sha256-P4vqzNX2nF4LnoQDOV8WEiXAICQCyjj9xPpFNvMu93k="; 10 + rev = "v${version}-prerelease"; 11 + hash = "sha256-PQdxfDfW3sn0wWjmsPoAt3HZ43PS3Tyez3/0KEVVZQg="; 12 12 }; 13 13 14 14 sourceRoot = "${src.name}/python/legion_linux"; ··· 31 31 --replace "FOLDER=/etc/legion_linux/" "FOLDER=$out/share/legion_linux" 32 32 substituteInPlace ./legion_linux/legion.py \ 33 33 --replace "/etc/legion_linux" "$out/share/legion_linux" 34 - ''; 35 - 36 - postInstall = '' 37 - cp ./legion_linux/legion_logo.png $out/${python3.sitePackages}/legion_logo.png 34 + substituteInPlace ./legion_linux/legion_gui{,_user}.desktop \ 35 + --replace "Icon=/usr/share/pixmaps/legion_logo.png" "Icon=legion_logo" 38 36 ''; 39 37 40 38 dontWrapQtApps = true;
+2 -2
pkgs/tools/compression/zfp/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "zfp"; 12 - version = "1.0.0"; 12 + version = "1.0.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "LLNL"; 16 16 repo = "zfp"; 17 17 rev = version; 18 - sha256 = "sha256-E2LI1rWo1HO5O/sxPHAmLDs3Z5xouzlgMj11rQFPNYQ="; 18 + sha256 = "sha256-iZxA4lIviZQgaeHj6tEQzEFSKocfgpUyf4WvUykb9qk="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ cmake ];
+7 -3
pkgs/tools/misc/github-backup/default.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "github-backup"; 10 - version = "0.43.1"; 11 - format = "setuptools"; 10 + version = "0.44.1"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - hash = "sha256-S0674oTUsXftXlbP8fbF09FIWnWwq/Mgbv960tg3FNg="; 15 + hash = "sha256-tOCIrquhBS7aNeFocu8M9JV19vfFwrfIsaaePCp2vPw="; 16 16 }; 17 + 18 + nativeBuildInputs = with python3.pkgs; [ 19 + setuptools 20 + ]; 17 21 18 22 makeWrapperArgs = [ 19 23 "--prefix" "PATH" ":" (lib.makeBinPath [ git git-lfs ])
+3 -3
pkgs/tools/security/cloudfox/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "cloudfox"; 8 - version = "1.12.3"; 8 + version = "1.13.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "BishopFox"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-V6zYEH2LACBcMY0ox8ZgqJGFLWFgCNR4l9Uo+hMgseE="; 14 + hash = "sha256-4donwh7yG7R4+k+ydGto2CZclnM95qodQuL1Huu4GDo="; 15 15 }; 16 16 17 - vendorHash = "sha256-PZW1rNX8TLW0SZ9A2eF5N12J9BPWgRZJeGIb042Tinc="; 17 + vendorHash = "sha256-RdcfAZVqCp+egLbgx1c/A/zk0YlBY6aeeq0Lv4cLivY="; 18 18 19 19 # Some tests are failing because of wrong filename/path 20 20 doCheck = false;
+2 -2
pkgs/tools/security/kubeclarity/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "kubeclarity"; 11 - version = "2.22.1"; 11 + version = "2.23.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "openclarity"; 15 15 repo = pname; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-gET+nrNYWV4ON0y9/oh9QihqffkJEn38k7CcScqzHWI="; 17 + hash = "sha256-GtShdcBSa7QAwjPUPMXDrFBgNqvJEf8XQw3HbqWEieo="; 18 18 }; 19 19 20 20 vendorHash = "sha256-rYUbXkf0wOPehXvAzcww0WVycATWdK72LOqbQolqoWc=";
+2 -2
pkgs/tools/security/sbctl/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "sbctl"; 11 - version = "0.12"; 11 + version = "0.13"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Foxboron"; 15 15 repo = pname; 16 16 rev = version; 17 - hash = "sha256-1dA+a8GS4teaLmclatJNKt+OjhabLO4j/+p4Q95yG/s="; 17 + hash = "sha256-vxPYWoBU4k2fKWXGaMzIkUdj+EmPWTtCvMwAVmsgKaE="; 18 18 }; 19 19 20 20 vendorHash = "sha256-kVXzHTONPCE1UeAnUiULjubJeZFD0DAxIk+w8/Dqs6c=";
-26
pkgs/tools/security/ssb/default.nix
··· 1 - { lib 2 - , buildGoModule 3 - , fetchFromGitHub 4 - }: 5 - 6 - buildGoModule rec { 7 - pname = "ssb"; 8 - version = "0.1.1"; 9 - 10 - src = fetchFromGitHub { 11 - owner = "kitabisa"; 12 - repo = pname; 13 - rev = "v${version}"; 14 - sha256 = "0dkd02l30461cwn5hsssnjyb9s8ww179wll3l7z5hy1hv3x6h9g1"; 15 - }; 16 - 17 - vendorHash = null; 18 - 19 - meta = with lib; { 20 - description = "Tool to bruteforce SSH server"; 21 - homepage = "https://github.com/kitabisa/ssb"; 22 - license = with licenses; [ asl20 ]; 23 - maintainers = with maintainers; [ fab ]; 24 - broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check 25 - }; 26 - }
+2 -2
pkgs/tools/security/webanalyze/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "webanalyze"; 8 - version = "0.3.9"; 8 + version = "0.4.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "rverton"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-uDf0p4zw23+AVftMmrKfno+FbMZfGC1B5zvutj8qnPg="; 14 + hash = "sha256-rnNbEPlbye0gjUamwq1xjFM/4g0eEHsGOAZWziEqxwM="; 15 15 }; 16 16 17 17 vendorHash = "sha256-XPOsC+HoLytgv1fhAaO5HYSvuOP6OhjLyOYTfiD64QI=";
+1
pkgs/top-level/aliases.nix
··· 927 927 spotify-unwrapped = spotify; # added 2022-11-06 928 928 spring-boot = spring-boot-cli; # added 2020-04-24 929 929 squid4 = throw "'squid4' has been renamed to/replaced by 'squid'"; # Converted to throw 2023-09-10 930 + ssb = throw "'ssb' has been removed, as it was broken and unmaintained"; # Added 2023-12-21 930 931 ssm-agent = amazon-ssm-agent; # Added 2023-10-17 931 932 starboard-octant-plugin = throw "starboard-octant-plugin has been dropped due to needing octant which is archived"; # Added 2023-09-29 932 933 steam-run-native = steam-run; # added 2022-02-21
-2
pkgs/top-level/all-packages.nix
··· 13591 13591 13592 13592 svu = callPackage ../tools/misc/svu { }; 13593 13593 13594 - ssb = callPackage ../tools/security/ssb { }; 13595 - 13596 13594 ssb-patchwork = callPackage ../applications/networking/ssb-patchwork { }; 13597 13595 13598 13596 ssdeep = callPackage ../tools/security/ssdeep { };