git.delta.rocks / jrsonnet / refs/commits / b10bfb82e0f2

difftreelog

build update dependencies

xsqunqtyYaroslav Bolyukin2026-01-22parent: #b00d46d.patch.diff
in: trunk

4 files changed

modifiedCargo.lockdiffbeforeafterboth
254checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"254checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
255dependencies = [255dependencies = [
256 "async-trait",256 "async-trait",
257 "axum-core",257 "axum-core 0.4.5",
258 "bytes",258 "bytes",
259 "futures-util",259 "futures-util",
260 "http",260 "http",
261 "http-body",261 "http-body",
262 "http-body-util",262 "http-body-util",
263 "itoa",263 "itoa",
264 "matchit",264 "matchit 0.7.3",
265 "memchr",265 "memchr",
266 "mime",266 "mime",
267 "percent-encoding",267 "percent-encoding",
274 "tower-service",274 "tower-service",
275]275]
276
277[[package]]
278name = "axum"
279version = "0.8.7"
280source = "registry+https://github.com/rust-lang/crates.io-index"
281checksum = "5b098575ebe77cb6d14fc7f32749631a6e44edbef6b796f89b020e99ba20d425"
282dependencies = [
283 "axum-core 0.5.5",
284 "axum-macros",
285 "base64 0.22.1",
286 "bytes",
287 "form_urlencoded",
288 "futures-util",
289 "http",
290 "http-body",
291 "http-body-util",
292 "hyper",
293 "hyper-util",
294 "itoa",
295 "matchit 0.8.4",
296 "memchr",
297 "mime",
298 "percent-encoding",
299 "pin-project-lite",
300 "serde_core",
301 "serde_json",
302 "serde_path_to_error",
303 "serde_urlencoded",
304 "sha1",
305 "sync_wrapper",
306 "tokio",
307 "tokio-tungstenite",
308 "tower 0.5.2",
309 "tower-layer",
310 "tower-service",
311 "tracing",
312]
276313
277[[package]]314[[package]]
278name = "axum-core"315name = "axum-core"
294 "tower-service",331 "tower-service",
295]332]
333
334[[package]]
335name = "axum-core"
336version = "0.5.5"
337source = "registry+https://github.com/rust-lang/crates.io-index"
338checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
339dependencies = [
340 "bytes",
341 "futures-core",
342 "http",
343 "http-body",
344 "http-body-util",
345 "mime",
346 "pin-project-lite",
347 "sync_wrapper",
348 "tower-layer",
349 "tower-service",
350 "tracing",
351]
352
353[[package]]
354name = "axum-extra"
355version = "0.12.2"
356source = "registry+https://github.com/rust-lang/crates.io-index"
357checksum = "dbfe9f610fe4e99cf0cfcd03ccf8c63c28c616fe714d80475ef731f3b13dd21b"
358dependencies = [
359 "axum 0.8.7",
360 "axum-core 0.5.5",
361 "bytes",
362 "futures-core",
363 "futures-util",
364 "headers",
365 "http",
366 "http-body",
367 "http-body-util",
368 "mime",
369 "pin-project-lite",
370 "tower-layer",
371 "tower-service",
372 "tracing",
373]
374
375[[package]]
376name = "axum-macros"
377version = "0.5.0"
378source = "registry+https://github.com/rust-lang/crates.io-index"
379checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
380dependencies = [
381 "proc-macro2",
382 "quote",
383 "syn",
384]
296385
297[[package]]386[[package]]
298name = "backtrace"387name = "backtrace"
819 "syn",908 "syn",
820]909]
910
911[[package]]
912name = "data-encoding"
913version = "2.9.0"
914source = "registry+https://github.com/rust-lang/crates.io-index"
915checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
821916
822[[package]]917[[package]]
823name = "der"918name = "der"
1377source = "registry+https://github.com/rust-lang/crates.io-index"1472source = "registry+https://github.com/rust-lang/crates.io-index"
1378checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"1473checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1474
1475[[package]]
1476name = "headers"
1477version = "0.4.1"
1478source = "registry+https://github.com/rust-lang/crates.io-index"
1479checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
1480dependencies = [
1481 "base64 0.22.1",
1482 "bytes",
1483 "headers-core",
1484 "http",
1485 "httpdate",
1486 "mime",
1487 "sha1",
1488]
1489
1490[[package]]
1491name = "headers-core"
1492version = "0.3.0"
1493source = "registry+https://github.com/rust-lang/crates.io-index"
1494checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
1495dependencies = [
1496 "http",
1497]
13791498
1380[[package]]1499[[package]]
1381name = "heck"1500name = "heck"
14871606
1488[[package]]1607[[package]]
1489name = "hyper"1608name = "hyper"
1490version = "1.7.0"1609version = "1.8.1"
1491source = "registry+https://github.com/rust-lang/crates.io-index"1610source = "registry+https://github.com/rust-lang/crates.io-index"
1492checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"1611checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1493dependencies = [1612dependencies = [
1494 "atomic-waker",1613 "atomic-waker",
1495 "bytes",1614 "bytes",
2001source = "registry+https://github.com/rust-lang/crates.io-index"2120source = "registry+https://github.com/rust-lang/crates.io-index"
2002checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"2121checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2122
2123[[package]]
2124name = "matchit"
2125version = "0.8.4"
2126source = "registry+https://github.com/rust-lang/crates.io-index"
2127checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
20032128
2004[[package]]2129[[package]]
2005name = "memchr"2130name = "memchr"
2619 "prost",2744 "prost",
2620]2745]
2746
2747[[package]]
2748name = "pusher"
2749version = "0.1.0"
2750dependencies = [
2751 "anyhow",
2752 "axum 0.8.7",
2753 "axum-extra",
2754 "futures-util",
2755 "hyper",
2756 "tokio",
2757 "tokio-util",
2758 "tracing",
2759]
26212760
2622[[package]]2761[[package]]
2623name = "quote"2762name = "quote"
3130 "serde_core",3269 "serde_core",
3131]3270]
3271
3272[[package]]
3273name = "serde_path_to_error"
3274version = "0.1.20"
3275source = "registry+https://github.com/rust-lang/crates.io-index"
3276checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
3277dependencies = [
3278 "itoa",
3279 "serde",
3280 "serde_core",
3281]
31323282
3133[[package]]3283[[package]]
3134name = "serde_urlencoded"3284name = "serde_urlencoded"
3142 "serde",3292 "serde",
3143]3293]
3294
3295[[package]]
3296name = "sha1"
3297version = "0.10.6"
3298source = "registry+https://github.com/rust-lang/crates.io-index"
3299checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3300dependencies = [
3301 "cfg-if",
3302 "cpufeatures",
3303 "digest",
3304]
31443305
3145[[package]]3306[[package]]
3146name = "sha2"3307name = "sha2"
3603 "tokio-util",3764 "tokio-util",
3604]3765]
3766
3767[[package]]
3768name = "tokio-tungstenite"
3769version = "0.28.0"
3770source = "registry+https://github.com/rust-lang/crates.io-index"
3771checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
3772dependencies = [
3773 "futures-util",
3774 "log",
3775 "tokio",
3776 "tungstenite",
3777]
36053778
3606[[package]]3779[[package]]
3607name = "tokio-util"3780name = "tokio-util"
3608version = "0.7.16"3781version = "0.7.17"
3609source = "registry+https://github.com/rust-lang/crates.io-index"3782source = "registry+https://github.com/rust-lang/crates.io-index"
3610checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"3783checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
3611dependencies = [3784dependencies = [
3612 "bytes",3785 "bytes",
3613 "futures-core",3786 "futures-core",
3670dependencies = [3843dependencies = [
3671 "async-stream",3844 "async-stream",
3672 "async-trait",3845 "async-trait",
3673 "axum",3846 "axum 0.7.9",
3674 "base64 0.22.1",3847 "base64 0.22.1",
3675 "bytes",3848 "bytes",
3676 "h2",3849 "h2",
3827source = "registry+https://github.com/rust-lang/crates.io-index"4000source = "registry+https://github.com/rust-lang/crates.io-index"
3828checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"4001checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3829dependencies = [4002dependencies = [
4003 "log",
3830 "pin-project-lite",4004 "pin-project-lite",
3831 "tracing-attributes",4005 "tracing-attributes",
3832 "tracing-core",4006 "tracing-core",
3931source = "registry+https://github.com/rust-lang/crates.io-index"4105source = "registry+https://github.com/rust-lang/crates.io-index"
3932checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"4106checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4107
4108[[package]]
4109name = "tungstenite"
4110version = "0.28.0"
4111source = "registry+https://github.com/rust-lang/crates.io-index"
4112checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
4113dependencies = [
4114 "bytes",
4115 "data-encoding",
4116 "http",
4117 "httparse",
4118 "log",
4119 "rand 0.9.2",
4120 "sha1",
4121 "thiserror 2.0.17",
4122 "utf-8",
4123]
39334124
3934[[package]]4125[[package]]
3935name = "type-map"4126name = "type-map"
4035 "serde",4226 "serde",
4036]4227]
4228
4229[[package]]
4230name = "utf-8"
4231version = "0.7.6"
4232source = "registry+https://github.com/rust-lang/crates.io-index"
4233checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
40374234
4038[[package]]4235[[package]]
4039name = "utf8_iter"4236name = "utf8_iter"
modifiedflake.lockdiffbeforeafterboth
2 "nodes": {2 "nodes": {
3 "crane": {3 "crane": {
4 "locked": {4 "locked": {
5 "lastModified": 1763511871,5 "lastModified": 1766181779,
6 "owner": "ipetkov",6 "owner": "ipetkov",
7 "repo": "crane",7 "repo": "crane",
8 "rev": "099f9014bc8d0cd6e445470ea1df0fd691d5a548",8 "rev": "0263f510ba38bee5b7f817498066adaad694e50b",
9 "type": "github"9 "type": "github"
10 },10 },
11 "original": {11 "original": {
37 ]37 ]
38 },38 },
39 "locked": {39 "locked": {
40 "lastModified": 1763759067,40 "lastModified": 1765835352,
41 "owner": "hercules-ci",41 "owner": "hercules-ci",
42 "repo": "flake-parts",42 "repo": "flake-parts",
43 "rev": "2cccadc7357c0ba201788ae99c4dfa90728ef5e0",43 "rev": "a34fae9c08a15ad73f295041fec82323541400a9",
44 "type": "github"44 "type": "github"
45 },45 },
46 "original": {46 "original": {
111 "nixpkgs-regression": "nixpkgs-regression"111 "nixpkgs-regression": "nixpkgs-regression"
112 },112 },
113 "locked": {113 "locked": {
114 "lastModified": 1763844027,114 "lastModified": 1766192142,
115 "owner": "deltarocks",115 "owner": "deltarocks",
116 "repo": "nix",116 "repo": "nix",
117 "rev": "6b07ab20f1a65bd4aa54ec1418ff6f179dde64ac",117 "rev": "c8a41aa8c7193968956094c7f4783405bdd050e0",
118 "type": "github"118 "type": "github"
119 },119 },
120 "original": {120 "original": {
126 },126 },
127 "nixpkgs": {127 "nixpkgs": {
128 "locked": {128 "locked": {
129 "lastModified": 1763844746,129 "lastModified": 1766181714,
130 "owner": "nixos",130 "owner": "nixos",
131 "repo": "nixpkgs",131 "repo": "nixpkgs",
132 "rev": "d20f025296df84f7d97dee7c1a069bea8b17c8f2",132 "rev": "ff2da5fee8b3248cac330f14eac98228620beab0",
133 "type": "github"133 "type": "github"
134 },134 },
135 "original": {135 "original": {
136 "owner": "nixos",136 "owner": "nixos",
137 "ref": "release-25.05",137 "ref": "release-25.11",
138 "repo": "nixpkgs",138 "repo": "nixpkgs",
139 "type": "github"139 "type": "github"
140 }140 }
190 ]190 ]
191 },191 },
192 "locked": {192 "locked": {
193 "lastModified": 1763778964,193 "lastModified": 1766112155,
194 "owner": "oxalica",194 "owner": "oxalica",
195 "repo": "rust-overlay",195 "repo": "rust-overlay",
196 "rev": "7f3aa46dfa230ec2a4ca9281186a24771650ccd1",196 "rev": "2a6db3fc1c27ae77f9caa553d7609b223cb770b5",
197 "type": "github"197 "type": "github"
198 },198 },
199 "original": {199 "original": {
223 ]223 ]
224 },224 },
225 "locked": {225 "locked": {
226 "lastModified": 1762938485,226 "lastModified": 1766000401,
227 "owner": "numtide",227 "owner": "numtide",
228 "repo": "treefmt-nix",228 "repo": "treefmt-nix",
229 "rev": "5b4ee75aeefd1e2d5a1cc43cf6ba65eba75e83e4",229 "rev": "42d96e75aa56a3f70cab7e7dc4a32868db28e8fd",
230 "type": "github"230 "type": "github"
231 },231 },
232 "original": {232 "original": {
modifiedflake.nixdiffbeforeafterboth
2 description = "NixOS cluster configuration management";2 description = "NixOS cluster configuration management";
33
4 inputs = {4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/release-25.05";5 nixpkgs.url = "github:nixos/nixpkgs/release-25.11";
6 rust-overlay = {6 rust-overlay = {
7 url = "github:oxalica/rust-overlay";7 url = "github:oxalica/rust-overlay";
8 inputs.nixpkgs.follows = "nixpkgs";8 inputs.nixpkgs.follows = "nixpkgs";
modifiedrust-toolchain.tomldiffbeforeafterboth
1[toolchain]1[toolchain]
2channel = "1.91.0"2channel = "1.92.0"
3components = ["rustfmt", "clippy", "rust-analyzer", "rust-src"]3components = ["rustfmt", "clippy", "rust-analyzer", "rust-src"]
44