A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

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

Merge pull request #198 from zhaofengli/renovate/notify-7.x

fix(deps): update rust crate notify to v7

authored by

Zhaofeng Li and committed by
GitHub
75d4dd96 56649478

+31 -9
+30 -8
Cargo.lock
··· 2473 2473 2474 2474 [[package]] 2475 2475 name = "inotify" 2476 - version = "0.9.6" 2476 + version = "0.10.2" 2477 2477 source = "registry+https://github.com/rust-lang/crates.io-index" 2478 - checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 2478 + checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc" 2479 2479 dependencies = [ 2480 2480 "bitflags 1.3.2", 2481 2481 "inotify-sys", ··· 2773 2773 checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2774 2774 dependencies = [ 2775 2775 "libc", 2776 - "log", 2777 2776 "wasi", 2778 2777 "windows-sys 0.48.0", 2778 + ] 2779 + 2780 + [[package]] 2781 + name = "mio" 2782 + version = "1.0.2" 2783 + source = "registry+https://github.com/rust-lang/crates.io-index" 2784 + checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 2785 + dependencies = [ 2786 + "hermit-abi", 2787 + "libc", 2788 + "log", 2789 + "wasi", 2790 + "windows-sys 0.52.0", 2779 2791 ] 2780 2792 2781 2793 [[package]] ··· 2796 2808 2797 2809 [[package]] 2798 2810 name = "notify" 2799 - version = "6.1.1" 2811 + version = "7.0.0" 2800 2812 source = "registry+https://github.com/rust-lang/crates.io-index" 2801 - checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 2813 + checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009" 2802 2814 dependencies = [ 2803 2815 "bitflags 2.5.0", 2804 2816 "filetime", ··· 2806 2818 "kqueue", 2807 2819 "libc", 2808 2820 "log", 2809 - "mio", 2821 + "mio 1.0.2", 2822 + "notify-types", 2810 2823 "walkdir", 2811 - "windows-sys 0.48.0", 2824 + "windows-sys 0.52.0", 2825 + ] 2826 + 2827 + [[package]] 2828 + name = "notify-types" 2829 + version = "1.0.0" 2830 + source = "registry+https://github.com/rust-lang/crates.io-index" 2831 + checksum = "7393c226621f817964ffb3dc5704f9509e107a8b024b489cc2c1b217378785df" 2832 + dependencies = [ 2833 + "instant", 2812 2834 ] 2813 2835 2814 2836 [[package]] ··· 4686 4708 "backtrace", 4687 4709 "bytes", 4688 4710 "libc", 4689 - "mio", 4711 + "mio 0.8.11", 4690 4712 "num_cpus", 4691 4713 "pin-project-lite", 4692 4714 "signal-hook-registry",
+1 -1
client/Cargo.toml
··· 24 24 humantime = "2.1.0" 25 25 indicatif = "0.17.3" 26 26 lazy_static = "1.4.0" 27 - notify = { version = "6.0.0", default-features = false, features = ["macos_kqueue"] } 27 + notify = { version = "7.0.0", default-features = false, features = ["macos_kqueue"] } 28 28 regex = "1.8.3" 29 29 reqwest = { version = "0.12.4", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots", "stream"] } 30 30 serde = { version = "1.0.163", features = ["derive"] }