Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub bf42aabf 0949f3cd

+2102 -1453
+3 -8
nixos/modules/services/logging/vector.nix
··· 26 26 }; 27 27 28 28 config = mkIf cfg.enable { 29 + # for cli usage 30 + environment.systemPackages = [ pkgs.vector ]; 29 31 30 - users.groups.vector = { }; 31 - users.users.vector = { 32 - description = "Vector service user"; 33 - group = "vector"; 34 - isSystemUser = true; 35 - }; 36 32 systemd.services.vector = { 37 33 description = "Vector event and log aggregator"; 38 34 wantedBy = [ "multi-user.target" ]; ··· 52 48 in 53 49 { 54 50 ExecStart = "${pkgs.vector}/bin/vector --config ${validateConfig conf}"; 55 - User = "vector"; 56 - Group = "vector"; 51 + DynamicUser = true; 57 52 Restart = "no"; 58 53 StateDirectory = "vector"; 59 54 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+3
nixos/modules/services/web-apps/discourse.nix
··· 651 651 preload_link_header = false; 652 652 redirect_avatar_requests = false; 653 653 pg_force_readonly_mode = false; 654 + dns_query_timeout_secs = null; 655 + regex_timeout_seconds = 2; 656 + allow_impersonation = true; 654 657 }; 655 658 656 659 services.redis.servers.discourse =
+8 -1
nixos/tests/home-assistant.nix
··· 61 61 # https://www.home-assistant.io/integrations/frontend/ 62 62 frontend = {}; 63 63 64 + # include some popular integrations, that absolutely shouldn't break 65 + esphome = {}; 66 + knx = {}; 67 + matter = {}; 68 + shelly = {}; 69 + zha = {}; 70 + 64 71 # set up a wake-on-lan switch to test capset capability required 65 72 # for the ping suid wrapper 66 73 # https://www.home-assistant.io/integrations/wake_on_lan/ ··· 107 114 # Cause a configuration change that requires a service restart as we added a new runtime dependency 108 115 specialisation.newFeature = { 109 116 inheritParentConfig = true; 110 - configuration.services.home-assistant.config.esphome = {}; 117 + configuration.services.home-assistant.config.backup = {}; 111 118 }; 112 119 }; 113 120
+3 -2
pkgs/applications/audio/audacity/default.nix
··· 61 61 62 62 stdenv.mkDerivation rec { 63 63 pname = "audacity"; 64 - version = "3.3.0"; 64 + version = "3.3.1"; 65 65 66 66 src = fetchFromGitHub { 67 67 owner = pname; 68 68 repo = pname; 69 69 rev = "Audacity-${version}"; 70 - hash = "sha256-OQX3YFUdK9TR7ZuN2dZc6ZAWaqfftk5VH0qoOwbTAuM="; 70 + hash = "sha256-4L5ggu1izm9kichZBsJHAFq74q59xWGVYC11gy3K9go="; 71 71 }; 72 72 73 73 postPatch = '' ··· 150 150 "-Daudacity_conan_enabled=Off" 151 151 "-Daudacity_use_ffmpeg=loaded" 152 152 "-Daudacity_has_vst3=Off" 153 + "-Daudacity_has_crashreports=Off" 153 154 154 155 # RPATH of binary /nix/store/.../bin/... contains a forbidden reference to /build/ 155 156 "-DCMAKE_SKIP_BUILD_RPATH=ON"
+73
pkgs/applications/audio/ledfx/default.nix
··· 1 + { lib 2 + , fetchpatch 3 + , python3 4 + }: 5 + 6 + python3.pkgs.buildPythonPackage rec { 7 + pname = "ledfx"; 8 + version = "2.0.64"; 9 + format = "setuptools"; 10 + 11 + src = python3.pkgs.fetchPypi { 12 + inherit pname version; 13 + hash = "sha256-TKRa4PcMd0Jl94XD2WubOhmsxZaUplZeWKsuKz83Rl4="; 14 + }; 15 + 16 + patches = [ 17 + # replace tcp-latency which is not packaged with icmplib 18 + (fetchpatch { 19 + url = "https://github.com/LedFx/LedFx/commit/98cd4256846ae3bdae7094eeacb3b02a4807dc6f.patch"; 20 + excludes = [ 21 + # only used in win.spec file which is windows specific 22 + "hiddenimports.py" 23 + ]; 24 + hash = "sha256-p9fiLdjZI5fe5Qy2xbJIAtblp/7BwUxAvwjHQy5l9nQ="; 25 + }) 26 + ]; 27 + 28 + postPatch = '' 29 + substituteInPlace setup.py \ 30 + --replace '"openrgb-python~=0.2.10",' "" \ 31 + --replace '"pyupdater>=3.1.0",' "" \ 32 + --replace "'rpi-ws281x>=4.3.0; platform_system == \"Linux\"'," "" \ 33 + --replace "~=" ">=" 34 + ''; 35 + 36 + propagatedBuildInputs = with python3.pkgs; [ 37 + aiohttp 38 + aiohttp-cors 39 + aubio 40 + certifi 41 + cython 42 + flux-led 43 + icmplib 44 + multidict 45 + numpy 46 + # openrgb-python # not packaged 47 + paho-mqtt 48 + pillow 49 + psutil 50 + pyserial 51 + pystray 52 + # rpi-ws281x # not packaged 53 + requests 54 + sacn 55 + samplerate 56 + sentry-sdk 57 + sounddevice 58 + uvloop 59 + voluptuous 60 + zeroconf 61 + ]; 62 + 63 + # has no tests 64 + doCheck = false; 65 + 66 + meta = with lib; { 67 + description = "LedFx is a network based LED effect controller with support for advanced real-time audio effects"; 68 + homepage = "https://github.com/LedFx/LedFx"; 69 + changelog = "https://github.com/LedFx/LedFx/blob/${version}/CHANGELOG.rst"; 70 + license = licenses.gpl3Only; 71 + maintainers = teams.c3d2.members; 72 + }; 73 + }
+72 -72
pkgs/applications/editors/jetbrains/versions.json
··· 3 3 "clion": { 4 4 "update-channel": "CLion RELEASE", 5 5 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.tar.gz", 6 - "version": "2023.1.1", 7 - "sha256": "19f2f435ff21453f724e16b318a94d19c414fd5863aa08cc73e78c85a20d73c5", 8 - "url": "https://download.jetbrains.com/cpp/CLion-2023.1.1.tar.gz", 9 - "build_number": "231.8109.222" 6 + "version": "2023.1.2", 7 + "sha256": "e3efc51a4431dc67da6463a8a37aab8ad6a214a8338430ae61cd4add5e7e5b04", 8 + "url": "https://download.jetbrains.com/cpp/CLion-2023.1.2.tar.gz", 9 + "build_number": "231.8770.66" 10 10 }, 11 11 "datagrip": { 12 12 "update-channel": "DataGrip RELEASE", ··· 35 35 "idea-community": { 36 36 "update-channel": "IntelliJ IDEA RELEASE", 37 37 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.tar.gz", 38 - "version": "2023.1", 39 - "sha256": "e6fe45c9df8e763ee3278444b5fb1003910c436752e83221e0303a62c5e81eaa", 40 - "url": "https://download.jetbrains.com/idea/ideaIC-2023.1.tar.gz", 41 - "build_number": "231.8109.175" 38 + "version": "2023.1.1", 39 + "sha256": "0a9bc55c2eaecbe983cd1db9ab6a353e3b7c3747f6fc6dea95736df104a68239", 40 + "url": "https://download.jetbrains.com/idea/ideaIC-2023.1.1.tar.gz", 41 + "build_number": "231.8770.65" 42 42 }, 43 43 "idea-ultimate": { 44 44 "update-channel": "IntelliJ IDEA RELEASE", 45 45 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.tar.gz", 46 - "version": "2023.1", 47 - "sha256": "3029c751c36d86fef0021feceb8f3010d37aebd42aef6d6aed9e3b9207c2d2ac", 48 - "url": "https://download.jetbrains.com/idea/ideaIU-2023.1.tar.gz", 49 - "build_number": "231.8109.175" 46 + "version": "2023.1.1", 47 + "sha256": "62ac9a6a801e5e029c3ca5ea28ee5de2680e3d58ae233cf1cb3d3636c6b205ca", 48 + "url": "https://download.jetbrains.com/idea/ideaIU-2023.1.1.tar.gz", 49 + "build_number": "231.8770.65" 50 50 }, 51 51 "mps": { 52 52 "update-channel": "MPS RELEASE", ··· 84 84 "rider": { 85 85 "update-channel": "Rider RELEASE", 86 86 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.tar.gz", 87 - "version": "2023.1", 88 - "sha256": "494cd8bbb41023ae4a53487e9ac46aacc68f52ee3e14c8621f49e2675d56fa9c", 89 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.1.tar.gz", 90 - "build_number": "231.8109.212" 87 + "version": "2023.1.1", 88 + "sha256": "d50a7ed977e04ae50d6a16422a0968896fc6d94b0ab84d044ad3503d904570e0", 89 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.1.1.tar.gz", 90 + "build_number": "231.8770.54" 91 91 }, 92 92 "ruby-mine": { 93 93 "update-channel": "RubyMine RELEASE", 94 94 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", 95 - "version": "2023.1", 96 - "sha256": "f9eabc980d82a9c9b27bc84daa7f1e786f41b17bbbfeca282985c6ed87e768ec", 97 - "url": "https://download.jetbrains.com/ruby/RubyMine-2023.1.tar.gz", 98 - "build_number": "231.8109.174" 95 + "version": "2023.1.1", 96 + "sha256": "44a852fa872751ba53b1a10eb5d136a407ae7db90e4e4f8c37ba282dcc9c1419", 97 + "url": "https://download.jetbrains.com/ruby/RubyMine-2023.1.1.tar.gz", 98 + "build_number": "231.8770.57" 99 99 }, 100 100 "webstorm": { 101 101 "update-channel": "WebStorm RELEASE", 102 102 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.tar.gz", 103 - "version": "2023.1", 104 - "sha256": "bd074c7bafdcfcce4db001a4356040d0badd7cd2f65418a35b4156b00a07e94b", 105 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.1.tar.gz", 106 - "build_number": "231.8109.174" 103 + "version": "2023.1.1", 104 + "sha256": "93e11177010037a156939f2ded59ac5d8d0661e47a4471399665affe4a1eb7a9", 105 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.1.1.tar.gz", 106 + "build_number": "231.8770.64" 107 107 } 108 108 }, 109 109 "x86_64-darwin": { 110 110 "clion": { 111 111 "update-channel": "CLion RELEASE", 112 112 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.dmg", 113 - "version": "2023.1.1", 114 - "sha256": "98e1d907604dcde89b2a5df6a8331894eab03f1fb72e6acbde7da5c279f0043e", 115 - "url": "https://download.jetbrains.com/cpp/CLion-2023.1.1.dmg", 116 - "build_number": "231.8109.222" 113 + "version": "2023.1.2", 114 + "sha256": "a980ecceda348d5a9e4ee7aaec2baf6d985a66c714ee270d402d708838e40d26", 115 + "url": "https://download.jetbrains.com/cpp/CLion-2023.1.2.dmg", 116 + "build_number": "231.8770.66" 117 117 }, 118 118 "datagrip": { 119 119 "update-channel": "DataGrip RELEASE", ··· 142 142 "idea-community": { 143 143 "update-channel": "IntelliJ IDEA RELEASE", 144 144 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.dmg", 145 - "version": "2023.1", 146 - "sha256": "233cc0253921bb002bd20eff0e493864b5b7ad951cd806d29a702cf1a6934f0f", 147 - "url": "https://download.jetbrains.com/idea/ideaIC-2023.1.dmg", 148 - "build_number": "231.8109.175" 145 + "version": "2023.1.1", 146 + "sha256": "ee7769737cb0e22d4c88ea8808d0767b8d88667b6b732748d745a5eb48809c46", 147 + "url": "https://download.jetbrains.com/idea/ideaIC-2023.1.1.dmg", 148 + "build_number": "231.8770.65" 149 149 }, 150 150 "idea-ultimate": { 151 151 "update-channel": "IntelliJ IDEA RELEASE", 152 152 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.dmg", 153 - "version": "2023.1", 154 - "sha256": "1e8498336a5c4d90518f47d687a167adbe0e634d1f7d10530164c84542b91677", 155 - "url": "https://download.jetbrains.com/idea/ideaIU-2023.1.dmg", 156 - "build_number": "231.8109.175" 153 + "version": "2023.1.1", 154 + "sha256": "46fed7185c1cc901778593941db035d9806ebdad930eccbb4472668d440e60af", 155 + "url": "https://download.jetbrains.com/idea/ideaIU-2023.1.1.dmg", 156 + "build_number": "231.8770.65" 157 157 }, 158 158 "mps": { 159 159 "update-channel": "MPS RELEASE", ··· 191 191 "rider": { 192 192 "update-channel": "Rider RELEASE", 193 193 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.dmg", 194 - "version": "2023.1", 195 - "sha256": "fe6ee0086b3e59eecc7e2816e8f803a702a6b7ea382cb0a2168d08d19dd656d7", 196 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.1.dmg", 197 - "build_number": "231.8109.212" 194 + "version": "2023.1.1", 195 + "sha256": "72131efb1d4606cefd9bfb11cc98443a13f5b9761ac007484564db2107e7f8e9", 196 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.1.1.dmg", 197 + "build_number": "231.8770.54" 198 198 }, 199 199 "ruby-mine": { 200 200 "update-channel": "RubyMine RELEASE", 201 201 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", 202 - "version": "2023.1", 203 - "sha256": "fba60e34520c807ba0a9124802e5782e2b4c8e63c27e07968b9cb642f0fc0a77", 204 - "url": "https://download.jetbrains.com/ruby/RubyMine-2023.1.dmg", 205 - "build_number": "231.8109.174" 202 + "version": "2023.1.1", 203 + "sha256": "2c37a3e8c8a9b800b9132f31d0cfdffbb3fd4ee83de13b3141187ec05a79e3e0", 204 + "url": "https://download.jetbrains.com/ruby/RubyMine-2023.1.1.dmg", 205 + "build_number": "231.8770.57" 206 206 }, 207 207 "webstorm": { 208 208 "update-channel": "WebStorm RELEASE", 209 209 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.dmg", 210 - "version": "2023.1", 211 - "sha256": "35f110baf5a37232175a367c524a4cb04216bc2c0b0767506449648df6a12032", 212 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.1.dmg", 213 - "build_number": "231.8109.174" 210 + "version": "2023.1.1", 211 + "sha256": "e7b9b86501682a0cf5a1b2d22e65491a6923635043378707581357a10fc8dc2a", 212 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.1.1.dmg", 213 + "build_number": "231.8770.64" 214 214 } 215 215 }, 216 216 "aarch64-darwin": { 217 217 "clion": { 218 218 "update-channel": "CLion RELEASE", 219 219 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.dmg", 220 - "version": "2023.1.1", 221 - "sha256": "f18183aa0efd776f2d641c72e61892e2d987f4b1f2a59786b2afb12604c43658", 222 - "url": "https://download.jetbrains.com/cpp/CLion-2023.1.1-aarch64.dmg", 223 - "build_number": "231.8109.222" 220 + "version": "2023.1.2", 221 + "sha256": "61c8c1e76fe25389557111534c3fdadb5ba69427384890bf25499d0b474c147d", 222 + "url": "https://download.jetbrains.com/cpp/CLion-2023.1.2-aarch64.dmg", 223 + "build_number": "231.8770.66" 224 224 }, 225 225 "datagrip": { 226 226 "update-channel": "DataGrip RELEASE", ··· 249 249 "idea-community": { 250 250 "update-channel": "IntelliJ IDEA RELEASE", 251 251 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.dmg", 252 - "version": "2023.1", 253 - "sha256": "33964525cb28ac199e39e3c8eac4128874963f3292d5074257ae54fe1df9f986", 254 - "url": "https://download.jetbrains.com/idea/ideaIC-2023.1-aarch64.dmg", 255 - "build_number": "231.8109.175" 252 + "version": "2023.1.1", 253 + "sha256": "c9ab2053e1ad648466c547c378bd4e8753b4db8908de1caaeca91563ad80f6f9", 254 + "url": "https://download.jetbrains.com/idea/ideaIC-2023.1.1-aarch64.dmg", 255 + "build_number": "231.8770.65" 256 256 }, 257 257 "idea-ultimate": { 258 258 "update-channel": "IntelliJ IDEA RELEASE", 259 259 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.dmg", 260 - "version": "2023.1", 261 - "sha256": "6e2ca530fe082f79724fb89849e06fa91b8c17089430f9633a7e9a813204151f", 262 - "url": "https://download.jetbrains.com/idea/ideaIU-2023.1-aarch64.dmg", 263 - "build_number": "231.8109.175" 260 + "version": "2023.1.1", 261 + "sha256": "ae631000e19b821194b38be7caaa1e13ad78b465e6eb00f44215bb1173038448", 262 + "url": "https://download.jetbrains.com/idea/ideaIU-2023.1.1-aarch64.dmg", 263 + "build_number": "231.8770.65" 264 264 }, 265 265 "mps": { 266 266 "update-channel": "MPS RELEASE", ··· 298 298 "rider": { 299 299 "update-channel": "Rider RELEASE", 300 300 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.dmg", 301 - "version": "2023.1", 302 - "sha256": "dbd708379f2a489add7e87a321297841baf8bfcf83ce2f5549a1ff9f5037cf46", 303 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.1-aarch64.dmg", 304 - "build_number": "231.8109.212" 301 + "version": "2023.1.1", 302 + "sha256": "b089e107bd81829fffe97509912c4467f8b4ea09fd5f38ebd8cc8c57e6adb947", 303 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.1.1-aarch64.dmg", 304 + "build_number": "231.8770.54" 305 305 }, 306 306 "ruby-mine": { 307 307 "update-channel": "RubyMine RELEASE", 308 308 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", 309 - "version": "2023.1", 310 - "sha256": "56d0202ea1261eb8ac5bd24f1cb044282cda5bd6c8306d3ec606109a3fe28fba", 311 - "url": "https://download.jetbrains.com/ruby/RubyMine-2023.1-aarch64.dmg", 312 - "build_number": "231.8109.174" 309 + "version": "2023.1.1", 310 + "sha256": "17327de2d4edd3fbddb47c96d4db1bfba716786eb5b74b4a2e3ba6d0482610f9", 311 + "url": "https://download.jetbrains.com/ruby/RubyMine-2023.1.1-aarch64.dmg", 312 + "build_number": "231.8770.57" 313 313 }, 314 314 "webstorm": { 315 315 "update-channel": "WebStorm RELEASE", 316 316 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.dmg", 317 - "version": "2023.1", 318 - "sha256": "91f4a8f63c36407e9431a97a1ecc33762f67afd488046796cf4cca3a6709518c", 319 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.1-aarch64.dmg", 320 - "build_number": "231.8109.174" 317 + "version": "2023.1.1", 318 + "sha256": "3ccf935b898511106b25f3d30363767372f6a301311a5547f68210895b054cf1", 319 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.1.1-aarch64.dmg", 320 + "build_number": "231.8770.64" 321 321 } 322 322 } 323 323 }
+3 -4
pkgs/applications/misc/buku/default.nix
··· 8 8 flask-api 9 9 flask-bootstrap 10 10 flask-paginate 11 - flask-reverse-proxy-fix 12 11 flask-wtf 13 12 arrow 14 13 werkzeug ··· 18 17 ]; 19 18 in 20 19 with python3.pkgs; buildPythonApplication rec { 21 - version = "4.7"; 20 + version = "4.8"; 22 21 pname = "buku"; 23 22 24 23 src = fetchFromGitHub { 25 24 owner = "jarun"; 26 25 repo = "buku"; 27 26 rev = "v${version}"; 28 - sha256 = "sha256-7piJK1hz9h6EWiU/q5MAS1PSvHFxnW7rZBKxq+wda1c="; 27 + sha256 = "sha256-kPVlfTYUusf5CZnKB53WZcCHo3MEnA2bLUHTRPGPn+8="; 29 28 }; 30 29 31 30 nativeCheckInputs = [ 32 31 hypothesis 33 32 pytest 34 - pytest-vcr 33 + pytest-recording 35 34 pyyaml 36 35 mypy-extensions 37 36 click
+5 -4
pkgs/applications/misc/googleearth-pro/default.nix
··· 71 71 72 72 unpackPhase = '' 73 73 # deb file contains a setuid binary, so 'dpkg -x' doesn't work here 74 - dpkg --fsys-tarfile ${src} | tar --extract 74 + mkdir deb 75 + dpkg --fsys-tarfile ${src} | tar --extract -C deb 75 76 ''; 76 77 77 78 installPhase ='' 78 79 runHook preInstall 79 80 80 81 mkdir $out 81 - mv usr/* $out/ 82 - rmdir usr 83 - mv * $out/ 82 + mv deb/usr/* $out/ 83 + rmdir deb/usr 84 + mv deb/* $out/ 84 85 rm $out/bin/google-earth-pro $out/opt/google/earth/pro/googleearth 85 86 86 87 # patch and link googleearth binary
+8 -10
pkgs/applications/misc/mysql-workbench/default.nix
··· 9 9 , gtkmm3 10 10 , pcre 11 11 , swig 12 - , antlr4_9 12 + , antlr4_12 13 13 , sudo 14 14 , mysql 15 15 , libxml2 ··· 46 46 inherit (python3.pkgs) paramiko pycairo pyodbc; 47 47 in stdenv.mkDerivation rec { 48 48 pname = "mysql-workbench"; 49 - version = "8.0.32"; 49 + version = "8.0.33"; 50 50 51 51 src = fetchurl { 52 - url = "http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-workbench-community-${version}-src.tar.gz"; 53 - sha256 = "sha256-ruGdYTG0KPhRnUdlfaZjt1r/tAhA1XeAtjDgu/K9okI="; 52 + url = "https://cdn.mysql.com//Downloads/MySQLGUITools/mysql-workbench-community-${version}-src.tar.gz"; 53 + sha256 = "a6c9b05ee6f8accd45203d8234a43415da65ddc8118d427dd1a2ef2a209261bc"; 54 54 }; 55 55 56 56 patches = [ 57 - ./fix-gdal-includes.patch 58 - 59 57 (substituteAll { 60 58 src = ./hardcode-paths.patch; 61 59 catchsegv = "${glibc.bin}/bin/catchsegv"; ··· 79 77 }) 80 78 ]; 81 79 82 - # 1. have it look for 4.9.3 instead of 4.9.1 80 + # 1. have it look for 4.12.0 instead of 4.11.1 83 81 # 2. for some reason CMakeCache.txt is part of source code 84 82 preConfigure = '' 85 83 substituteInPlace CMakeLists.txt \ 86 - --replace "antlr-4.9.1-complete.jar" "antlr-4.9.3-complete.jar" 84 + --replace "antlr-4.11.1-complete.jar" "antlr-4.12.0-complete.jar" 87 85 rm -f build/CMakeCache.txt 88 86 ''; 89 87 ··· 100 98 gtk3 101 99 gtkmm3 102 100 libX11 103 - antlr4_9.runtime.cpp 101 + antlr4_12.runtime.cpp 104 102 python3 105 103 mysql 106 104 libxml2 ··· 157 155 # mysql-workbench 8.0.21 depends on libmysqlconnectorcpp 1.1.8. 158 156 # Newer versions of connector still provide the legacy library when enabled 159 157 # but the headers are in a different location. 160 - "-DWITH_ANTLR_JAR=${antlr4_9.jarLocation}" 158 + "-DWITH_ANTLR_JAR=${antlr4_12.jarLocation}" 161 159 "-DMySQLCppConn_INCLUDE_DIR=${libmysqlconnectorcpp}/include/jdbc" 162 160 ]; 163 161
-47
pkgs/applications/misc/mysql-workbench/fix-gdal-includes.patch
··· 1 - --- a/backend/wbpublic/grt/spatial_handler.h 2 - +++ b/backend/wbpublic/grt/spatial_handler.h 3 - @@ -24,12 +24,12 @@ 4 - #ifndef SPATIAL_HANDLER_H_ 5 - #define SPATIAL_HANDLER_H_ 6 - 7 - -#include <gdal/ogrsf_frmts.h> 8 - -#include <gdal/ogr_api.h> 9 - -#include <gdal/gdal_pam.h> 10 - -#include <gdal/memdataset.h> 11 - -#include <gdal/gdal_alg.h> 12 - -#include <gdal/gdal.h> 13 - +#include <ogrsf_frmts.h> 14 - +#include <ogr_api.h> 15 - +#include <gdal_pam.h> 16 - +#include <memdataset.h> 17 - +#include <gdal_alg.h> 18 - +#include <gdal.h> 19 - #include <deque> 20 - #include "base/geometry.h" 21 - #include "wbpublic_public_interface.h" 22 - --- a/backend/wbpublic/grtui/geom_draw_box.h 23 - +++ b/backend/wbpublic/grtui/geom_draw_box.h 24 - @@ -25,7 +25,7 @@ 25 - #define _GEOM_DRAW_BOX_H_ 26 - 27 - #include <mforms/drawbox.h> 28 - -#include <gdal/ogr_geometry.h> 29 - +#include <ogr_geometry.h> 30 - #include "wbpublic_public_interface.h" 31 - 32 - class WBPUBLICBACKEND_PUBLIC_FUNC GeomDrawBox : public mforms::DrawBox { 33 - --- a/backend/wbpublic/objimpl/db.query/db_query_Resultset.cpp 34 - +++ b/backend/wbpublic/objimpl/db.query/db_query_Resultset.cpp 35 - @@ -21,9 +21,9 @@ 36 - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 37 - */ 38 - 39 - -#include <gdal/ogrsf_frmts.h> 40 - -#include <gdal/ogr_api.h> 41 - -#include <gdal/gdal.h> 42 - +#include <ogrsf_frmts.h> 43 - +#include <ogr_api.h> 44 - +#include <gdal.h> 45 - 46 - #include <grts/structs.db.query.h> 47 - #include <grtpp_util.h>
+23 -7
pkgs/applications/misc/taskjuggler/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - mail (2.7.1) 4 + date (3.3.3) 5 + mail (2.8.1) 5 6 mini_mime (>= 0.1.1) 6 - mini_mime (1.0.1) 7 - taskjuggler (3.6.0) 8 - mail (>= 2.4.3) 9 - term-ansicolor (>= 1.0.7) 7 + net-imap 8 + net-pop 9 + net-smtp 10 + mini_mime (1.1.2) 11 + net-imap (0.3.4) 12 + date 13 + net-protocol 14 + net-pop (0.1.2) 15 + net-protocol 16 + net-protocol (0.2.1) 17 + timeout 18 + net-smtp (0.3.3) 19 + net-protocol 20 + sync (0.5.0) 21 + taskjuggler (3.7.2) 22 + mail (~> 2.7, >= 2.7.1) 23 + term-ansicolor (~> 1.7, >= 1.7.1) 10 24 term-ansicolor (1.7.1) 11 25 tins (~> 1.0) 12 - tins (1.20.2) 26 + timeout (0.3.2) 27 + tins (1.32.1) 28 + sync 13 29 14 30 PLATFORMS 15 31 ruby ··· 18 34 taskjuggler 19 35 20 36 BUNDLED WITH 21 - 2.1.4 37 + 2.4.12
+84 -9
pkgs/applications/misc/taskjuggler/gemset.nix
··· 1 1 { 2 + date = { 3 + groups = ["default"]; 4 + platforms = []; 5 + source = { 6 + remotes = ["https://rubygems.org"]; 7 + sha256 = "03skfikihpx37rc27vr3hwrb057gxnmdzxhmzd4bf4jpkl0r55w1"; 8 + type = "gem"; 9 + }; 10 + version = "3.3.3"; 11 + }; 2 12 mail = { 3 - dependencies = ["mini_mime"]; 13 + dependencies = ["mini_mime" "net-imap" "net-pop" "net-smtp"]; 4 14 groups = ["default"]; 5 15 platforms = []; 6 16 source = { 7 17 remotes = ["https://rubygems.org"]; 8 - sha256 = "00wwz6ys0502dpk8xprwcqfwyf3hmnx6lgxaiq6vj43mkx43sapc"; 18 + sha256 = "1bf9pysw1jfgynv692hhaycfxa8ckay1gjw5hz3madrbrynryfzc"; 9 19 type = "gem"; 10 20 }; 11 - version = "2.7.1"; 21 + version = "2.8.1"; 12 22 }; 13 23 mini_mime = { 14 24 groups = ["default"]; 15 25 platforms = []; 16 26 source = { 17 27 remotes = ["https://rubygems.org"]; 18 - sha256 = "1q4pshq387lzv9m39jv32vwb8wrq3wc4jwgl4jk209r4l33v09d3"; 28 + sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5"; 29 + type = "gem"; 30 + }; 31 + version = "1.1.2"; 32 + }; 33 + net-imap = { 34 + dependencies = ["date" "net-protocol"]; 35 + groups = ["default"]; 36 + platforms = []; 37 + source = { 38 + remotes = ["https://rubygems.org"]; 39 + sha256 = "1d996zf3g8xz244791b0qsl9vr7zg4lqnnmf9k2kshr9lki5jam8"; 40 + type = "gem"; 41 + }; 42 + version = "0.3.4"; 43 + }; 44 + net-pop = { 45 + dependencies = ["net-protocol"]; 46 + groups = ["default"]; 47 + platforms = []; 48 + source = { 49 + remotes = ["https://rubygems.org"]; 50 + sha256 = "1wyz41jd4zpjn0v1xsf9j778qx1vfrl24yc20cpmph8k42c4x2w4"; 51 + type = "gem"; 52 + }; 53 + version = "0.1.2"; 54 + }; 55 + net-protocol = { 56 + dependencies = ["timeout"]; 57 + groups = ["default"]; 58 + platforms = []; 59 + source = { 60 + remotes = ["https://rubygems.org"]; 61 + sha256 = "0dxckrlw4q1lcn3qg4mimmjazmg9bma5gllv72f8js3p36fb3b91"; 62 + type = "gem"; 63 + }; 64 + version = "0.2.1"; 65 + }; 66 + net-smtp = { 67 + dependencies = ["net-protocol"]; 68 + groups = ["default"]; 69 + platforms = []; 70 + source = { 71 + remotes = ["https://rubygems.org"]; 72 + sha256 = "1c6md06hm5bf6rv53sk54dl2vg038pg8kglwv3rayx0vk2mdql9x"; 19 73 type = "gem"; 20 74 }; 21 - version = "1.0.1"; 75 + version = "0.3.3"; 76 + }; 77 + sync = { 78 + groups = ["default"]; 79 + platforms = []; 80 + source = { 81 + remotes = ["https://rubygems.org"]; 82 + sha256 = "1z9qlq4icyiv3hz1znvsq1wz2ccqjb1zwd6gkvnwg6n50z65d0v6"; 83 + type = "gem"; 84 + }; 85 + version = "0.5.0"; 22 86 }; 23 87 taskjuggler = { 24 88 dependencies = ["mail" "term-ansicolor"]; ··· 26 90 platforms = []; 27 91 source = { 28 92 remotes = ["https://rubygems.org"]; 29 - sha256 = "0ky3cydl3szhdyxsy4k6zxzjlbll7mlq025aj6xd5jmh49k3pfbp"; 93 + sha256 = "07fagka8nl29xwwzfhxx89gp34m5hih5vnq4sha1z814004md53j"; 30 94 type = "gem"; 31 95 }; 32 - version = "3.6.0"; 96 + version = "3.7.2"; 33 97 }; 34 98 term-ansicolor = { 35 99 dependencies = ["tins"]; ··· 42 106 }; 43 107 version = "1.7.1"; 44 108 }; 109 + timeout = { 110 + groups = ["default"]; 111 + platforms = []; 112 + source = { 113 + remotes = ["https://rubygems.org"]; 114 + sha256 = "1pfddf51n5fnj4f9ggwj3wbf23ynj0nbxlxqpz12y1gvl9g7d6r6"; 115 + type = "gem"; 116 + }; 117 + version = "0.3.2"; 118 + }; 45 119 tins = { 120 + dependencies = ["sync"]; 46 121 groups = ["default"]; 47 122 platforms = []; 48 123 source = { 49 124 remotes = ["https://rubygems.org"]; 50 - sha256 = "1pqj45n216zrz7yckdbdknlmhh187iqzx8fp76y2h0jrgqjfkxmj"; 125 + sha256 = "0373zn7zkllcn2q4ylbjgjx9mvm8m73ll3jwjav48dx8myplsp5p"; 51 126 type = "gem"; 52 127 }; 53 - version = "1.20.2"; 128 + version = "1.32.1"; 54 129 }; 55 130 }
+1 -1
pkgs/applications/networking/browsers/chromium/default.nix
··· 166 166 167 167 buildInputs = [ 168 168 # needed for GSETTINGS_SCHEMAS_PATH 169 - gsettings-desktop-schemas glib gtk3 169 + gsettings-desktop-schemas glib gtk3 gtk4 170 170 171 171 # needed for XDG_ICON_DIRS 172 172 gnome.adwaita-icon-theme
+2 -1
pkgs/applications/networking/browsers/firefox/common.nix
··· 230 230 url = "https://hg.mozilla.org/mozilla-central/raw-rev/1068e0955cfb"; 231 231 hash = "sha256-iPqmofsmgvlFNm+mqVPbdgMKmP68ANuzYu+PzfCpoNA="; 232 232 }) 233 - ] ++ [ 233 + ] ++ lib.optionals (lib.versionOlder version "114.0") [ 234 234 # https://bugzilla.mozilla.org/show_bug.cgi?id=1830040 235 + # https://hg.mozilla.org/mozilla-central/rev/cddb250a28d8 235 236 (fetchpatch { 236 237 url = "https://git.alpinelinux.org/aports/plain/community/firefox/avoid-redefinition.patch?id=2f620d205ed0f9072bbd7714b5ec1b7bf6911c12"; 237 238 hash = "sha256-fLUYaJwhrC/wF24HkuWn2PHqz7LlAaIZ1HYjRDB2w9A=";
+1 -1
pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
··· 291 291 export LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive 292 292 293 293 # Enter local state directory. 294 - REAL_HOME=\$HOME 294 + REAL_HOME=\''${HOME%/} 295 295 TBB_HOME=\''${TBB_HOME:-''${XDG_DATA_HOME:-\$REAL_HOME/.local/share}/tor-browser} 296 296 HOME=\$TBB_HOME 297 297
+1 -1
pkgs/applications/science/misc/root/default.nix
··· 191 191 "-Dpythia6=OFF" 192 192 "-Dpythia8=OFF" 193 193 "-Drfio=OFF" 194 - "-Droot7=ON" 194 + "-Droot7=OFF" 195 195 "-Dsqlite=OFF" 196 196 "-Dssl=ON" 197 197 "-Dtmva=ON"
+2 -2
pkgs/applications/version-management/gitea/default.nix
··· 19 19 20 20 buildGoModule rec { 21 21 pname = "gitea"; 22 - version = "1.19.1"; 22 + version = "1.19.2"; 23 23 24 24 # not fetching directly from the git repo, because that lacks several vendor files for the web UI 25 25 src = fetchurl { 26 26 url = "https://dl.gitea.io/gitea/${version}/gitea-src-${version}.tar.gz"; 27 - hash = "sha256-i2exxgVsQhQtojJkyFJgBejCj6dSRo30ESEtN9n7Vfk="; 27 + hash = "sha256-L0wedLLQ8NBiw7JQ5AiFa+kQb+Vg0jnBtSGtgIknIDg="; 28 28 }; 29 29 30 30 vendorHash = null;
+22 -17
pkgs/data/fonts/iosevka/comfy.nix
··· 2 2 3 3 let 4 4 sets = [ 5 - # The compact, sans-serif set: 6 - "comfy" 7 - "comfy-fixed" 8 - "comfy-duo" 9 - # The compact, serif set: 10 - "comfy-motion" 11 - "comfy-motion-fixed" 12 - "comfy-motion-duo" 13 - # The wide, sans-serif set: 14 - "comfy-wide" 15 - "comfy-wide-fixed" 16 - "comfy-wide-duo" 5 + # Family | Shapes | Spacing | Style | Ligatures | 6 + # ------------------------+--------+---------+------------+-----------| 7 + "comfy" # Sans | Compact | Monospaced | Yes | 8 + "comfy-fixed" # Sans | Compact | Monospaced | No | 9 + "comfy-duo" # Sans | Compact | Duospaced | Yes | 10 + # ------------------------+--------+---------+------------+-----------| 11 + "comfy-motion" # Slab | Compact | Monospaced | Yes | 12 + "comfy-motion-fixed" # Slab | Compact | Monospaced | No | 13 + "comfy-motion-duo" # Slab | Compact | Duospaced | Yes | 14 + # ------------------------+--------+---------+------------+-----------| 15 + "comfy-wide" # Sans | Wide | Monospaced | Yes | 16 + "comfy-wide-fixed" # Sans | Wide | Monospaced | No | 17 + "comfy-wide-duo" # Sans | Wide | Duospaced | Yes | 18 + # ------------------------+--------+---------+------------+-----------| 19 + "comfy-wide-motion" # Slab | Wide | Monospaced | Yes | 20 + "comfy-wide-motion-fixed" # Slab | Wide | Monospaced | No | 21 + "comfy-wide-motion-duo" # Slab | Wide | Duospaced | Yes | 17 22 ]; 18 - version = "1.1.0"; 23 + version = "1.2.0"; 19 24 src = fetchFromSourcehut { 20 25 owner = "~protesilaos"; 21 26 repo = "iosevka-comfy"; 22 27 rev = version; 23 - sha256 = "1h72my1s9pvxww6yijrvhy7hj9dspnshya60i60p1wlzr6d18v3p"; 28 + sha256 = "sha256-gHDERf3eDsb59wz+kGa2wLY7RDRWs2woi5P2rZDYjL0="; 24 29 }; 25 30 privateBuildPlan = src.outPath + "/private-build-plans.toml"; 26 31 makeIosevkaFont = set: ··· 34 39 src = fetchFromGitHub { 35 40 owner = "be5invis"; 36 41 repo = "iosevka"; 37 - rev = "ad1e247a3fb8d2e2561122e8e57dcdc86a23df77"; 38 - hash = "sha256-sfItIMl9HOUykoZPsNKRGKwgkSWvNGUe3czHE8qFG5w="; 42 + rev = "d3b461432137b36922e41322c2e45a2401e727a5"; 43 + hash = "sha256-Sm+eG6ovVLmvKvQFEZblQV3jCLQRrc9Gga3pukwteLE="; 39 44 }; 40 45 41 - npmDepsHash = "sha256-HaO2q1f+hX3LjccuVCQaqQZCdUH9r7+jiFOR+3m8Suw="; 46 + npmDepsHash = "sha256-pikpi9eyo1a+AFLr7BMl1kegy3PgYFjzmE3QJqPXpNM="; 42 47 43 48 meta = with lib; { 44 49 inherit (src.meta) homepage;
+2 -2
pkgs/development/php-packages/swoole/default.nix
··· 1 1 { lib, stdenv, buildPecl, php, valgrind, pcre2, fetchFromGitHub }: 2 2 3 3 let 4 - version = "5.0.1"; 4 + version = "5.0.3"; 5 5 in buildPecl { 6 6 inherit version; 7 7 pname = "swoole"; ··· 10 10 owner = "swoole"; 11 11 repo = "swoole-src"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-d0xccbfOmebWR14oTUviWz/mB5IA7iXn0uUWxTQRd9w="; 13 + sha256 = "sha256-xadseYMbA+llzTf9JFIitJK2iR0dN8vAjv3n9/e7FGs="; 14 14 }; 15 15 16 16 buildInputs = [ pcre2 ] ++ lib.optionals (!stdenv.isDarwin) [ valgrind ];
+2 -1
pkgs/development/python-modules/aioesphomeapi/default.nix
··· 28 28 propagatedBuildInputs = [ 29 29 async-timeout 30 30 noiseprotocol 31 - protobuf 31 + protobuf.out 32 + protobuf.dev 32 33 zeroconf 33 34 ]; 34 35
+45
pkgs/development/python-modules/grpcio-testing/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , grpcio 5 + , protobuf 6 + , pythonOlder 7 + , pythonRelaxDepsHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "grpcio-testing"; 12 + version = "1.54.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchPypi { 18 + inherit pname version; 19 + hash = "sha256-/0LlPGUVhV7lh4RDQH7wImxaynN2wDLoELxoUUG8bpM="; 20 + }; 21 + 22 + postPatch = '' 23 + substituteInPlace setup.py \ 24 + --replace "'grpcio>={version}'.format(version=grpc_version.VERSION)" "'grpcio'" 25 + ''; 26 + 27 + propagatedBuildInputs = [ 28 + grpcio 29 + protobuf 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "grpc_testing" 34 + ]; 35 + 36 + # Module has no tests 37 + doCheck = false; 38 + 39 + meta = with lib; { 40 + description = "Testing utilities for gRPC Python"; 41 + homepage = "https://grpc.io/"; 42 + license = with licenses; [ asl20 ]; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+2 -2
pkgs/development/python-modules/prometheus-flask-exporter/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "prometheus-flask-exporter"; 11 - version = "0.20.3"; 11 + version = "0.22.4"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "rycus86"; 15 15 repo = "prometheus_flask_exporter"; 16 16 rev = version; 17 - hash = "sha256-l9Iw9fvXQMXzq1y/4Dml8uLPJWyqX6SDIXptJVw3cVQ="; 17 + hash = "sha256-GAQ80J7at8Apqu+DUMN3+rLi/lrNv5Y7w/DKpUN2iu8="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ flask prometheus-client ];
+49 -16
pkgs/development/python-modules/pymilvus/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , buildPythonPackage 4 - , fetchPypi 5 - , grpcio-tools 6 - , ujson 3 + , environs 4 + , fetchFromGitHub 7 5 , grpcio 6 + , grpcio-testing 7 + , mmh3 8 8 , pandas 9 - , mmh3 9 + , pytestCheckHook 10 + , python 11 + , pythonOlder 12 + , pythonRelaxDepsHook 13 + , scikit-learn 10 14 , setuptools-scm 15 + , ujson 11 16 }: 17 + 12 18 buildPythonPackage rec { 13 19 pname = "pymilvus"; 14 - version = "2.2.6"; 20 + version = "2.2.8"; 21 + format = "pyproject"; 15 22 16 - src = fetchPypi { 17 - inherit pname version; 18 - hash = "sha256-/i3WObwoY6Ffqw+Guij6+uGbKYKET2AJ+d708efmSx0="; 23 + disabled = pythonOlder "3.7"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "milvus-io"; 27 + repo = pname; 28 + rev = "refs/tags/v${version}"; 29 + hash = "sha256-Oqwa/2UT9jyGaEEzjr/phZZStLOZ6JRj+4ck0tmP0W0="; 19 30 }; 20 31 21 32 SETUPTOOLS_SCM_PRETEND_VERSION = version; 22 33 34 + pythonRelaxDeps = [ 35 + "grpcio" 36 + ]; 37 + 38 + nativeBuildInputs = [ 39 + pythonRelaxDepsHook 40 + setuptools-scm 41 + ]; 42 + 23 43 propagatedBuildInputs = [ 44 + environs 24 45 grpcio 25 - grpcio-tools 26 - ujson 27 - pandas 28 46 mmh3 29 - ] ++ lib.optionals stdenv.isLinux [ setuptools-scm ]; 47 + pandas 48 + ujson 49 + ]; 30 50 31 - doCheck = false; 51 + nativeCheckInputs = [ 52 + grpcio-testing 53 + pytestCheckHook 54 + scikit-learn 55 + ]; 56 + 57 + pythonImportsCheck = [ 58 + "pymilvus" 59 + ]; 60 + 61 + disabledTests = [ 62 + "test_get_commit" 63 + ]; 32 64 33 65 meta = with lib; { 66 + description = "Python SDK for Milvus"; 34 67 homepage = "https://github.com/milvus-io/pymilvus"; 35 - description = "Python SDK for Milvus. "; 68 + changelog = "https://github.com/milvus-io/pymilvus/releases/tag/v${version}"; 36 69 license = licenses.mit; 37 - maintainers = with maintainers; [happysalada]; 70 + maintainers = with maintainers; [ happysalada ]; 38 71 }; 39 72 }
+20 -6
pkgs/development/python-modules/userpath/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , hatchling 4 5 , click 6 + , pythonOlder 5 7 }: 6 8 7 9 buildPythonPackage rec { 8 10 pname = "userpath"; 9 - version = "1.7.0"; 11 + version = "1.8.0"; 12 + format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.7"; 10 15 11 16 src = fetchPypi { 12 17 inherit pname version; 13 - sha256="sha256-3NZsX6mxo8EjYvMJu7W8eZK6yK+G0XtOaxpLFmoRxD8="; 18 + hash = "sha256-BCM9L8/lz/kRweT7cYl1VkDhUk/4ekuCq51rh1/uV4c="; 14 19 }; 15 20 16 - propagatedBuildInputs = [ click ]; 21 + nativeBuildInputs = [ 22 + hatchling 23 + ]; 17 24 18 - # test suite is difficult to emulate in sandbox due to shell manipulation 25 + propagatedBuildInputs = [ 26 + click 27 + ]; 28 + 29 + # Test suite is difficult to emulate in sandbox due to shell manipulation 19 30 doCheck = false; 20 31 21 - pythonImportsCheck = [ "click" "userpath" ]; 32 + pythonImportsCheck = [ 33 + "userpath" 34 + ]; 22 35 23 36 meta = with lib; { 24 37 description = "Cross-platform tool for adding locations to the user PATH"; 25 38 homepage = "https://github.com/ofek/userpath"; 26 - license = [ licenses.asl20 licenses.mit ]; 39 + changelog = "https://github.com/ofek/userpath/releases/tag/v${version}"; 40 + license = with licenses; [ asl20 mit ]; 27 41 maintainers = with maintainers; [ yshym ]; 28 42 }; 29 43 }
+15 -12
pkgs/development/tools/java/jprofiler/default.nix
··· 4 4 , makeWrapper 5 5 , makeDesktopItem 6 6 , copyDesktopItems 7 - , undmg 7 + , _7zz 8 8 , jdk 9 9 }: 10 10 ··· 12 12 inherit (stdenv.hostPlatform) system; 13 13 pname = "jprofiler"; 14 14 15 - # 11.1.4 is the last version which can be unpacked by undmg 16 - # See: https://github.com/matthewbauer/undmg/issues/9 17 - version = if stdenv.isLinux then "13.0.2" else "11.1.4"; 15 + version = "13.0.6"; 18 16 nameApp = "JProfiler"; 19 17 20 18 meta = with lib; { ··· 30 28 31 29 src = if stdenv.isLinux then fetchurl { 32 30 url = "https://download-gcdn.ej-technologies.com/jprofiler/jprofiler_linux_${lib.replaceStrings ["."] ["_"] version}.tar.gz"; 33 - sha256 = "sha256-x9I7l2ctquCqUymtlQpFXE6+u0Yg773qE6MvAxvCaEE="; 31 + hash = "sha256-orjBSaC7NvKcak+RSEa9V05oL3EZIBnp7TyaX/8XFyg="; 34 32 } else fetchurl { 35 33 url = "https://download-gcdn.ej-technologies.com/jprofiler/jprofiler_macos_${lib.replaceStrings ["."] ["_"] version}.dmg"; 36 - sha256 = "sha256-WDMGrDsMdY1//WMHgr+/YKSxHWt6A1dD1Pd/MuDOaz8="; 34 + hash = "sha256-OI6NSPqYws5Rv25U5jIPzkyJtB8LF04qHB3NPR9XBWg="; 37 35 }; 38 36 39 37 srcIcon = fetchurl { 40 38 url = "https://www.ej-technologies.com/assets/content/header-product-jprofiler@2x-24bc4d84bd2a4eb641a5c8531758ff7c.png"; 41 - sha256 = "sha256-XUmuqhnNv7mZ3Gb4A0HLSlfiJd5xbCExVsw3hmXHeVE="; 39 + hash = "sha256-XUmuqhnNv7mZ3Gb4A0HLSlfiJd5xbCExVsw3hmXHeVE="; 42 40 }; 43 41 44 42 desktopItems = makeDesktopItem { ··· 80 78 darwin = stdenv.mkDerivation { 81 79 inherit pname version src; 82 80 83 - # Archive extraction via undmg fails for this particular version. 84 - nativeBuildInputs = [ makeWrapper undmg ]; 81 + nativeBuildInputs = [ makeWrapper _7zz ]; 82 + 83 + unpackPhase = '' 84 + runHook preUnpack 85 + 7zz x $src -x!JProfiler/\[\] 86 + runHook postUnpack 87 + ''; 85 88 86 - sourceRoot = "${nameApp}.app"; 89 + sourceRoot = "${nameApp}"; 87 90 88 91 installPhase = '' 89 92 runHook preInstall 90 - mkdir -p $out/{Applications/${nameApp}.app,bin} 91 - cp -R . $out/Applications/${nameApp}.app 93 + mkdir -p $out/{Applications,bin} 94 + cp -R ${nameApp}.app $out/Applications/ 92 95 makeWrapper $out/Applications/${nameApp}.app/Contents/MacOS/JavaApplicationStub $out/bin/${pname} 93 96 runHook postInstall 94 97 '';
+4 -4
pkgs/development/tools/misc/hound/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "hound"; 13 - version = "0.6.0"; 13 + version = "0.7.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "hound-search"; 17 17 repo = "hound"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-M1c4lsD7DQo5+RCCDdyn9FeGuGngMsg1qSrxM2wCzpg="; 19 + sha256 = "sha256-FqAPywVSkFsdgFpFe5m2+/Biwi11aYybKAhf6h2b//g="; 20 20 }; 21 21 22 - vendorSha256 = "sha256-ZgF/PB3VTPx367JUkhOkSEK1uvqENNG0xuNXvCGENnQ="; 22 + vendorSha256 = "sha256-0psvz4bnhGuwwSAXvQp0ju0GebxoUyY2Rjp/D43KF78="; 23 23 24 24 nativeBuildInputs = [ makeWrapper ]; 25 25 ··· 33 33 passthru.tests = { inherit (nixosTests) hound; }; 34 34 35 35 meta = with lib; { 36 - inherit (src.meta) homepage; 37 36 description = "Lightning fast code searching made easy"; 37 + homepage = "https://github.com/hound-search/hound"; 38 38 license = licenses.mit; 39 39 maintainers = with maintainers; [ grahamc SuperSandro2000 ]; 40 40 platforms = platforms.unix;
+49
pkgs/misc/dart-sass-embedded/default.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchurl 4 + , autoPatchelfHook 5 + }: 6 + 7 + stdenvNoCC.mkDerivation rec { 8 + pname = "dart-sass-embedded"; 9 + version = "1.62.1"; 10 + 11 + dontConfigure = true; 12 + dontBuild = true; 13 + 14 + nativeBuildInputs = lib.optional stdenvNoCC.hostPlatform.isLinux autoPatchelfHook; 15 + 16 + src = let base = "https://github.com/sass/dart-sass-embedded/releases/download/${version}/sass_embedded-${version}"; in 17 + fetchurl { 18 + "x86_64-linux" = { 19 + url = "${base}-linux-x64.tar.gz"; 20 + hash = "sha256-NXTadacyKlOQNGSLj/hP8syhYuuSTXK2Y9cYzTk28HU="; 21 + }; 22 + "aarch64-linux" = { 23 + url = "${base}-linux-arm64.tar.gz"; 24 + hash = "sha256-DX29U1AjmqVhKFgzP+71vsdoMjQ13IS93PZ1JLOA7bA="; 25 + }; 26 + "x86_64-darwin" = { 27 + url = "${base}-macos-x64.tar.gz"; 28 + hash = "sha256-0oyb9YBKoPNaWFLbIUZOJc5yK11uDYyAKKW4urkmRJQ="; 29 + }; 30 + "aarch64-darwin" = { 31 + url = "${base}-macos-arm64.tar.gz"; 32 + hash = "sha256-dkBcdVbxolK8xXYaOHot0s9FxGmfhMNAEoZqo+2LRfk="; 33 + }; 34 + }."${stdenvNoCC.hostPlatform.system}" or (throw "Unsupported system ${stdenvNoCC.hostPlatform.system}"); 35 + 36 + installPhase = '' 37 + mkdir -p $out/bin 38 + cp -r * $out 39 + ln -s $out/dart-sass-embedded $out/bin/dart-sass-embedded 40 + ''; 41 + 42 + meta = with lib; { 43 + description = "A wrapper for Dart Sass that implements the compiler side of the Embedded Sass protocol"; 44 + homepage = "https://github.com/sass/dart-sass-embedded"; 45 + changelog = "https://github.com/sass/dart-sass-embedded/blob/${version}/CHANGELOG.md"; 46 + license = licenses.mit; 47 + maintainers = with maintainers; [ shyim ]; 48 + }; 49 + }
+2 -2
pkgs/os-specific/darwin/raycast/default.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "raycast"; 9 - version = "1.49.3"; 9 + version = "1.50.0"; 10 10 11 11 src = fetchurl { 12 12 # https://github.com/NixOS/nixpkgs/pull/223495 ··· 17 17 # to host GitHub Actions to periodically check for updates 18 18 # and re-release the `.dmg` file to Internet Archive (https://archive.org/details/raycast) 19 19 url = "https://archive.org/download/raycast/raycast-${version}.dmg"; 20 - sha256 = "sha256-Irn99/49fRQg73cX8aKZ72D1o+mDPg44Q1pXAMdXrb0="; 20 + sha256 = "sha256-+LvQDQZjbj/p8VT/af9XwKSKkKd65YzcwrKF9hoXCog="; 21 21 }; 22 22 23 23 dontPatch = true;
+1 -1
pkgs/servers/mattermost/matterircd.nix
··· 16 16 ldflags = [ "-s" "-w" ]; 17 17 18 18 meta = with lib; { 19 - inherit (src.meta) homepage; 20 19 description = "Minimal IRC server bridge to Mattermost"; 20 + homepage = "https://github.com/42wim/matterircd"; 21 21 license = licenses.mit; 22 22 maintainers = with maintainers; [ ]; 23 23 platforms = platforms.unix;
+1 -1
pkgs/servers/monitoring/prometheus/redis-exporter.nix
··· 26 26 27 27 meta = with lib; { 28 28 description = "Prometheus exporter for Redis metrics"; 29 - inherit (src.meta) homepage; 29 + homepage = "https://github.com/oliver006/redis_exporter"; 30 30 license = licenses.mit; 31 31 maintainers = with maintainers; [ eskytthe srhb ma27 ]; 32 32 platforms = platforms.unix;
+2 -2
pkgs/servers/tracing/tempo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tempo"; 5 - version = "2.1.0"; 5 + version = "2.1.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "grafana"; 9 9 repo = "tempo"; 10 10 rev = "v${version}"; 11 11 fetchSubmodules = true; 12 - sha256 = "sha256-fhRIr9dFcfD3hFw6fnrV4yWEcz+CB5xph3KpxnKEWis="; 12 + sha256 = "sha256-gnQAldqfxJk8kbXAyX1VQXddCnSBWnvc3wesYoYI7wI="; 13 13 }; 14 14 15 15 vendorSha256 = null;
+13
pkgs/servers/web-apps/discourse/asserts_patch-package_from_path.patch
··· 1 + diff --git a/app/assets/javascripts/discourse/package.json b/app/assets/javascripts/discourse/package.json 2 + index 9e4533d2..e57f8a5f 100644 3 + --- a/app/assets/javascripts/discourse/package.json 4 + +++ b/app/assets/javascripts/discourse/package.json 5 + @@ -14,7 +14,7 @@ 6 + "build": "ember build", 7 + "start": "ember serve", 8 + "test": "ember test", 9 + - "postinstall": "yarn --silent --cwd .. patch-package" 10 + + "postinstall": "patch-package" 11 + }, 12 + "dependencies": { 13 + "@babel/core": "^7.21.4",
+27 -5
pkgs/servers/web-apps/discourse/default.nix
··· 8 8 , bundlerEnv 9 9 , callPackage 10 10 11 - , ruby_3_1 11 + , ruby_3_2 12 12 , replace 13 13 , gzip 14 14 , gnutar ··· 38 38 , fixup_yarn_lock 39 39 , nodePackages 40 40 , nodejs_16 41 + , dart-sass-embedded 41 42 42 43 , plugins ? [] 43 44 }@args: 44 45 45 46 let 46 - version = "3.1.0.beta2"; 47 + version = "3.1.0.beta4"; 47 48 48 49 src = fetchFromGitHub { 49 50 owner = "discourse"; 50 51 repo = "discourse"; 51 52 rev = "v${version}"; 52 - sha256 = "sha256-wkNTm5/QyujPcMUrnc6eWmjhrRQAthhmejmjpy6zmbE="; 53 + sha256 = "sha256-22GXFYPjPYL20amR4xFB4L/dCp32H4Z3uf0GLGEghUE="; 53 54 }; 54 55 55 - ruby = ruby_3_1; 56 + ruby = ruby_3_2; 56 57 57 58 runtimeDeps = [ 58 59 # For backups, themes and assets ··· 186 187 cp $(readlink -f ${libpsl}/lib/libpsl.so) vendor/libpsl.x86_64.so 187 188 ''; 188 189 }; 190 + sass-embedded = gems.sass-embedded // { 191 + dontBuild = false; 192 + # `sass-embedded` depends on `dart-sass-embedded` and tries to 193 + # fetch that as `.tar.gz` from GitHub releases. That `.tar.gz` 194 + # can also be specified via `SASS_EMBEDDED`. But instead of 195 + # compressing our `dart-sass-embedded` just to decompress it 196 + # again, we simply patch the Rakefile to symlink that path. 197 + patches = [ 198 + ./rubyEnv/sass-embedded-static.patch 199 + ]; 200 + postPatch = '' 201 + export SASS_EMBEDDED=${dart-sass-embedded} 202 + ''; 203 + }; 189 204 }; 190 205 191 206 groups = [ ··· 199 214 200 215 yarnOfflineCache = fetchYarnDeps { 201 216 yarnLock = src + "/app/assets/javascripts/yarn.lock"; 202 - sha256 = "0ryc4p5s35mzg1p71z98x5fvr5fpldmgghdi1viha4ckbpv153lw"; 217 + sha256 = "0a20kns4irdpzzx2dvdjbi0m3s754gp737q08z5nlcnffxqvykrk"; 203 218 }; 204 219 205 220 nativeBuildInputs = runtimeDeps ++ [ ··· 207 222 redis 208 223 nodePackages.uglify-js 209 224 nodePackages.terser 225 + nodePackages.patch-package 210 226 yarn 211 227 nodejs_16 212 228 ]; ··· 226 242 # Fix the rake command used to recursively execute itself in the 227 243 # assets precompilation task. 228 244 ./assets_rake_command.patch 245 + 246 + # `app/assets/javascripts/discourse/package.json`'s postinstall 247 + # hook tries to call `../node_modules/.bin/patch-package`, which 248 + # hasn't been `patchShebangs`-ed yet. So instead we just use 249 + # `patch-package` from `nativeBuildInputs`. 250 + ./asserts_patch-package_from_path.patch 229 251 ]; 230 252 231 253 # We have to set up an environment that is close enough to
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-assign"; 8 - rev = "c6e6a883f66670e5cfc1eb973af8ac5b7c20f815"; 9 - sha256 = "sha256-OwNV+ZNogUgd6ZKdXwUqoMqcZKc4jbf276rHIYQzjYc="; 8 + rev = "a655a009fade4671e4a2d38f0a0f7ce89d201d80"; 9 + sha256 = "sha256-HCwId3/7NRuToLFyJrOVaAiSxysB7XNZp9BUndSJzlY="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-docs";
+5 -5
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - activesupport (7.0.4.2) 4 + activesupport (7.0.4.3) 5 5 concurrent-ruby (~> 1.0, >= 1.0.2) 6 6 i18n (>= 1.6, < 2) 7 7 minitest (>= 5.1) 8 8 tzinfo (~> 2.0) 9 - concurrent-ruby (1.2.0) 10 - i18n (1.12.0) 9 + concurrent-ruby (1.2.2) 10 + i18n (1.13.0) 11 11 concurrent-ruby (~> 1.0) 12 - minitest (5.17.0) 12 + minitest (5.18.0) 13 13 rrule (0.4.4) 14 14 activesupport (>= 2.3) 15 15 tzinfo (2.0.6) ··· 22 22 rrule (= 0.4.4) 23 23 24 24 BUNDLED WITH 25 - 2.4.6 25 + 2.4.10
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-calendar"; 9 - rev = "b71d4979370dcbd6f193b2ac5cfa0267f8a19fed"; 10 - sha256 = "sha256-XGybZqoM0nX8acLo3iwo+zD+zA4pz/ekLOnmDRNIVSo="; 9 + rev = "d85e8e288d69788e0c3202bb3dab9c3450a98914"; 10 + sha256 = "sha256-mSn2gGidH4iSZ0fhf3UPh9pwMQurK0YGW2OAtdEWFBQ="; 11 11 }; 12 12 meta = with lib; { 13 13 homepage = "https://github.com/discourse/discourse-calendar";
+8 -8
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/gemset.nix
··· 5 5 platforms = []; 6 6 source = { 7 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "0dmywys50074vj5rivpx188b00qimlc4jn84xzqlialrgp3ckq5f"; 8 + sha256 = "15m0b1im6i401ab51vzr7f8nk8kys1qa0snnl741y3sir3xd07jp"; 9 9 type = "gem"; 10 10 }; 11 - version = "7.0.4.2"; 11 + version = "7.0.4.3"; 12 12 }; 13 13 concurrent-ruby = { 14 14 groups = ["default"]; 15 15 platforms = []; 16 16 source = { 17 17 remotes = ["https://rubygems.org"]; 18 - sha256 = "1qnsflsbjj38im8xq35g0vihlz96h09wjn2dad5g543l3vvrkrx5"; 18 + sha256 = "0krcwb6mn0iklajwngwsg850nk8k9b35dhmc2qkbdqvmifdi2y9q"; 19 19 type = "gem"; 20 20 }; 21 - version = "1.2.0"; 21 + version = "1.2.2"; 22 22 }; 23 23 i18n = { 24 24 dependencies = ["concurrent-ruby"]; ··· 26 26 platforms = []; 27 27 source = { 28 28 remotes = ["https://rubygems.org"]; 29 - sha256 = "1vdcchz7jli1p0gnc669a7bj3q1fv09y9ppf0y3k0vb1jwdwrqwi"; 29 + sha256 = "1yk33slipi3i1kydzrrchbi7cgisaxym6pgwlzx7ir8vjk6wl90x"; 30 30 type = "gem"; 31 31 }; 32 - version = "1.12.0"; 32 + version = "1.13.0"; 33 33 }; 34 34 minitest = { 35 35 groups = ["default"]; 36 36 platforms = []; 37 37 source = { 38 38 remotes = ["https://rubygems.org"]; 39 - sha256 = "1kjy67qajw4rnkbjs5jyk7kc3lyhz5613fwj1i8f6ppdk4zampy0"; 39 + sha256 = "0ic7i5z88zcaqnpzprf7saimq2f6sad57g5mkkqsrqrcd6h3mx06"; 40 40 type = "gem"; 41 41 }; 42 - version = "5.17.0"; 42 + version = "5.18.0"; 43 43 }; 44 44 rrule = { 45 45 dependencies = ["activesupport"];
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-canned-replies"; 8 - rev = "b30b20d43ba5cbbb1ff1476bb43e97d5b8a807e8"; 9 - sha256 = "sha256-XROYSqGy4Z39VAlMXCbx9d+kivpknN98Kn/HhoC4ndQ="; 8 + rev = "5a2d9a11ef3f07fc781acd83770bafc14eca2c1b"; 9 + sha256 = "sha256-R6CmL1hqqybc/I3oAzr3xZ4WThPWQirMjlXkF82xmIk="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-canned-replies";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-chat-integration"; 8 - rev = "0522ad64143c9aedb27e00b642e82cad1273c83b"; 9 - sha256 = "sha256-GsoDVZkmKEX8+HwwQXptmmRuykTDqkbsL4WbFsL/PSo="; 8 + rev = "9647c7afc0df42b8e2b5ae585afaf51f107fa195"; 9 + sha256 = "sha256-lP404OJvEEQVKIQTBMca7zb/YxQ6HXcPG1jMKpEB3iA="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-chat-integration";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-data-explorer"; 8 - rev = "556d12ac507b140d1ed9d307cad58fa8e1d8cfdd"; 9 - sha256 = "sha256-fcO/j506kIydnipx6VsuMkj4Wb2MmPCo3LSrj9Fnczc="; 8 + rev = "f99b3af7ed4a21474f35223e83013ee3e8ad7002"; 9 + sha256 = "sha256-3bBKBSc/+yF9ogNj3J6HXM3ynoAoUZeHhZOOhTfbxDw="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-data-explorer";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-docs"; 8 - rev = "bf1c4574a61b053c136e2b181ba2fedb6c16f838"; 9 - sha256 = "sha256-voo3Q+e/Ud1Hg+SdHlvRsxoacFnPOQXwWu/g6n5cR3Y="; 8 + rev = "0b4d2f3691048b6e0e257a1ac9ed01f66f662ba8"; 9 + sha256 = "sha256-HeIUCTbMNpuo6zeaDClsGrUOz4m0L+4UK7AwPsrKIHY="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-docs";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - addressable (2.8.1) 4 + addressable (2.8.4) 5 5 public_suffix (>= 2.0.2, < 6.0) 6 6 faraday (2.7.4) 7 7 faraday-net_http (>= 2.0, < 3.1) ··· 24 24 sawyer (= 0.9.2) 25 25 26 26 BUNDLED WITH 27 - 2.4.6 27 + 2.4.10
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-github"; 9 - rev = "148f28c1089288c9527fab1dcb88f13a5a5b0d10"; 10 - sha256 = "sha256-u91X+YFoKE0lP4RnNWX2XzNrJvlOQPbuZzFqBEVf84w="; 9 + rev = "77e336a1b4ea08e2bb8a010d30146e4844afb3f3"; 10 + sha256 = "sha256-VHuf4ymT+W676RAuA3WPQl9QXLdQz4s8vP9EC8XAwW0="; 11 11 }; 12 12 meta = with lib; { 13 13 homepage = "https://github.com/discourse/discourse-github";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix
··· 5 5 platforms = []; 6 6 source = { 7 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "1ypdmpdn20hxp5vwxz3zc04r5xcwqc25qszdlg41h8ghdqbllwmw"; 8 + sha256 = "15s8van7r2ad3dq6i03l3z4hqnvxcq75a3h72kxvf9an53sqma20"; 9 9 type = "gem"; 10 10 }; 11 - version = "2.8.1"; 11 + version = "2.8.4"; 12 12 }; 13 13 faraday = { 14 14 dependencies = ["faraday-net_http" "ruby2_keywords"];
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile.lock
··· 12 12 pyu-ruby-sasl (~> 0.0.3.2) 13 13 rubyntlm (~> 0.3.4) 14 14 pyu-ruby-sasl (0.0.3.3) 15 - rack (2.2.6.2) 15 + rack (2.2.7) 16 16 rubyntlm (0.3.4) 17 17 18 18 PLATFORMS ··· 25 25 rubyntlm (= 0.3.4) 26 26 27 27 BUNDLED WITH 28 - 2.4.6 28 + 2.4.10
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "jonmbake"; 8 8 repo = "discourse-ldap-auth"; 9 - rev = "2f7a04b9fbeda0c8ab5c70e9012e4914ede9a707"; 10 - sha256 = "sha256-zBug9PHgvRsdQjvfWE5Bylm+0Ot+jBHFrbux7+Kn72c="; 9 + rev = "edcf06957090e8d978a89fe7b07a6ba56fe35214"; 10 + sha256 = "sha256-VxBBip8QEXDQGDOsU5cXjUZe2HThJn20BPsNr33KhKI="; 11 11 }; 12 12 meta = with lib; { 13 13 homepage = "https://github.com/jonmbake/discourse-ldap-auth";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/gemset.nix
··· 56 56 platforms = []; 57 57 source = { 58 58 remotes = ["https://rubygems.org"]; 59 - sha256 = "0qvp6h2abmlsl4sqjsvac03cr2mxq6143gbx4kq52rpazp021qsb"; 59 + sha256 = "16w217k9z02c4hqizym8dkj6bqmmzx4qdvqpnskgzf174a5pwdxk"; 60 60 type = "gem"; 61 61 }; 62 - version = "2.2.6.2"; 62 + version = "2.2.7"; 63 63 }; 64 64 rubyntlm = { 65 65 groups = ["default"];
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-openid-connect"; 9 - rev = "fd552d5eee75ba5710ce92bcd2fa7457ec98bcab"; 10 - sha256 = "sha256-+58QfVvA6BqI/5AfdI4RiSSMzWHvAJMxPvDS2r5FieU="; 9 + rev = "a16d5edd386f4099064753a4eed72ecb9c1bb1a8"; 10 + sha256 = "sha256-9Fuu/UFmU4Gpkm5cRKOgDK0bt7nD545X18wtue+IrN8="; 11 11 }; 12 12 meta = with lib; { 13 13 homepage = "https://github.com/discourse/discourse-openid-connect";
+1 -1
pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/Gemfile.lock
··· 13 13 webrick (= 1.7.0) 14 14 15 15 BUNDLED WITH 16 - 2.4.6 16 + 2.4.10
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "discourse"; 8 8 repo = "discourse-prometheus"; 9 - rev = "78324fbaa8cfa3040ee7e01ac793ad2515b6c004"; 10 - sha256 = "sha256-xzI6gzRztLuEzFHlMi3iXZP9bRRMsRHRQEBrwqyzpdk="; 9 + rev = "802cb5aa89838ecb3078dbe21b70d87b1675d89e"; 10 + sha256 = "sha256-tgujK/k/7l/9dAFna5sfUpgP0PVfjk+aGRbqZ70lmRw="; 11 11 }; 12 12 13 13 patches = [
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-reactions/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-reactions"; 8 - rev = "aba16d53d15ceca9ae18595ae85defbd10fe0256"; 9 - sha256 = "sha256-mGyMQGNa5Q2hMQkdIsa1JArA6cqSK+FmGSDJFZxS/go="; 8 + rev = "01aca15b2774c088f3673118e92e9469f37d2fb6"; 9 + sha256 = "sha256-txQ1G2pBcl4bMBwv3vTs9dwBGKp2uEBvK7BuqQ1O8xg="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-reactions";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-saved-searches"; 8 - rev = "d0b568efe6f829617a5bb85793f0ec1d697f2a96"; 9 - sha256 = "sha256-455ovBExE2+vuZOc0bESAbhtTOXqkMrQ//mVSIitLig="; 8 + rev = "5c6d1b6c186c5c96bb92bd6de62d3bc2da6a5b68"; 9 + sha256 = "sha256-Z9wWwf9gH/Iainxx089J4eT7MpQeHpFXgTU40p/IcYY="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-saved-searches";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-solved"; 8 - rev = "8580f96fdf64abf8b22fa4b28d67a4cb0d72fc42"; 9 - sha256 = "sha256-YpUybEXQuPeDxxdX9dMNw4h6Mh/zNUaiR3bwzck5Urg="; 8 + rev = "29a991e60f3ca3bb44d382d675e4458794a683f3"; 9 + sha256 = "sha256-6flXuGA7SdIlGLYzyY5AXzQF/cEs39XfeptoBia8SHw="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-solved";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-spoiler-alert"; 8 - rev = "a5fdb9096d638ac4a2a3f8ea6b02b6cb04c667d8"; 9 - sha256 = "sha256-S2Xtd/csB1YI85OA+2UO+OgF5u75Oi2YgIukQNOTQjk="; 8 + rev = "0ee68da1fe1d029685a373df7fc874fcd2e50991"; 9 + sha256 = "sha256-z+0RL7HAJ92TyI1z2DBpirYN7IWzV7iGejs8Howo2+s="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-spoiler-alert";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-voting"; 8 - rev = "54e134c9b4dfeeb7585ff2c2a782990308733d8b"; 9 - sha256 = "sha256-0V+4G2XxUjL424DChFIFjCKm2zWaTAXOSiB9Ic8/lF0="; 8 + rev = "d9cab9664263e75d46533fb83586ce88cb2b6cfe"; 9 + sha256 = "sha256-cKbsc2ZPXaU4CAzM+oqwbs93l3NMrOGw4IBZLVZIDyw="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-voting";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix
··· 5 5 src = fetchFromGitHub { 6 6 owner = "discourse"; 7 7 repo = "discourse-yearly-review"; 8 - rev = "cb9a2df92788b0a285a595d4acf1749620f62974"; 9 - sha256 = "sha256-Hu61ULEXUxb/cjH7Z47hpBchyUTkz0QqunWoW8mSVQg="; 8 + rev = "af7e294d04ca7b0c64dd604d19a553500accee51"; 9 + sha256 = "sha256-ioUJqLe/sUDKKa106hGY4OhwOgC+96YFQ4Lqr/CFF7Y="; 10 10 }; 11 11 meta = with lib; { 12 12 homepage = "https://github.com/discourse/discourse-yearly-review";
+9 -9
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
··· 18 18 # this allows us to include the bits of rails we use without pieces we do not. 19 19 # 20 20 # To issue a rails update bump the version number here 21 - rails_version = "7.0.4.1" 21 + rails_version = "7.0.4.3" 22 22 gem "actionmailer", rails_version 23 23 gem "actionpack", rails_version 24 24 gem "actionview", rails_version ··· 41 41 42 42 gem "discourse-seed-fu" 43 43 44 - gem "mail", git: "https://github.com/discourse/mail.git" 44 + gem "mail" 45 45 gem "mini_mime" 46 46 gem "mini_suffix" 47 47 ··· 71 71 72 72 gem "fast_xs", platform: :ruby 73 73 74 - gem "xorcist" 75 - 76 74 gem "fastimage" 77 75 78 76 gem "aws-sdk-s3", require: false ··· 105 103 gem "mini_sql" 106 104 gem "pry-rails", require: false 107 105 gem "pry-byebug", require: false 108 - gem "r2", require: false 106 + gem "rtlcss", require: false 109 107 gem "rake" 110 108 111 109 gem "thor", require: false ··· 180 178 gem "better_errors", platform: :mri, require: !!ENV["BETTER_ERRORS"] 181 179 gem "binding_of_caller" 182 180 gem "yaml-lint" 181 + gem "yard" 183 182 end 184 183 185 184 if ENV["ALLOW_DEV_POPULATE"] == "1" ··· 229 228 gem "logstash-logger", require: false 230 229 gem "logster" 231 230 232 - # NOTE: later versions of sassc are causing a segfault, possibly dependent on processer architecture 233 - # and until resolved should be locked at 2.0.1 234 - gem "sassc", "2.0.1", require: false 235 - gem "sassc-rails" 231 + # These are forks of sassc and sassc-rails with dart-sass support 232 + gem "dartsass-ruby" 233 + gem "dartsass-sprockets" 236 234 237 235 gem "rotp", require: false 238 236 ··· 279 277 280 278 # Workaround until Ruby ships with cgi version 0.3.6 or higher. 281 279 gem "cgi", ">= 0.3.6", require: false 280 + 281 + gem "tzinfo-data"
+111 -106
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
··· 1 - GIT 2 - remote: https://github.com/discourse/mail.git 3 - revision: 5b700fc95ee66378e0cf2559abc73c8bc3062a4b 4 - specs: 5 - mail (2.8.0.edge) 6 - mini_mime (>= 0.1.1) 7 - 8 1 GIT 9 2 remote: https://github.com/rails/sprockets 10 3 revision: f4d3dae71ef29c44b75a49cfbf8032cce07b423a ··· 17 10 GEM 18 11 remote: https://rubygems.org/ 19 12 specs: 20 - actionmailer (7.0.4.1) 21 - actionpack (= 7.0.4.1) 22 - actionview (= 7.0.4.1) 23 - activejob (= 7.0.4.1) 24 - activesupport (= 7.0.4.1) 13 + actionmailer (7.0.4.3) 14 + actionpack (= 7.0.4.3) 15 + actionview (= 7.0.4.3) 16 + activejob (= 7.0.4.3) 17 + activesupport (= 7.0.4.3) 25 18 mail (~> 2.5, >= 2.5.4) 26 19 net-imap 27 20 net-pop 28 21 net-smtp 29 22 rails-dom-testing (~> 2.0) 30 - actionpack (7.0.4.1) 31 - actionview (= 7.0.4.1) 32 - activesupport (= 7.0.4.1) 23 + actionpack (7.0.4.3) 24 + actionview (= 7.0.4.3) 25 + activesupport (= 7.0.4.3) 33 26 rack (~> 2.0, >= 2.2.0) 34 27 rack-test (>= 0.6.3) 35 28 rails-dom-testing (~> 2.0) 36 29 rails-html-sanitizer (~> 1.0, >= 1.2.0) 37 - actionview (7.0.4.1) 38 - activesupport (= 7.0.4.1) 30 + actionview (7.0.4.3) 31 + activesupport (= 7.0.4.3) 39 32 builder (~> 3.1) 40 33 erubi (~> 1.4) 41 34 rails-dom-testing (~> 2.0) ··· 44 37 actionview (>= 6.0.a) 45 38 active_model_serializers (0.8.4) 46 39 activemodel (>= 3.0) 47 - activejob (7.0.4.1) 48 - activesupport (= 7.0.4.1) 40 + activejob (7.0.4.3) 41 + activesupport (= 7.0.4.3) 49 42 globalid (>= 0.3.6) 50 - activemodel (7.0.4.1) 51 - activesupport (= 7.0.4.1) 52 - activerecord (7.0.4.1) 53 - activemodel (= 7.0.4.1) 54 - activesupport (= 7.0.4.1) 55 - activesupport (7.0.4.1) 43 + activemodel (7.0.4.3) 44 + activesupport (= 7.0.4.3) 45 + activerecord (7.0.4.3) 46 + activemodel (= 7.0.4.3) 47 + activesupport (= 7.0.4.3) 48 + activesupport (7.0.4.3) 56 49 concurrent-ruby (~> 1.0, >= 1.0.2) 57 50 i18n (>= 1.6, < 2) 58 51 minitest (>= 5.1) 59 52 tzinfo (~> 2.0) 60 - addressable (2.8.1) 53 + addressable (2.8.4) 61 54 public_suffix (>= 2.0.2, < 6.0) 62 55 annotate (3.2.0) 63 56 activerecord (>= 3.2, < 8.0) ··· 88 81 rack (>= 0.9.0) 89 82 binding_of_caller (1.0.0) 90 83 debug_inspector (>= 0.0.1) 91 - bootsnap (1.15.0) 84 + bootsnap (1.16.0) 92 85 msgpack (~> 1.2) 93 86 builder (3.2.4) 94 87 bullet (7.0.7) 95 88 activesupport (>= 3.0.0) 96 89 uniform_notifier (~> 1.11) 97 90 byebug (11.1.3) 98 - capybara (3.38.0) 91 + capybara (3.39.0) 99 92 addressable 100 93 matrix 101 94 mini_mime (>= 0.1.3) ··· 110 103 chunky_png (1.4.0) 111 104 coderay (1.1.3) 112 105 colored2 (3.1.2) 113 - concurrent-ruby (1.2.0) 114 - connection_pool (2.3.0) 106 + concurrent-ruby (1.2.2) 107 + connection_pool (2.4.0) 115 108 cose (1.3.0) 116 109 cbor (~> 0.5.9) 117 110 openssl-signature_algorithm (~> 1.0) ··· 121 114 crass (1.0.6) 122 115 css_parser (1.14.0) 123 116 addressable 117 + dartsass-ruby (3.0.1) 118 + sass-embedded (~> 1.54) 119 + dartsass-sprockets (3.0.0) 120 + dartsass-ruby (~> 3.0) 121 + railties (>= 4.0.0) 122 + sprockets (> 3.0) 123 + sprockets-rails 124 + tilt 124 125 date (3.3.3) 125 126 debug_inspector (1.1.0) 126 127 diff-lcs (1.5.0) ··· 138 139 regexp_parser (~> 2.2) 139 140 email_reply_trimmer (0.1.13) 140 141 erubi (1.12.0) 141 - excon (0.97.2) 142 + excon (0.99.0) 142 143 execjs (2.8.1) 143 144 exifr (1.3.10) 144 145 fabrication (2.30.0) ··· 149 150 faraday-net_http (>= 2.0, < 3.1) 150 151 ruby2_keywords (>= 0.0.4) 151 152 faraday-net_http (3.0.2) 152 - faraday-retry (2.0.0) 153 + faraday-retry (2.1.0) 153 154 faraday (~> 2.0) 154 155 fast_blank (1.0.1) 155 156 fast_xs (0.8.0) ··· 157 158 ffi (1.15.5) 158 159 fspath (3.1.2) 159 160 gc_tracer (1.5.1) 160 - globalid (1.0.1) 161 + globalid (1.1.0) 161 162 activesupport (>= 5.0) 163 + google-protobuf (3.22.3) 162 164 guess_html_encoding (0.0.11) 163 165 hana (1.3.7) 164 166 hashdiff (1.0.1) ··· 169 171 http_accept_language (2.1.1) 170 172 i18n (1.12.0) 171 173 concurrent-ruby (~> 1.0) 172 - image_optim (0.31.2) 174 + image_optim (0.31.3) 173 175 exifr (~> 1.2, >= 1.2.2) 174 176 fspath (~> 3.0) 175 177 image_size (>= 1.5, < 4) ··· 186 188 hana (~> 1.3) 187 189 regexp_parser (~> 2.0) 188 190 uri_template (~> 0.7) 189 - jwt (2.6.0) 191 + jwt (2.7.0) 190 192 kgio (2.11.4) 191 193 libv8-node (16.10.0.0) 192 194 listen (3.8.0) ··· 201 203 logstash-event (1.2.02) 202 204 logstash-logger (0.26.1) 203 205 logstash-event (~> 1.2) 204 - logster (2.11.3) 205 - loofah (2.19.1) 206 + logster (2.12.2) 207 + loofah (2.20.0) 206 208 crass (~> 1.0.2) 207 209 nokogiri (>= 1.5.9) 208 210 lru_redux (1.1.0) 209 211 lz4-ruby (0.3.3) 212 + mail (2.8.1) 213 + mini_mime (>= 0.1.1) 214 + net-imap 215 + net-pop 216 + net-smtp 210 217 matrix (0.4.2) 211 218 maxminddb (0.1.22) 212 219 memory_profiler (1.0.1) ··· 222 229 mini_sql (1.4.0) 223 230 mini_suffix (0.3.3) 224 231 ffi (~> 1.9) 225 - minitest (5.17.0) 232 + minitest (5.18.0) 226 233 mocha (2.0.2) 227 234 ruby2_keywords (>= 0.0.5) 228 - msgpack (1.6.0) 235 + msgpack (1.7.0) 229 236 multi_json (1.15.0) 230 237 multi_xml (0.6.0) 231 238 mustache (1.1.1) ··· 240 247 timeout 241 248 net-smtp (0.3.3) 242 249 net-protocol 243 - nio4r (2.5.8) 244 - nokogiri (1.14.0) 250 + nio4r (2.5.9) 251 + nokogiri (1.14.3) 245 252 mini_portile2 (~> 2.8.0) 246 253 racc (~> 1.4) 247 254 oauth (1.1.0) ··· 279 286 omniauth-twitter (1.4.0) 280 287 omniauth-oauth (~> 1.1) 281 288 rack 282 - openssl (3.0.2) 283 - openssl-signature_algorithm (1.2.1) 284 - openssl (> 2.0, < 3.1) 289 + openssl (3.1.0) 290 + openssl-signature_algorithm (1.3.0) 291 + openssl (> 2.0) 285 292 optimist (3.0.1) 286 293 parallel (1.22.1) 287 - parallel_tests (4.1.0) 294 + parallel_tests (4.2.0) 288 295 parallel 289 - parser (3.2.0.0) 296 + parser (3.2.2.0) 290 297 ast (~> 2.4.1) 291 - pg (1.4.5) 292 - prettier_print (1.2.0) 298 + pg (1.4.6) 299 + prettier_print (1.2.1) 293 300 progress (3.6.0) 294 301 pry (0.14.2) 295 302 coderay (~> 1.1) ··· 300 307 pry-rails (0.3.9) 301 308 pry (>= 0.10.4) 302 309 public_suffix (5.0.1) 303 - puma (6.0.2) 310 + puma (6.2.1) 304 311 nio4r (~> 2.0) 305 - r2 (0.2.7) 306 312 racc (1.6.2) 307 - rack (2.2.6.2) 308 - rack-mini-profiler (3.0.0) 313 + rack (2.2.6.4) 314 + rack-mini-profiler (3.1.0) 309 315 rack (>= 1.2.0) 310 - rack-protection (3.0.5) 316 + rack-protection (3.0.6) 311 317 rack 312 - rack-test (2.0.2) 318 + rack-test (2.1.0) 313 319 rack (>= 1.3) 314 320 rails-dom-testing (2.0.3) 315 321 activesupport (>= 4.2.0) 316 322 nokogiri (>= 1.6) 317 323 rails-html-sanitizer (1.5.0) 318 324 loofah (~> 2.19, >= 2.19.1) 319 - rails_failover (0.8.1) 325 + rails_failover (1.0.0) 320 326 activerecord (> 6.0, < 7.1) 321 327 concurrent-ruby 322 328 railties (> 6.0, < 7.1) 323 329 rails_multisite (4.0.1) 324 330 activerecord (> 5.0, < 7.1) 325 331 railties (> 5.0, < 7.1) 326 - railties (7.0.4.1) 327 - actionpack (= 7.0.4.1) 328 - activesupport (= 7.0.4.1) 332 + railties (7.0.4.3) 333 + actionpack (= 7.0.4.3) 334 + activesupport (= 7.0.4.3) 329 335 method_source 330 336 rake (>= 12.2) 331 337 thor (~> 1.0) 332 338 zeitwerk (~> 2.5) 333 339 rainbow (3.1.1) 334 - raindrops (0.20.0) 340 + raindrops (0.20.1) 335 341 rake (13.0.6) 336 342 rb-fsevent (0.11.2) 337 343 rb-inotify (0.10.1) ··· 341 347 msgpack (>= 0.4.3) 342 348 optimist (>= 3.0.0) 343 349 rchardet (1.8.0) 344 - redis (4.8.0) 350 + redis (4.8.1) 345 351 redis-namespace (1.10.0) 346 352 redis (>= 4) 347 - regexp_parser (2.6.2) 353 + regexp_parser (2.8.0) 348 354 request_store (1.5.1) 349 355 rack (>= 1.4) 350 356 rexml (3.2.5) ··· 358 364 rspec-core (~> 3.12.0) 359 365 rspec-expectations (~> 3.12.0) 360 366 rspec-mocks (~> 3.12.0) 361 - rspec-core (3.12.0) 367 + rspec-core (3.12.1) 362 368 rspec-support (~> 3.12.0) 363 369 rspec-expectations (3.12.2) 364 370 diff-lcs (>= 1.2.0, < 2.0) ··· 366 372 rspec-html-matchers (0.10.0) 367 373 nokogiri (~> 1) 368 374 rspec (>= 3.0.0.a) 369 - rspec-mocks (3.12.3) 375 + rspec-mocks (3.12.5) 370 376 diff-lcs (>= 1.2.0, < 2.0) 371 377 rspec-support (~> 3.12.0) 372 378 rspec-rails (6.0.1) ··· 385 391 json-schema (>= 2.2, < 4.0) 386 392 railties (>= 3.1, < 7.1) 387 393 rspec-core (>= 2.14) 388 - rubocop (1.44.0) 394 + rtlcss (0.2.0) 395 + mini_racer (~> 0.6.3) 396 + rubocop (1.50.2) 389 397 json (~> 2.3) 390 398 parallel (~> 1.10) 391 399 parser (>= 3.2.0.0) 392 400 rainbow (>= 2.2.2, < 4.0) 393 401 regexp_parser (>= 1.8, < 3.0) 394 402 rexml (>= 3.2.5, < 4.0) 395 - rubocop-ast (>= 1.24.1, < 2.0) 403 + rubocop-ast (>= 1.28.0, < 2.0) 396 404 ruby-progressbar (~> 1.7) 397 405 unicode-display_width (>= 2.4.0, < 3.0) 398 - rubocop-ast (1.24.1) 399 - parser (>= 3.1.1.0) 400 - rubocop-capybara (2.17.0) 406 + rubocop-ast (1.28.0) 407 + parser (>= 3.2.1.0) 408 + rubocop-capybara (2.17.1) 401 409 rubocop (~> 1.41) 402 - rubocop-discourse (3.0.3) 410 + rubocop-discourse (3.2.0) 403 411 rubocop (>= 1.1.0) 404 412 rubocop-rspec (>= 2.0.0) 405 - rubocop-rspec (2.18.1) 413 + rubocop-rspec (2.19.0) 406 414 rubocop (~> 1.33) 407 415 rubocop-capybara (~> 2.17) 408 - ruby-prof (1.4.5) 409 - ruby-progressbar (1.11.0) 416 + ruby-prof (1.6.1) 417 + ruby-progressbar (1.13.0) 410 418 ruby-readability (0.7.0) 411 419 guess_html_encoding (>= 0.0.4) 412 420 nokogiri (>= 1.6.0) 413 421 ruby2_keywords (0.0.5) 414 422 rubyzip (2.3.2) 415 - sanitize (6.0.0) 423 + sanitize (6.0.1) 416 424 crass (~> 1.0.2) 417 425 nokogiri (>= 1.12.0) 418 - sassc (2.0.1) 419 - ffi (~> 1.9) 420 - rake 421 - sassc-rails (2.1.2) 422 - railties (>= 4.0.0) 423 - sassc (>= 2.0) 424 - sprockets (> 3.0) 425 - sprockets-rails 426 - tilt 427 - selenium-webdriver (4.8.0) 426 + sass-embedded (1.62.0) 427 + google-protobuf (~> 3.21) 428 + rake (>= 10.0.0) 429 + selenium-webdriver (4.8.6) 428 430 rexml (~> 3.2, >= 3.2.5) 429 431 rubyzip (>= 1.2.2, < 3.0) 430 432 websocket (~> 1.0) ··· 448 450 activesupport (>= 5.2) 449 451 sprockets (>= 3.0.0) 450 452 sshkey (2.0.0) 451 - stackprof (0.2.23) 452 - syntax_tree (5.2.0) 453 + stackprof (0.2.25) 454 + syntax_tree (6.1.1) 453 455 prettier_print (>= 1.2.0) 454 456 syntax_tree-disable_ternary (1.0.0) 455 - test-prof (1.1.0) 457 + test-prof (1.2.1) 456 458 thor (1.2.1) 457 - tilt (2.0.11) 458 - timeout (0.3.1) 459 - tzinfo (2.0.5) 459 + tilt (2.1.0) 460 + timeout (0.3.2) 461 + tzinfo (2.0.6) 460 462 concurrent-ruby (~> 1.0) 463 + tzinfo-data (1.2023.3) 464 + tzinfo (>= 1.0.0) 461 465 uglifier (4.2.0) 462 466 execjs (>= 0.3.0, < 3) 463 467 unf (0.1.4) ··· 468 472 kgio (~> 2.6) 469 473 raindrops (~> 0.7) 470 474 uniform_notifier (1.16.0) 471 - uri (0.12.0) 475 + uri (0.12.1) 472 476 uri_template (0.7.0) 473 - version_gem (1.1.1) 477 + version_gem (1.1.2) 474 478 web-push (3.0.0) 475 479 hkdf (~> 1.0) 476 480 jwt (~> 2.0) ··· 485 489 hashdiff (>= 0.4.0, < 2.0.0) 486 490 webrick (1.7.0) 487 491 websocket (1.2.9) 488 - xorcist (1.1.3) 489 492 xpath (3.2.0) 490 493 nokogiri (~> 1.8) 491 494 yaml-lint (0.1.2) 492 - zeitwerk (2.6.6) 495 + yard (0.9.34) 496 + zeitwerk (2.6.7) 493 497 494 498 PLATFORMS 495 499 ruby 496 500 497 501 DEPENDENCIES 498 - actionmailer (= 7.0.4.1) 499 - actionpack (= 7.0.4.1) 500 - actionview (= 7.0.4.1) 502 + actionmailer (= 7.0.4.3) 503 + actionpack (= 7.0.4.3) 504 + actionview (= 7.0.4.3) 501 505 actionview_precompiler 502 506 active_model_serializers (~> 0.8.3) 503 - activemodel (= 7.0.4.1) 504 - activerecord (= 7.0.4.1) 505 - activesupport (= 7.0.4.1) 507 + activemodel (= 7.0.4.3) 508 + activerecord (= 7.0.4.3) 509 + activesupport (= 7.0.4.3) 506 510 addressable 507 511 annotate 508 512 aws-sdk-s3 ··· 520 524 cose 521 525 cppjieba_rb 522 526 css_parser 527 + dartsass-ruby 528 + dartsass-sprockets 523 529 diffy 524 530 digest 525 531 discourse-fonts ··· 551 557 loofah 552 558 lru_redux 553 559 lz4-ruby 554 - mail! 560 + mail 555 561 maxminddb 556 562 memory_profiler 557 563 message_bus ··· 581 587 pry-byebug 582 588 pry-rails 583 589 puma 584 - r2 585 590 rack 586 591 rack-mini-profiler 587 592 rack-protection 588 593 rails_failover 589 594 rails_multisite 590 - railties (= 7.0.4.1) 595 + railties (= 7.0.4.3) 591 596 rake 592 597 rb-fsevent 593 598 rbtrace ··· 602 607 rspec-rails 603 608 rss 604 609 rswag-specs 610 + rtlcss 605 611 rubocop-discourse 606 612 ruby-prof 607 613 ruby-readability 608 614 rubyzip 609 615 sanitize 610 - sassc (= 2.0.1) 611 - sassc-rails 612 616 selenium-webdriver 613 617 shoulda-matchers 614 618 sidekiq ··· 621 625 syntax_tree-disable_ternary 622 626 test-prof 623 627 thor 628 + tzinfo-data 624 629 uglifier 625 630 unf 626 631 unicorn ··· 628 633 webdrivers 629 634 webmock 630 635 webrick 631 - xorcist 632 636 yaml-lint 637 + yard 633 638 634 639 BUNDLED WITH 635 - 2.4.6 640 + 2.4.10
+191 -160
pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
··· 5 5 platforms = []; 6 6 source = { 7 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "1v4ra6jx4bynzj3im6fjbyyy1h6582qg72r6i42myls84z75qsxk"; 8 + sha256 = "112ga1x7y5l0fmammlwajzqxp0fbg1ciw7f6ad9a55wrb0n3hk3y"; 9 9 type = "gem"; 10 10 }; 11 - version = "7.0.4.1"; 11 + version = "7.0.4.3"; 12 12 }; 13 13 actionpack = { 14 14 dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; ··· 16 16 platforms = []; 17 17 source = { 18 18 remotes = ["https://rubygems.org"]; 19 - sha256 = "1g823r92w9c1si2mxd82mibdva1fyw0ccin0dc2bpbszk6zfyxrh"; 19 + sha256 = "1cb0hqkfkc0b9s7swvi4nf64c24i3ma1gv09anr8a81k56s0rwxd"; 20 20 type = "gem"; 21 21 }; 22 - version = "7.0.4.1"; 22 + version = "7.0.4.3"; 23 23 }; 24 24 actionview = { 25 25 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; ··· 27 27 platforms = []; 28 28 source = { 29 29 remotes = ["https://rubygems.org"]; 30 - sha256 = "1pfnbkq1hzzxzrnc0m1dd0l2cad6x041dfv3ndrkk5llcjarphx2"; 30 + sha256 = "1h9027sqzfcbc84dnzw8nxjyg15zrk1y2fc0468wg1xi9nmyw96z"; 31 31 type = "gem"; 32 32 }; 33 - version = "7.0.4.1"; 33 + version = "7.0.4.3"; 34 34 }; 35 35 actionview_precompiler = { 36 36 dependencies = ["actionview"]; ··· 60 60 platforms = []; 61 61 source = { 62 62 remotes = ["https://rubygems.org"]; 63 - sha256 = "0yrjvd2w3l6fd5s984hn885dwcxj078ggfbbr1cpynjnqxrvvm6f"; 63 + sha256 = "08xawfj8lkxlfwnmx3f7324w126rli6mqdx9j6ybz2ks9vxz0x3w"; 64 64 type = "gem"; 65 65 }; 66 - version = "7.0.4.1"; 66 + version = "7.0.4.3"; 67 67 }; 68 68 activemodel = { 69 69 dependencies = ["activesupport"]; ··· 71 71 platforms = []; 72 72 source = { 73 73 remotes = ["https://rubygems.org"]; 74 - sha256 = "0y1v2jy4cwi6dkd9yr399kw53smaiyiqx7bsnljwmsz98g125sdw"; 74 + sha256 = "0ymhsxgdb68zgf4zp07g2bymmpgn0b9r38avn9pagz1p5zy1ql9v"; 75 75 type = "gem"; 76 76 }; 77 - version = "7.0.4.1"; 77 + version = "7.0.4.3"; 78 78 }; 79 79 activerecord = { 80 80 dependencies = ["activemodel" "activesupport"]; ··· 82 82 platforms = []; 83 83 source = { 84 84 remotes = ["https://rubygems.org"]; 85 - sha256 = "1c3wvrym6ib2a6ljc4n572gsrr46hazp7f0zijm8jdc8zp3yx5vi"; 85 + sha256 = "01wb98i2zsbb4jcb4i6z72vb05wiks4hv9chc66h1rsxrv0zi4dv"; 86 86 type = "gem"; 87 87 }; 88 - version = "7.0.4.1"; 88 + version = "7.0.4.3"; 89 89 }; 90 90 activesupport = { 91 91 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; ··· 93 93 platforms = []; 94 94 source = { 95 95 remotes = ["https://rubygems.org"]; 96 - sha256 = "1j0ms94ng1hsxb37aar5j3n4mabjqvjkcl70adjrqib7grriyq7b"; 96 + sha256 = "15m0b1im6i401ab51vzr7f8nk8kys1qa0snnl741y3sir3xd07jp"; 97 97 type = "gem"; 98 98 }; 99 - version = "7.0.4.1"; 99 + version = "7.0.4.3"; 100 100 }; 101 101 addressable = { 102 102 dependencies = ["public_suffix"]; ··· 104 104 platforms = []; 105 105 source = { 106 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "1ypdmpdn20hxp5vwxz3zc04r5xcwqc25qszdlg41h8ghdqbllwmw"; 107 + sha256 = "15s8van7r2ad3dq6i03l3z4hqnvxcq75a3h72kxvf9an53sqma20"; 108 108 type = "gem"; 109 109 }; 110 - version = "2.8.1"; 110 + version = "2.8.4"; 111 111 }; 112 112 annotate = { 113 113 dependencies = ["activerecord" "rake"]; ··· 241 241 }]; 242 242 source = { 243 243 remotes = ["https://rubygems.org"]; 244 - sha256 = "1ln89f9ypzincd5hqgmzd5vvfgf7fgir56v1spsri40ma88vnipj"; 244 + sha256 = "1vcg52gwl64xhhal6kwk1pc01y1klzdlnv1awyk89kb91z010x7q"; 245 245 type = "gem"; 246 246 }; 247 - version = "1.15.0"; 247 + version = "1.16.0"; 248 248 }; 249 249 builder = { 250 250 groups = ["default" "development" "test"]; ··· 287 287 platforms = []; 288 288 source = { 289 289 remotes = ["https://rubygems.org"]; 290 - sha256 = "123198zk2ak8mziwa5jc3ckgpmsg08zn064n3aywnqm9s1bwjv3v"; 290 + sha256 = "06b4nlhirsq8ny17s8zgz7qyvl9v41rixj1xkviiiwxlnjz982d3"; 291 291 type = "gem"; 292 292 }; 293 - version = "3.38.0"; 293 + version = "3.39.0"; 294 294 }; 295 295 cbor = { 296 296 groups = ["default"]; ··· 361 361 platforms = []; 362 362 source = { 363 363 remotes = ["https://rubygems.org"]; 364 - sha256 = "1qnsflsbjj38im8xq35g0vihlz96h09wjn2dad5g543l3vvrkrx5"; 364 + sha256 = "0krcwb6mn0iklajwngwsg850nk8k9b35dhmc2qkbdqvmifdi2y9q"; 365 365 type = "gem"; 366 366 }; 367 - version = "1.2.0"; 367 + version = "1.2.2"; 368 368 }; 369 369 connection_pool = { 370 370 groups = ["default"]; 371 371 platforms = []; 372 372 source = { 373 373 remotes = ["https://rubygems.org"]; 374 - sha256 = "1nj4r58m5cpfdsijj6gjfs3yzcnxq2halagjk07wjcrgj6z8ayb7"; 374 + sha256 = "0dndngqvkm2ih3wqn5ilf9980c1cc57lqn5lywx3myalzpilq05z"; 375 375 type = "gem"; 376 376 }; 377 - version = "2.3.0"; 377 + version = "2.4.0"; 378 378 }; 379 379 cose = { 380 380 dependencies = ["cbor" "openssl-signature_algorithm"]; ··· 429 429 }; 430 430 version = "1.14.0"; 431 431 }; 432 + dartsass-ruby = { 433 + dependencies = ["sass-embedded"]; 434 + groups = ["default"]; 435 + platforms = []; 436 + source = { 437 + remotes = ["https://rubygems.org"]; 438 + sha256 = "0z3gdsnyvdjgn9gwia72irqgxq04i8hv9pv60yqkd4h5nk9rx4p6"; 439 + type = "gem"; 440 + }; 441 + version = "3.0.1"; 442 + }; 443 + dartsass-sprockets = { 444 + dependencies = ["dartsass-ruby" "railties" "sprockets" "sprockets-rails" "tilt"]; 445 + groups = ["default"]; 446 + platforms = []; 447 + source = { 448 + remotes = ["https://rubygems.org"]; 449 + sha256 = "1842k5i96iiz264wzzqar2m3whs2caf0d8yhbsr6qdbi4j5pzmcx"; 450 + type = "gem"; 451 + }; 452 + version = "3.0.0"; 453 + }; 432 454 date = { 433 455 groups = ["default"]; 434 456 platforms = []; ··· 561 583 platforms = []; 562 584 source = { 563 585 remotes = ["https://rubygems.org"]; 564 - sha256 = "17prxavwwskpv7dfl3npl0pgqiqg99rrmakqj1n4m5hl69jqz8y4"; 586 + sha256 = "0j826kfvzn7nc5pv950n270r0sx1702k988ad11cdlav3dcxxw09"; 565 587 type = "gem"; 566 588 }; 567 - version = "0.97.2"; 589 + version = "0.99.0"; 568 590 }; 569 591 execjs = { 570 592 groups = ["assets" "default"]; ··· 644 666 platforms = []; 645 667 source = { 646 668 remotes = ["https://rubygems.org"]; 647 - sha256 = "07bn75d784ndj9ljqk19ff6217hkqqmxjlnjx5b9v36k2nnj9kys"; 669 + sha256 = "1zz0w4jpfa6h1wlirfcs9hzvlpijnd1nnmjq94w5yv50585p279n"; 648 670 type = "gem"; 649 671 }; 650 - version = "2.0.0"; 672 + version = "2.1.0"; 651 673 }; 652 674 fast_blank = { 653 675 groups = ["default"]; ··· 735 757 platforms = []; 736 758 source = { 737 759 remotes = ["https://rubygems.org"]; 738 - sha256 = "040bxzfd7mz1p6z4bc9vk5yrf762hdllvf98hmk848fq28xc5dsk"; 760 + sha256 = "0kqm5ndzaybpnpxqiqkc41k4ksyxl41ln8qqr6kb130cdxsf2dxk"; 739 761 type = "gem"; 740 762 }; 741 - version = "1.0.1"; 763 + version = "1.1.0"; 764 + }; 765 + google-protobuf = { 766 + groups = ["default"]; 767 + platforms = []; 768 + source = { 769 + remotes = ["https://rubygems.org"]; 770 + sha256 = "1xcg53yz44cqhcpb85w3ay80kvnniy0v441c9p08wb6zzia2mnq9"; 771 + type = "gem"; 772 + }; 773 + version = "3.22.3"; 742 774 }; 743 775 guess_html_encoding = { 744 776 groups = ["default"]; ··· 837 869 platforms = []; 838 870 source = { 839 871 remotes = ["https://rubygems.org"]; 840 - sha256 = "0acrqj9g8x39lz3z9li52wwc98d0csqarc7bv6jcfd0fp6h9zykb"; 872 + sha256 = "02iw1plldayr1l8bdw2gshq0h083h0fxwji1m1nfhzikz917c07p"; 841 873 type = "gem"; 842 874 }; 843 - version = "0.31.2"; 875 + version = "0.31.3"; 844 876 }; 845 877 image_size = { 846 878 groups = ["default"]; ··· 909 941 platforms = []; 910 942 source = { 911 943 remotes = ["https://rubygems.org"]; 912 - sha256 = "1x8zp1a2pnngxh7631s0kn0r665qkwzfp16kifmp93r4zj6ci8v8"; 944 + sha256 = "09yj3z5snhaawh2z1w45yyihzmh57m6m7dp8ra8gxavhj5kbiq5p"; 913 945 type = "gem"; 914 946 }; 915 - version = "2.6.0"; 947 + version = "2.7.0"; 916 948 }; 917 949 kgio = { 918 950 groups = ["default"]; ··· 998 1030 platforms = []; 999 1031 source = { 1000 1032 remotes = ["https://rubygems.org"]; 1001 - sha256 = "01n1ynk2xa94za8hhqy3xzfwhm24zhh3x5yllziyz3zjxxrj7fxc"; 1033 + sha256 = "18yqcf756rzxdq5pw2qrximfryv15ib7rv2g622wjig7zhvk8wx4"; 1002 1034 type = "gem"; 1003 1035 }; 1004 - version = "2.11.3"; 1036 + version = "2.12.2"; 1005 1037 }; 1006 1038 loofah = { 1007 1039 dependencies = ["crass" "nokogiri"]; ··· 1009 1041 platforms = []; 1010 1042 source = { 1011 1043 remotes = ["https://rubygems.org"]; 1012 - sha256 = "08qhzck271anrx9y6qa6mh8hwwdzsgwld8q0000rcd7yvvpnjr3c"; 1044 + sha256 = "1mi4ia13fisc97fzd8xcd9wkjdki7zfbmdn1xkdzplicir68gyp8"; 1013 1045 type = "gem"; 1014 1046 }; 1015 - version = "2.19.1"; 1047 + version = "2.20.0"; 1016 1048 }; 1017 1049 lru_redux = { 1018 1050 groups = ["default"]; ··· 1041 1073 version = "0.3.3"; 1042 1074 }; 1043 1075 mail = { 1044 - dependencies = ["mini_mime"]; 1076 + dependencies = ["mini_mime" "net-imap" "net-pop" "net-smtp"]; 1045 1077 groups = ["default"]; 1046 1078 platforms = []; 1047 1079 source = { 1048 - fetchSubmodules = false; 1049 - rev = "5b700fc95ee66378e0cf2559abc73c8bc3062a4b"; 1050 - sha256 = "0j084s1gsdwiqvm4jdayi0x4rsdrazqv8z8wkz28v7zmaymw18lz"; 1051 - type = "git"; 1052 - url = "https://github.com/discourse/mail.git"; 1080 + remotes = ["https://rubygems.org"]; 1081 + sha256 = "1bf9pysw1jfgynv692hhaycfxa8ckay1gjw5hz3madrbrynryfzc"; 1082 + type = "gem"; 1053 1083 }; 1054 - version = "2.8.0.edge"; 1084 + version = "2.8.1"; 1055 1085 }; 1056 1086 matrix = { 1057 1087 groups = ["default" "test"]; ··· 1176 1206 platforms = []; 1177 1207 source = { 1178 1208 remotes = ["https://rubygems.org"]; 1179 - sha256 = "1kjy67qajw4rnkbjs5jyk7kc3lyhz5613fwj1i8f6ppdk4zampy0"; 1209 + sha256 = "0ic7i5z88zcaqnpzprf7saimq2f6sad57g5mkkqsrqrcd6h3mx06"; 1180 1210 type = "gem"; 1181 1211 }; 1182 - version = "5.17.0"; 1212 + version = "5.18.0"; 1183 1213 }; 1184 1214 mocha = { 1185 1215 dependencies = ["ruby2_keywords"]; ··· 1201 1231 }]; 1202 1232 source = { 1203 1233 remotes = ["https://rubygems.org"]; 1204 - sha256 = "1q03pb0vq8388s431nbxabsfxnch6p304c8vnjlk0zzpcv713yr3"; 1234 + sha256 = "172ky0r1jfcm3xyg067pia7k1lhc15vw9svv93max120gcdbrvji"; 1205 1235 type = "gem"; 1206 1236 }; 1207 - version = "1.6.0"; 1237 + version = "1.7.0"; 1208 1238 }; 1209 1239 multi_json = { 1210 1240 groups = ["default"]; ··· 1296 1326 platforms = []; 1297 1327 source = { 1298 1328 remotes = ["https://rubygems.org"]; 1299 - sha256 = "0xk64wghkscs6bv2n22853k2nh39d131c6rfpnlw12mbjnnv9v1v"; 1329 + sha256 = "0w9978zwjf1qhy3amkivab0f9syz6a7k0xgydjidaf7xc831d78f"; 1300 1330 type = "gem"; 1301 1331 }; 1302 - version = "2.5.8"; 1332 + version = "2.5.9"; 1303 1333 }; 1304 1334 nokogiri = { 1305 1335 dependencies = ["mini_portile2" "racc"]; ··· 1307 1337 platforms = []; 1308 1338 source = { 1309 1339 remotes = ["https://rubygems.org"]; 1310 - sha256 = "1fqld4wnamj7awdr1lwdifpylqdrrg5adm8xj2jl9sc5ms3nxjjm"; 1340 + sha256 = "0fnw0z8zl8b5k35g9m5hhc1g4s6ajzjinhyxnqjrx7l7p07fw71v"; 1311 1341 type = "gem"; 1312 1342 }; 1313 - version = "1.14.0"; 1343 + version = "1.14.3"; 1314 1344 }; 1315 1345 oauth = { 1316 1346 dependencies = ["oauth-tty" "snaky_hash" "version_gem"]; ··· 1437 1467 platforms = []; 1438 1468 source = { 1439 1469 remotes = ["https://rubygems.org"]; 1440 - sha256 = "0mcg47zz4w902cq6c8cdj62npawgwq68sfh7n7aqy7vm3pgvls9h"; 1470 + sha256 = "0c649921vg2l939z5cc3jwd8p1v49099pdhxfk7sb9qqx5wi5873"; 1441 1471 type = "gem"; 1442 1472 }; 1443 - version = "3.0.2"; 1473 + version = "3.1.0"; 1444 1474 }; 1445 1475 openssl-signature_algorithm = { 1446 1476 dependencies = ["openssl"]; ··· 1448 1478 platforms = []; 1449 1479 source = { 1450 1480 remotes = ["https://rubygems.org"]; 1451 - sha256 = "0rwjga70kbg0rmwgksb2if34ndh9cy0fgrimkx3hjz9c68ssvpxg"; 1481 + sha256 = "103yjl68wqhl5kxaciir5jdnyi7iv9yckishdr52s5knh9g0pd53"; 1452 1482 type = "gem"; 1453 1483 }; 1454 - version = "1.2.1"; 1484 + version = "1.3.0"; 1455 1485 }; 1456 1486 optimist = { 1457 1487 groups = ["default"]; ··· 1483 1513 platforms = []; 1484 1514 source = { 1485 1515 remotes = ["https://rubygems.org"]; 1486 - sha256 = "1p0y8cgdmfwyg7plwlsjf9afshm81wj9ah8nprmpfrv28adg3vn6"; 1516 + sha256 = "11lf8vsh6kxzp7k3xzkxdmb31b01phaz5z8a7sjpq9hh6ab30k8l"; 1487 1517 type = "gem"; 1488 1518 }; 1489 - version = "4.1.0"; 1519 + version = "4.2.0"; 1490 1520 }; 1491 1521 parser = { 1492 1522 dependencies = ["ast"]; ··· 1494 1524 platforms = []; 1495 1525 source = { 1496 1526 remotes = ["https://rubygems.org"]; 1497 - sha256 = "0zk8mdyr0322r11d63rcp5jhz4lakxilhvyvdv0ql5dw4lb83623"; 1527 + sha256 = "0s5afi89p76k8vpwiqvh343pm5l23ijqlpszhz65afym3zpkxhzx"; 1498 1528 type = "gem"; 1499 1529 }; 1500 - version = "3.2.0.0"; 1530 + version = "3.2.2.0"; 1501 1531 }; 1502 1532 pg = { 1503 1533 groups = ["default"]; 1504 1534 platforms = []; 1505 1535 source = { 1506 1536 remotes = ["https://rubygems.org"]; 1507 - sha256 = "1wd6nl81nbdwck04hccsm7wf23ghpi8yddd9j4rbwyvyj0sbsff1"; 1537 + sha256 = "07m6lxljabw9kyww5k5lgsxsznsm1v5l14r1la09gqka9b5kv3yr"; 1508 1538 type = "gem"; 1509 1539 }; 1510 - version = "1.4.5"; 1540 + version = "1.4.6"; 1511 1541 }; 1512 1542 prettier_print = { 1513 1543 groups = ["default" "development" "test"]; 1514 1544 platforms = []; 1515 1545 source = { 1516 1546 remotes = ["https://rubygems.org"]; 1517 - sha256 = "1bbw4czjr2ch6m57rgjib5a35hx3g18975vwzm2iwq13pvdj9hzk"; 1547 + sha256 = "1ybgks9862zmlx71zd4j20ky86fsrp6j6m0az4hzzb1zyaskha57"; 1518 1548 type = "gem"; 1519 1549 }; 1520 - version = "1.2.0"; 1550 + version = "1.2.1"; 1521 1551 }; 1522 1552 progress = { 1523 1553 groups = ["default"]; ··· 1578 1608 platforms = []; 1579 1609 source = { 1580 1610 remotes = ["https://rubygems.org"]; 1581 - sha256 = "15hj8r6wp23k187ajmp13kldk53ygm84q4caq7nlndrn8jlcsps0"; 1582 - type = "gem"; 1583 - }; 1584 - version = "6.0.2"; 1585 - }; 1586 - r2 = { 1587 - groups = ["default"]; 1588 - platforms = []; 1589 - source = { 1590 - remotes = ["https://rubygems.org"]; 1591 - sha256 = "0wk0p55zp3l96xy5ps28b33dn5z0jwsjl74bwfdn6z81pzjs5sfk"; 1611 + sha256 = "0qqd5lb3mamh53ssx0xavmspg4blhq6hd1kipksw20bq71xcklf5"; 1592 1612 type = "gem"; 1593 1613 }; 1594 - version = "0.2.7"; 1614 + version = "6.2.1"; 1595 1615 }; 1596 1616 racc = { 1597 1617 groups = ["default" "development" "test"]; ··· 1612 1632 }]; 1613 1633 source = { 1614 1634 remotes = ["https://rubygems.org"]; 1615 - sha256 = "0qvp6h2abmlsl4sqjsvac03cr2mxq6143gbx4kq52rpazp021qsb"; 1635 + sha256 = "1qgwkcb8kxns8d5187cxjaxf18b7dmg9gh6cr9c1125m0bj2pnfk"; 1616 1636 type = "gem"; 1617 1637 }; 1618 - version = "2.2.6.2"; 1638 + version = "2.2.6.4"; 1619 1639 }; 1620 1640 rack-mini-profiler = { 1621 1641 dependencies = ["rack"]; ··· 1623 1643 platforms = []; 1624 1644 source = { 1625 1645 remotes = ["https://rubygems.org"]; 1626 - sha256 = "121fqk18x1bd52c2bkz8wkvv9nkgpqphj5aycnb7lkf67jkwic0h"; 1646 + sha256 = "13dhpp1iljhqp9c8akmp6gjhx47qf83w12ns4bif26ldkignpam1"; 1627 1647 type = "gem"; 1628 1648 }; 1629 - version = "3.0.0"; 1649 + version = "3.1.0"; 1630 1650 }; 1631 1651 rack-protection = { 1632 1652 dependencies = ["rack"]; ··· 1634 1654 platforms = []; 1635 1655 source = { 1636 1656 remotes = ["https://rubygems.org"]; 1637 - sha256 = "1a12m1mv8dc0g90fs1myvis8vsgr427k1arg1q4a9qlfw6fqyhis"; 1657 + sha256 = "1kpm67az1wxlg76h620in2r7agfyhv177ps268j5ggsanzddzih8"; 1638 1658 type = "gem"; 1639 1659 }; 1640 - version = "3.0.5"; 1660 + version = "3.0.6"; 1641 1661 }; 1642 1662 rack-test = { 1643 1663 dependencies = ["rack"]; ··· 1645 1665 platforms = []; 1646 1666 source = { 1647 1667 remotes = ["https://rubygems.org"]; 1648 - sha256 = "0rjl709krgf499dhjdapg580l2qaj9d91pwzk8ck8fpnazlx1bdd"; 1668 + sha256 = "1ysx29gk9k14a14zsp5a8czys140wacvp91fja8xcja0j1hzqq8c"; 1649 1669 type = "gem"; 1650 1670 }; 1651 - version = "2.0.2"; 1671 + version = "2.1.0"; 1652 1672 }; 1653 1673 rails-dom-testing = { 1654 1674 dependencies = ["activesupport" "nokogiri"]; ··· 1678 1698 platforms = []; 1679 1699 source = { 1680 1700 remotes = ["https://rubygems.org"]; 1681 - sha256 = "145m778yylgrjl2q7zfkq35l5sibyynlx6pyp176ifm146gbf9wf"; 1701 + sha256 = "1j0zi64m9njfgk4xs4invqlimkgiy4fsivfmbpz33bg0w5yyzazi"; 1682 1702 type = "gem"; 1683 1703 }; 1684 - version = "0.8.1"; 1704 + version = "1.0.0"; 1685 1705 }; 1686 1706 rails_multisite = { 1687 1707 dependencies = ["activerecord" "railties"]; ··· 1700 1720 platforms = []; 1701 1721 source = { 1702 1722 remotes = ["https://rubygems.org"]; 1703 - sha256 = "0q8as8yq6ni256fc6bmcqmdch1bksbhsg5lmaqmi4bpi33f06g01"; 1723 + sha256 = "0w6pib1s0kmfnhjvxwh48flz7w4gy8y961n821w8by7d1g83vjwq"; 1704 1724 type = "gem"; 1705 1725 }; 1706 - version = "7.0.4.1"; 1726 + version = "7.0.4.3"; 1707 1727 }; 1708 1728 rainbow = { 1709 1729 groups = ["default" "development" "test"]; ··· 1726 1746 }]; 1727 1747 source = { 1728 1748 remotes = ["https://rubygems.org"]; 1729 - sha256 = "0wb2x51parf6v78w0cic90m33bdc92y5h8rj4wqs75dhw1b69hc7"; 1749 + sha256 = "0c27mcglrj928zkm4d2spj9yh2xkkka8ns5s6bidkwild3zvj3ma"; 1730 1750 type = "gem"; 1731 1751 }; 1732 - version = "0.20.0"; 1752 + version = "0.20.1"; 1733 1753 }; 1734 1754 rake = { 1735 1755 groups = ["default" "development" "test"]; ··· 1792 1812 platforms = []; 1793 1813 source = { 1794 1814 remotes = ["https://rubygems.org"]; 1795 - sha256 = "0i4a8hxxcxci3n8hhlm9a8wa7a9m58r6sjvh4749v7362i8cy010"; 1815 + sha256 = "0fikjg6j12ka6hh36dxzhfkpqqmilzjfzcdf59iwkzsgd63f0ziq"; 1796 1816 type = "gem"; 1797 1817 }; 1798 - version = "4.8.0"; 1818 + version = "4.8.1"; 1799 1819 }; 1800 1820 redis-namespace = { 1801 1821 dependencies = ["redis"]; ··· 1813 1833 platforms = []; 1814 1834 source = { 1815 1835 remotes = ["https://rubygems.org"]; 1816 - sha256 = "0zjg29w5zvar7by1kqck3zilbdzm5iz3jp5d1zn3970krskfazh2"; 1836 + sha256 = "17xizkw5ryw8hhq64iqxmzdrrdxpc5lhkqc1fgm1aj0zsk1r2950"; 1817 1837 type = "gem"; 1818 1838 }; 1819 - version = "2.6.2"; 1839 + version = "2.8.0"; 1820 1840 }; 1821 1841 request_store = { 1822 1842 dependencies = ["rack"]; ··· 1897 1917 platforms = []; 1898 1918 source = { 1899 1919 remotes = ["https://rubygems.org"]; 1900 - sha256 = "1ibb81slc35q5yp276sixp3yrvj9q92wlmi1glbnwlk6g49z8rn4"; 1920 + sha256 = "0da45cvllbv39sdbsl65vp5djb2xf5m10mxc9jm7rsqyyxjw4h1f"; 1901 1921 type = "gem"; 1902 1922 }; 1903 - version = "3.12.0"; 1923 + version = "3.12.1"; 1904 1924 }; 1905 1925 rspec-expectations = { 1906 1926 dependencies = ["diff-lcs" "rspec-support"]; ··· 1930 1950 platforms = []; 1931 1951 source = { 1932 1952 remotes = ["https://rubygems.org"]; 1933 - sha256 = "0sq2cc9pm5gq411y7iwfvzbmgv3g91lyf7y7cqn1lr3yf1v122nc"; 1953 + sha256 = "1hfm17xakfvwya236graj6c2arr4sb9zasp35q5fykhyz8mhs0w2"; 1934 1954 type = "gem"; 1935 1955 }; 1936 - version = "3.12.3"; 1956 + version = "3.12.5"; 1937 1957 }; 1938 1958 rspec-rails = { 1939 1959 dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; ··· 1978 1998 }; 1979 1999 version = "2.8.0"; 1980 2000 }; 2001 + rtlcss = { 2002 + dependencies = ["mini_racer"]; 2003 + groups = ["default"]; 2004 + platforms = []; 2005 + source = { 2006 + remotes = ["https://rubygems.org"]; 2007 + sha256 = "0nnc1qdr4vdr91406ga1nnw5xk27ii2yzk325ixrf2qca3zl213k"; 2008 + type = "gem"; 2009 + }; 2010 + version = "0.2.0"; 2011 + }; 1981 2012 rubocop = { 1982 2013 dependencies = ["json" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; 1983 2014 groups = ["default" "development" "test"]; 1984 2015 platforms = []; 1985 2016 source = { 1986 2017 remotes = ["https://rubygems.org"]; 1987 - sha256 = "0a2j57r6pvngqlzkmww031gs5isax3nsr9n7cbfpqnh34ljh2lk1"; 2018 + sha256 = "0l46lw5gfj3mcm982wpmx7br4rs466gyislv0hfwcsk8dxhv1zkw"; 1988 2019 type = "gem"; 1989 2020 }; 1990 - version = "1.44.0"; 2021 + version = "1.50.2"; 1991 2022 }; 1992 2023 rubocop-ast = { 1993 2024 dependencies = ["parser"]; ··· 1995 2026 platforms = []; 1996 2027 source = { 1997 2028 remotes = ["https://rubygems.org"]; 1998 - sha256 = "1pdzabz95hv3z5sfbkfqa8bdybsfl13gv7rjb32v3ss8klq99lbd"; 2029 + sha256 = "0n2gsafg6p7nr1z8i1hkvp2qqkkbg842ba183dnl0h08xd9ms6q5"; 1999 2030 type = "gem"; 2000 2031 }; 2001 - version = "1.24.1"; 2032 + version = "1.28.0"; 2002 2033 }; 2003 2034 rubocop-capybara = { 2004 2035 dependencies = ["rubocop"]; ··· 2006 2037 platforms = []; 2007 2038 source = { 2008 2039 remotes = ["https://rubygems.org"]; 2009 - sha256 = "1h4qcjkz0365qlhi7y1ni94qj14k397cad566zygm20p15ypbp5v"; 2040 + sha256 = "1pz52ml0qbxgcjlmp8y0wsq8xy398n6ypkbrwfaa8zb0v7pscj6n"; 2010 2041 type = "gem"; 2011 2042 }; 2012 - version = "2.17.0"; 2043 + version = "2.17.1"; 2013 2044 }; 2014 2045 rubocop-discourse = { 2015 2046 dependencies = ["rubocop" "rubocop-rspec"]; ··· 2017 2048 platforms = []; 2018 2049 source = { 2019 2050 remotes = ["https://rubygems.org"]; 2020 - sha256 = "0m6jqyh44vfibqcnxi0xz69xgrbf8vpps90h6al5qdbibm9dmajd"; 2051 + sha256 = "1jfpi8wd6gxd626kp27n20ja1yj68478dqbc1fiyzj4mr8nw8nsl"; 2021 2052 type = "gem"; 2022 2053 }; 2023 - version = "3.0.3"; 2054 + version = "3.2.0"; 2024 2055 }; 2025 2056 rubocop-rspec = { 2026 2057 dependencies = ["rubocop" "rubocop-capybara"]; ··· 2028 2059 platforms = []; 2029 2060 source = { 2030 2061 remotes = ["https://rubygems.org"]; 2031 - sha256 = "1vmmin3ymgq7bhv2hl4pd0zpwawy709p816axc4vi67w61b4bij1"; 2062 + sha256 = "1k8yh0nzlz0g8igmj5smnxq71qmi2b005nkl25wkpjkwvzn2wfdx"; 2032 2063 type = "gem"; 2033 2064 }; 2034 - version = "2.18.1"; 2065 + version = "2.19.0"; 2035 2066 }; 2036 2067 ruby-prof = { 2037 2068 groups = ["development"]; ··· 2042 2073 }]; 2043 2074 source = { 2044 2075 remotes = ["https://rubygems.org"]; 2045 - sha256 = "09n13bzm1p956z318xx1v7ikqdp2i971v7p3kwf3170axz368ccy"; 2076 + sha256 = "106i9m62a20xaipp3vsq4rsnggddfgdvb8xqhvi264slvmac85zq"; 2046 2077 type = "gem"; 2047 2078 }; 2048 - version = "1.4.5"; 2079 + version = "1.6.1"; 2049 2080 }; 2050 2081 ruby-progressbar = { 2051 2082 groups = ["default" "development" "test"]; 2052 2083 platforms = []; 2053 2084 source = { 2054 2085 remotes = ["https://rubygems.org"]; 2055 - sha256 = "02nmaw7yx9kl7rbaan5pl8x5nn0y4j5954mzrkzi9i3dhsrps4nc"; 2086 + sha256 = "0cwvyb7j47m7wihpfaq7rc47zwwx9k4v7iqd9s1xch5nm53rrz40"; 2056 2087 type = "gem"; 2057 2088 }; 2058 - version = "1.11.0"; 2089 + version = "1.13.0"; 2059 2090 }; 2060 2091 ruby-readability = { 2061 2092 dependencies = ["guess_html_encoding" "nokogiri"]; ··· 2094 2125 platforms = []; 2095 2126 source = { 2096 2127 remotes = ["https://rubygems.org"]; 2097 - sha256 = "1zq8pxmsd1abw18zz6mazsm2jfpwmbgdxbpawb7bmwvkb2c5yyc1"; 2128 + sha256 = "1ga8yzc9zj45m92ycwnzhzahkwvc3dp3lym5m3f3880hs4jhh7l3"; 2098 2129 type = "gem"; 2099 2130 }; 2100 - version = "6.0.0"; 2131 + version = "6.0.1"; 2101 2132 }; 2102 - sassc = { 2103 - dependencies = ["ffi" "rake"]; 2133 + sass-embedded = { 2134 + dependencies = ["google-protobuf" "rake"]; 2104 2135 groups = ["default"]; 2105 2136 platforms = []; 2106 2137 source = { 2107 2138 remotes = ["https://rubygems.org"]; 2108 - sha256 = "1sr4825rlwsrl7xrsm0sgalcpf5zgp4i56dbi3qxfa9lhs8r6zh4"; 2109 - type = "gem"; 2110 - }; 2111 - version = "2.0.1"; 2112 - }; 2113 - sassc-rails = { 2114 - dependencies = ["railties" "sassc" "sprockets" "sprockets-rails" "tilt"]; 2115 - groups = ["default"]; 2116 - platforms = []; 2117 - source = { 2118 - remotes = ["https://rubygems.org"]; 2119 - sha256 = "1d9djmwn36a5m8a83bpycs48g8kh1n2xkyvghn7dr6zwh4wdyksz"; 2139 + sha256 = "1fprlazlld0yr4g8aq9qh4lxjxpvzl2s3fp8f9ydwsrchzj95rbh"; 2120 2140 type = "gem"; 2121 2141 }; 2122 - version = "2.1.2"; 2142 + version = "1.62.0"; 2123 2143 }; 2124 2144 selenium-webdriver = { 2125 2145 dependencies = ["rexml" "rubyzip" "websocket"]; ··· 2127 2147 platforms = []; 2128 2148 source = { 2129 2149 remotes = ["https://rubygems.org"]; 2130 - sha256 = "1dkcyq2hfvf4wdj7q5cqqlka1dw6gz28dckxf4r17jmd53ymwg28"; 2150 + sha256 = "1hfaz3srv9c420jkmhr19fmdisnjylwpwyjsr8fsw2ggw35ryhrz"; 2131 2151 type = "gem"; 2132 2152 }; 2133 - version = "4.8.0"; 2153 + version = "4.8.6"; 2134 2154 }; 2135 2155 shoulda-matchers = { 2136 2156 dependencies = ["activesupport"]; ··· 2239 2259 }]; 2240 2260 source = { 2241 2261 remotes = ["https://rubygems.org"]; 2242 - sha256 = "02r3a3ny27ljj19bzmxscw2vlmk7sw1p4ppbl2i69g17khi0p4sw"; 2262 + sha256 = "0bhdgfb0pmw9mav1kw9fn0ka012sa0i3h5ppvqssw5xq48nhxnr8"; 2243 2263 type = "gem"; 2244 2264 }; 2245 - version = "0.2.23"; 2265 + version = "0.2.25"; 2246 2266 }; 2247 2267 syntax_tree = { 2248 2268 dependencies = ["prettier_print"]; ··· 2250 2270 platforms = []; 2251 2271 source = { 2252 2272 remotes = ["https://rubygems.org"]; 2253 - sha256 = "1sqjjz3ja2563p4dgw46wfx0knpcp176gfvx8gfmkv8h166qnkqg"; 2273 + sha256 = "162m5xhbiq315bncp49ziddws537dv09pqsgrzsrmhhsymhgy0zb"; 2254 2274 type = "gem"; 2255 2275 }; 2256 - version = "5.2.0"; 2276 + version = "6.1.1"; 2257 2277 }; 2258 2278 syntax_tree-disable_ternary = { 2259 2279 groups = ["development" "test"]; ··· 2270 2290 platforms = []; 2271 2291 source = { 2272 2292 remotes = ["https://rubygems.org"]; 2273 - sha256 = "15fcfjplc1zqahrha6rxgwnmjlyp41qkj4369fbxdfp0iaxb15pg"; 2293 + sha256 = "09phq7jxfgamv03kjcgibw0f6w3g3mlb9yapji3bxh7cbjvwk2pa"; 2274 2294 type = "gem"; 2275 2295 }; 2276 - version = "1.1.0"; 2296 + version = "1.2.1"; 2277 2297 }; 2278 2298 thor = { 2279 2299 groups = ["default" "development" "test"]; ··· 2290 2310 platforms = []; 2291 2311 source = { 2292 2312 remotes = ["https://rubygems.org"]; 2293 - sha256 = "186nfbcsk0l4l86gvng1fw6jq6p6s7rc0caxr23b3pnbfb20y63v"; 2313 + sha256 = "1qmhi6d9przjzhsyk9g5pq2j75c656msh6xzprqd2mxgphf23jxs"; 2294 2314 type = "gem"; 2295 2315 }; 2296 - version = "2.0.11"; 2316 + version = "2.1.0"; 2297 2317 }; 2298 2318 timeout = { 2299 2319 groups = ["default"]; 2300 2320 platforms = []; 2301 2321 source = { 2302 2322 remotes = ["https://rubygems.org"]; 2303 - sha256 = "0lnh0kr7f43m1cjzc2jvggfsl1rzsaj2rd3pn6vp7mcqliymzaza"; 2323 + sha256 = "1pfddf51n5fnj4f9ggwj3wbf23ynj0nbxlxqpz12y1gvl9g7d6r6"; 2304 2324 type = "gem"; 2305 2325 }; 2306 - version = "0.3.1"; 2326 + version = "0.3.2"; 2307 2327 }; 2308 2328 tzinfo = { 2309 2329 dependencies = ["concurrent-ruby"]; ··· 2311 2331 platforms = []; 2312 2332 source = { 2313 2333 remotes = ["https://rubygems.org"]; 2314 - sha256 = "0rx114mpqnw2k4h98vc0rs0x0bmf0img84yh8mkkjkal07cjydf5"; 2334 + sha256 = "16w2g84dzaf3z13gxyzlzbf748kylk5bdgg3n1ipvkvvqy685bwd"; 2335 + type = "gem"; 2336 + }; 2337 + version = "2.0.6"; 2338 + }; 2339 + tzinfo-data = { 2340 + dependencies = ["tzinfo"]; 2341 + groups = ["default"]; 2342 + platforms = []; 2343 + source = { 2344 + remotes = ["https://rubygems.org"]; 2345 + sha256 = "0m2d0gpsgqnv29j5h2d6g57g0rayvd460b8s2vjr8sn46bqf89m5"; 2315 2346 type = "gem"; 2316 2347 }; 2317 - version = "2.0.5"; 2348 + version = "1.2023.3"; 2318 2349 }; 2319 2350 uglifier = { 2320 2351 dependencies = ["execjs"]; ··· 2390 2421 platforms = []; 2391 2422 source = { 2392 2423 remotes = ["https://rubygems.org"]; 2393 - sha256 = "11c4n5rri8d45c47krpg76n98mqh36l0kp2qrkb4dxnkp4flay6y"; 2424 + sha256 = "1vigw7nfszfqgikr6n574k9bfh0rvs74z8xq46rz2zsm8249l8cc"; 2394 2425 type = "gem"; 2395 2426 }; 2396 - version = "0.12.0"; 2427 + version = "0.12.1"; 2397 2428 }; 2398 2429 uri_template = { 2399 2430 groups = ["default"]; ··· 2410 2441 platforms = []; 2411 2442 source = { 2412 2443 remotes = ["https://rubygems.org"]; 2413 - sha256 = "0v2vj7q1rk3wd7hdqa3i1d4hq7sfcgf55qc70g6dsichsbgacb9w"; 2444 + sha256 = "1dza601x34ln5yvmyaj42gnbij9pifx12frp5vak6n19q9j941r0"; 2414 2445 type = "gem"; 2415 2446 }; 2416 - version = "1.1.1"; 2447 + version = "1.1.2"; 2417 2448 }; 2418 2449 web-push = { 2419 2450 dependencies = ["hkdf" "jwt" "openssl"]; ··· 2468 2499 }; 2469 2500 version = "1.2.9"; 2470 2501 }; 2471 - xorcist = { 2472 - groups = ["default"]; 2473 - platforms = []; 2474 - source = { 2475 - remotes = ["https://rubygems.org"]; 2476 - sha256 = "1dbbiy8xlcfvn9ais37xfb5rci4liwakkmxzbkp72wmvlgcrf339"; 2477 - type = "gem"; 2478 - }; 2479 - version = "1.1.3"; 2480 - }; 2481 2502 xpath = { 2482 2503 dependencies = ["nokogiri"]; 2483 2504 groups = ["default" "test"]; ··· 2499 2520 }; 2500 2521 version = "0.1.2"; 2501 2522 }; 2523 + yard = { 2524 + groups = ["development"]; 2525 + platforms = []; 2526 + source = { 2527 + remotes = ["https://rubygems.org"]; 2528 + sha256 = "013yrnwx1zhzhn1fnc19zck22a1qgimsaglp2iwgf5bz9l8h93js"; 2529 + type = "gem"; 2530 + }; 2531 + version = "0.9.34"; 2532 + }; 2502 2533 zeitwerk = { 2503 2534 groups = ["default" "development" "test"]; 2504 2535 platforms = []; 2505 2536 source = { 2506 2537 remotes = ["https://rubygems.org"]; 2507 - sha256 = "09pqhdi6q4sqv0p1gnjpbcy4az0yv8hrpykjngdgh9qiqd87nfdv"; 2538 + sha256 = "028ld9qmgdllxrl7d0qkl65s58wb1n3gv8yjs28g43a8b1hplxk1"; 2508 2539 type = "gem"; 2509 2540 }; 2510 - version = "2.6.6"; 2541 + version = "2.6.7"; 2511 2542 }; 2512 2543 }
+21
pkgs/servers/web-apps/discourse/rubyEnv/sass-embedded-static.patch
··· 1 + diff --git a/ext/sass/Rakefile b/ext/sass/Rakefile 2 + index 77ced01..1e60ab0 100644 3 + --- a/ext/sass/Rakefile 4 + +++ b/ext/sass/Rakefile 5 + @@ -18,15 +18,7 @@ file 'protoc.exe' do |t| 6 + end 7 + 8 + file 'sass_embedded' do |t| 9 + - archive = fetch(ENV.fetch(t.name.upcase) { Configuration.default_sass_embedded }) 10 + - unarchive archive 11 + - rm archive 12 + - 13 + - if ENV.key?('NIX_BINTOOLS') 14 + - sh 'patchelf', 15 + - '--set-interpreter', File.read("#{ENV.fetch('NIX_BINTOOLS')}/nix-support/dynamic-linker").chomp, 16 + - (['sass_embedded/src/dart', 'sass_embedded/dart-sass-embedded'].find { |exe| File.exist?(exe) }) 17 + - end 18 + + symlink(ENV.fetch(t.name.upcase), 'sass_embedded') 19 + end 20 + 21 + file 'embedded.rb' => %w[sass_embedded] do |t|
+1 -1
pkgs/tools/backup/restic/rest-server.nix
··· 23 23 ]; 24 24 25 25 meta = with lib; { 26 - inherit (src.meta) homepage; 27 26 description = "A high performance HTTP server that implements restic's REST backend API"; 27 + homepage = "https://github.com/restic/rest-server"; 28 28 platforms = platforms.unix; 29 29 license = licenses.bsd2; 30 30 maintainers = with maintainers; [ dotlambda ];
+1151 -871
pkgs/tools/misc/vector/Cargo.lock
··· 146 146 ] 147 147 148 148 [[package]] 149 + name = "anstyle" 150 + version = "0.3.1" 151 + source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "80c697cc33851b02ab0c26b2e8a211684fbe627ff1cc506131f35026dd7686dd" 153 + 154 + [[package]] 149 155 name = "anyhow" 150 - version = "1.0.69" 156 + version = "1.0.70" 151 157 source = "registry+https://github.com/rust-lang/crates.io-index" 152 - checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" 158 + checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 153 159 154 160 [[package]] 155 161 name = "anymap" ··· 178 184 "strum_macros", 179 185 "thiserror", 180 186 "typed-builder", 181 - "uuid 1.3.0", 187 + "uuid", 182 188 "zerocopy", 183 189 ] 184 190 ··· 192 198 ] 193 199 194 200 [[package]] 195 - name = "arbitrary" 196 - version = "1.2.3" 197 - source = "registry+https://github.com/rust-lang/crates.io-index" 198 - checksum = "3e90af4de65aa7b293ef2d09daff88501eb254f58edde2e1ac02c82d873eadad" 199 - dependencies = [ 200 - "derive_arbitrary", 201 - ] 202 - 203 - [[package]] 204 201 name = "arc-swap" 205 202 version = "1.6.0" 206 203 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 224 221 checksum = "9c6368f9ae5c6ec403ca910327ae0c9437b0a85255b6950c90d497e6177f6e5e" 225 222 dependencies = [ 226 223 "proc-macro-hack", 227 - "quote 1.0.23", 228 - "syn 1.0.108", 224 + "quote 1.0.26", 225 + "syn 1.0.109", 229 226 ] 230 227 231 228 [[package]] ··· 256 253 ] 257 254 258 255 [[package]] 259 - name = "ascii_utils" 260 - version = "0.9.3" 261 - source = "registry+https://github.com/rust-lang/crates.io-index" 262 - checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a" 263 - 264 - [[package]] 265 256 name = "assert-json-diff" 266 257 version = "2.0.2" 267 258 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 273 264 274 265 [[package]] 275 266 name = "assert_cmd" 276 - version = "2.0.8" 267 + version = "2.0.10" 277 268 source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "9834fcc22e0874394a010230586367d4a3e9f11b560f469262678547e1d2575e" 269 + checksum = "ec0b2340f55d9661d76793b2bfc2eb0e62689bd79d067a95707ea762afd5e9dd" 279 270 dependencies = [ 280 - "bstr 1.3.0", 271 + "anstyle", 272 + "bstr 1.4.0", 281 273 "doc-comment", 282 274 "predicates", 283 275 "predicates-core", ··· 297 289 ] 298 290 299 291 [[package]] 292 + name = "async-compat" 293 + version = "0.2.1" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "9b48b4ff0c2026db683dea961cd8ea874737f56cffca86fa84415eaddc51c00d" 296 + dependencies = [ 297 + "futures-core", 298 + "futures-io", 299 + "once_cell", 300 + "pin-project-lite", 301 + "tokio", 302 + ] 303 + 304 + [[package]] 300 305 name = "async-compression" 301 306 version = "0.3.15" 302 307 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 365 370 366 371 [[package]] 367 372 name = "async-graphql" 368 - version = "5.0.6" 373 + version = "5.0.7" 369 374 source = "registry+https://github.com/rust-lang/crates.io-index" 370 - checksum = "692d27c9d6fbb7afafd092706cbb3e4a2087297e10e1f0ca82b3f950f31d9258" 375 + checksum = "6f0ed623e2503b45d875461e5de88a1b3466cf2ed3e43cf189a102a641b93f19" 371 376 dependencies = [ 372 377 "async-graphql-derive", 373 378 "async-graphql-parser", ··· 377 382 "base64 0.13.1", 378 383 "bytes 1.4.0", 379 384 "chrono", 380 - "fast_chemail", 381 385 "fnv", 382 386 "futures-util", 383 - "handlebars", 384 387 "http", 385 388 "indexmap", 386 389 "mime", ··· 393 396 "serde_json", 394 397 "serde_urlencoded", 395 398 "static_assertions", 396 - "tempfile", 397 399 "thiserror", 398 400 ] 399 401 400 402 [[package]] 401 403 name = "async-graphql-derive" 402 - version = "5.0.6" 404 + version = "5.0.7" 403 405 source = "registry+https://github.com/rust-lang/crates.io-index" 404 - checksum = "ec10e63a513389190e9f8f32453bfcfeef271e25e841d61905985f838a5345eb" 406 + checksum = "cebcf27112b969c4ff2a003b318ab5efde96055f9d0ee3344a3b3831fa2932ba" 405 407 dependencies = [ 406 408 "Inflector", 407 409 "async-graphql-parser", 408 410 "darling 0.14.2", 409 411 "proc-macro-crate 1.2.1", 410 - "proc-macro2 1.0.51", 411 - "quote 1.0.23", 412 - "syn 1.0.108", 412 + "proc-macro2 1.0.55", 413 + "quote 1.0.26", 414 + "syn 1.0.109", 413 415 "thiserror", 414 416 ] 415 417 416 418 [[package]] 417 419 name = "async-graphql-parser" 418 - version = "5.0.6" 420 + version = "5.0.7" 419 421 source = "registry+https://github.com/rust-lang/crates.io-index" 420 - checksum = "c79500e9bed6b3cf5e1d3960264b7dbc275dd45b56a3f919c30f0cbbf3ea9cba" 422 + checksum = "631770464ad2492da9af6b70048e9e477ef7c1e55fdbfb0719f3330cfa87d8e9" 421 423 dependencies = [ 422 424 "async-graphql-value", 423 425 "pest", ··· 427 429 428 430 [[package]] 429 431 name = "async-graphql-value" 430 - version = "5.0.6" 432 + version = "5.0.7" 431 433 source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "e14fde4382b75c27fafcaca59b423d4530f73e7f62f41bfa38e8f249026d22ed" 434 + checksum = "b59633f68ae4b858e14ec761e02455c575327249cbefed3af067a0b26d76daa9" 433 435 dependencies = [ 434 436 "bytes 1.4.0", 435 437 "indexmap", ··· 439 441 440 442 [[package]] 441 443 name = "async-graphql-warp" 442 - version = "5.0.6" 444 + version = "5.0.7" 443 445 source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "a2ef44ae245e692202e92a683ced6ee27b4129aa71842df97890f34a652ab634" 446 + checksum = "0bb6bf41fb7c140172034290b10c17eca6ebf37af148301f913dc95eb625083b" 445 447 dependencies = [ 446 448 "async-graphql", 447 449 "futures-util", ··· 523 525 524 526 [[package]] 525 527 name = "async-recursion" 526 - version = "1.0.2" 528 + version = "1.0.4" 527 529 source = "registry+https://github.com/rust-lang/crates.io-index" 528 - checksum = "3b015a331cc64ebd1774ba119538573603427eaace0a1950c423ab971f903796" 530 + checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 529 531 dependencies = [ 530 - "proc-macro2 1.0.51", 531 - "quote 1.0.23", 532 - "syn 1.0.108", 532 + "proc-macro2 1.0.55", 533 + "quote 1.0.26", 534 + "syn 2.0.10", 533 535 ] 534 536 535 537 [[package]] ··· 549 551 source = "registry+https://github.com/rust-lang/crates.io-index" 550 552 checksum = "e4655ae1a7b0cdf149156f780c5bf3f1352bc53cbd9e0a361a7ef7b22947e965" 551 553 dependencies = [ 552 - "proc-macro2 1.0.51", 553 - "quote 1.0.23", 554 - "syn 1.0.108", 554 + "proc-macro2 1.0.55", 555 + "quote 1.0.26", 556 + "syn 1.0.109", 555 557 ] 556 558 557 559 [[package]] ··· 562 564 563 565 [[package]] 564 566 name = "async-trait" 565 - version = "0.1.64" 567 + version = "0.1.68" 566 568 source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" 569 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 568 570 dependencies = [ 569 - "proc-macro2 1.0.51", 570 - "quote 1.0.23", 571 - "syn 1.0.108", 571 + "proc-macro2 1.0.55", 572 + "quote 1.0.26", 573 + "syn 2.0.10", 572 574 ] 573 575 574 576 [[package]] ··· 901 903 902 904 [[package]] 903 905 name = "aws-sigv4" 904 - version = "0.53.0" 906 + version = "0.55.0" 905 907 source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "eee0d796882321e91ca7b991ab6193864e04b605be3a6c18adb9134a90d5a860" 908 + checksum = "19a4f5c05c8646d12b7bb3f18c04edc5ac5e8928ab80e1649e568190f2bc7b79" 907 909 dependencies = [ 908 - "aws-smithy-http 0.53.1", 910 + "aws-smithy-http 0.55.0", 909 911 "form_urlencoded", 910 912 "hex", 911 913 "hmac", ··· 1007 1009 1008 1010 [[package]] 1009 1011 name = "aws-smithy-http" 1010 - version = "0.53.1" 1012 + version = "0.54.4" 1011 1013 source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "29dcab29afbea7726f5c10c7be0c38666d7eb07db551580b3b26ed7cfb5d1935" 1014 + checksum = "873f316f1833add0d3aa54ed1b0cd252ddd88c792a0cf839886400099971e844" 1013 1015 dependencies = [ 1014 - "aws-smithy-types 0.53.1", 1016 + "aws-smithy-types 0.54.4", 1015 1017 "bytes 1.4.0", 1016 1018 "bytes-utils", 1017 1019 "futures-core", ··· 1027 1029 1028 1030 [[package]] 1029 1031 name = "aws-smithy-http" 1030 - version = "0.54.3" 1032 + version = "0.55.0" 1031 1033 source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "78abf16f8667b9176737cfffd1dd4ad07d350ef5dba01d01fdec5f31265f7134" 1034 + checksum = "d78510732b81040689dc146e3693bfbcf388ab88cbda667d3ef67f8869b0744a" 1033 1035 dependencies = [ 1034 - "aws-smithy-types 0.54.3", 1036 + "aws-smithy-types 0.55.0", 1035 1037 "bytes 1.4.0", 1036 1038 "bytes-utils", 1037 1039 "futures-core", ··· 1062 1064 1063 1065 [[package]] 1064 1066 name = "aws-smithy-http-tower" 1065 - version = "0.54.3" 1067 + version = "0.54.4" 1066 1068 source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "d517ac2476efc1820228c2fdfdcb17d3bea8695558bd67584a62a47c12b41918" 1069 + checksum = "4f38231d3f5dac9ac7976f44e12803add1385119ffca9e5f050d8e980733d164" 1068 1070 dependencies = [ 1069 - "aws-smithy-http 0.54.3", 1070 - "aws-smithy-types 0.54.3", 1071 + "aws-smithy-http 0.54.4", 1072 + "aws-smithy-types 0.54.4", 1071 1073 "bytes 1.4.0", 1072 1074 "http", 1073 1075 "http-body", ··· 1109 1111 1110 1112 [[package]] 1111 1113 name = "aws-smithy-types" 1112 - version = "0.53.1" 1114 + version = "0.54.4" 1113 1115 source = "registry+https://github.com/rust-lang/crates.io-index" 1114 - checksum = "2013465a070decdeb3e85ceb3370ae85ba05f56f914abfd89858d7281c4f12c3" 1116 + checksum = "8161232eda10290f5136610a1eb9de56aceaccd70c963a26a260af20ac24794f" 1115 1117 dependencies = [ 1116 1118 "base64-simd", 1117 1119 "itoa", ··· 1122 1124 1123 1125 [[package]] 1124 1126 name = "aws-smithy-types" 1125 - version = "0.54.3" 1127 + version = "0.55.0" 1126 1128 source = "registry+https://github.com/rust-lang/crates.io-index" 1127 - checksum = "ee8d2056dc5f10094d5e753ac5c649e8996869f0649b641e470950151596db73" 1129 + checksum = "474d145c2e0f82892841d2502bd546ca0dbc1e4e242c3563d96e7061054c268f" 1128 1130 dependencies = [ 1129 1131 "base64-simd", 1130 1132 "itoa", ··· 1180 1182 "pin-project-lite", 1181 1183 "rustversion", 1182 1184 "serde", 1183 - "serde_json", 1184 - "serde_path_to_error", 1185 1185 "sync_wrapper", 1186 1186 "tokio", 1187 1187 "tower", 1188 - "tower-http", 1188 + "tower-http 0.3.5", 1189 1189 "tower-layer", 1190 1190 "tower-service", 1191 1191 ] ··· 1216 1216 "base64 0.13.1", 1217 1217 "bytes 1.4.0", 1218 1218 "dyn-clone", 1219 - "futures 0.3.26", 1219 + "futures 0.3.28", 1220 1220 "getrandom 0.2.8", 1221 1221 "http-types", 1222 1222 "log", ··· 1230 1230 "serde_json", 1231 1231 "time", 1232 1232 "url", 1233 - "uuid 1.3.0", 1233 + "uuid", 1234 1234 ] 1235 1235 1236 1236 [[package]] ··· 1243 1243 "azure_core", 1244 1244 "base64 0.13.1", 1245 1245 "fix-hidden-lifetime-bug", 1246 - "futures 0.3.26", 1246 + "futures 0.3.28", 1247 1247 "log", 1248 1248 "oauth2", 1249 1249 "serde", 1250 1250 "serde_json", 1251 1251 "time", 1252 1252 "url", 1253 - "uuid 1.3.0", 1253 + "uuid", 1254 1254 ] 1255 1255 1256 1256 [[package]] ··· 1263 1263 "azure_core", 1264 1264 "base64 0.13.1", 1265 1265 "bytes 1.4.0", 1266 - "futures 0.3.26", 1266 + "futures 0.3.28", 1267 1267 "hmac", 1268 1268 "log", 1269 1269 "once_cell", ··· 1274 1274 "sha2 0.10.6", 1275 1275 "time", 1276 1276 "url", 1277 - "uuid 1.3.0", 1277 + "uuid", 1278 1278 ] 1279 1279 1280 1280 [[package]] ··· 1287 1287 "azure_storage", 1288 1288 "base64 0.13.1", 1289 1289 "bytes 1.4.0", 1290 - "futures 0.3.26", 1290 + "futures 0.3.28", 1291 1291 "log", 1292 1292 "md5", 1293 1293 "serde", ··· 1296 1296 "serde_json", 1297 1297 "time", 1298 1298 "url", 1299 - "uuid 1.3.0", 1299 + "uuid", 1300 1300 ] 1301 1301 1302 1302 [[package]] ··· 1311 1311 ] 1312 1312 1313 1313 [[package]] 1314 + name = "backon" 1315 + version = "0.4.0" 1316 + source = "registry+https://github.com/rust-lang/crates.io-index" 1317 + checksum = "f34fac4d7cdaefa2deded0eda2d5d59dbfd43370ff3f856209e72340ae84c294" 1318 + dependencies = [ 1319 + "futures 0.3.28", 1320 + "pin-project", 1321 + "rand 0.8.5", 1322 + "tokio", 1323 + ] 1324 + 1325 + [[package]] 1314 1326 name = "base16" 1315 1327 version = "0.2.1" 1316 1328 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1330 1342 1331 1343 [[package]] 1332 1344 name = "base64-simd" 1333 - version = "0.7.0" 1345 + version = "0.8.0" 1334 1346 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 - checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5" 1347 + checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 1336 1348 dependencies = [ 1337 - "simd-abstraction", 1349 + "outref", 1350 + "vsimd", 1338 1351 ] 1339 1352 1340 1353 [[package]] ··· 1348 1361 1349 1362 [[package]] 1350 1363 name = "base64ct" 1351 - version = "1.1.1" 1364 + version = "1.5.3" 1352 1365 source = "registry+https://github.com/rust-lang/crates.io-index" 1353 - checksum = "e6b4d9b1225d28d360ec6a231d65af1fd99a2a095154c8040689617290569c5c" 1366 + checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 1354 1367 1355 1368 [[package]] 1356 1369 name = "bit-set" ··· 1385 1398 source = "registry+https://github.com/rust-lang/crates.io-index" 1386 1399 checksum = "fd9e32d7420c85055e8107e5b2463c4eeefeaac18b52359fe9f9c08a18f342b2" 1387 1400 dependencies = [ 1388 - "quote 1.0.23", 1389 - "syn 1.0.108", 1401 + "quote 1.0.26", 1402 + "syn 1.0.109", 1390 1403 ] 1391 1404 1392 1405 [[package]] ··· 1484 1497 dependencies = [ 1485 1498 "chrono", 1486 1499 "serde", 1487 - "serde_with 2.2.0", 1500 + "serde_with 2.3.1", 1488 1501 ] 1489 1502 1490 1503 [[package]] ··· 1506 1519 "borsh-derive-internal", 1507 1520 "borsh-schema-derive-internal", 1508 1521 "proc-macro-crate 0.1.5", 1509 - "proc-macro2 1.0.51", 1510 - "syn 1.0.108", 1522 + "proc-macro2 1.0.55", 1523 + "syn 1.0.109", 1511 1524 ] 1512 1525 1513 1526 [[package]] ··· 1516 1529 source = "registry+https://github.com/rust-lang/crates.io-index" 1517 1530 checksum = "61820b4c5693eafb998b1e67485423c923db4a75f72585c247bdee32bad81e7b" 1518 1531 dependencies = [ 1519 - "proc-macro2 1.0.51", 1520 - "quote 1.0.23", 1521 - "syn 1.0.108", 1532 + "proc-macro2 1.0.55", 1533 + "quote 1.0.26", 1534 + "syn 1.0.109", 1522 1535 ] 1523 1536 1524 1537 [[package]] ··· 1527 1540 source = "registry+https://github.com/rust-lang/crates.io-index" 1528 1541 checksum = "c76cdbfa13def20d1f8af3ae7b3c6771f06352a74221d8851262ac384c122b8e" 1529 1542 dependencies = [ 1530 - "proc-macro2 1.0.51", 1531 - "quote 1.0.23", 1532 - "syn 1.0.108", 1543 + "proc-macro2 1.0.55", 1544 + "quote 1.0.26", 1545 + "syn 1.0.109", 1533 1546 ] 1534 1547 1535 1548 [[package]] 1536 1549 name = "bson" 1537 - version = "2.4.0" 1550 + version = "2.5.0" 1538 1551 source = "registry+https://github.com/rust-lang/crates.io-index" 1539 - checksum = "99d76085681585d39016f4d3841eb019201fc54d2dd0d92ad1e4fab3bfb32754" 1552 + checksum = "8746d07211bb12a7c34d995539b4a2acd4e0b0e757de98ce2ab99bcf17443fad" 1540 1553 dependencies = [ 1541 1554 "ahash 0.7.6", 1542 1555 "base64 0.13.1", ··· 1548 1561 "serde_bytes", 1549 1562 "serde_json", 1550 1563 "time", 1551 - "uuid 1.3.0", 1564 + "uuid", 1552 1565 ] 1553 1566 1554 1567 [[package]] ··· 1564 1577 1565 1578 [[package]] 1566 1579 name = "bstr" 1567 - version = "1.3.0" 1580 + version = "1.4.0" 1568 1581 source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "5ffdb39cb703212f3c11973452c2861b972f757b021158f3516ba10f2fa8b2c1" 1582 + checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" 1570 1583 dependencies = [ 1571 1584 "memchr", 1572 1585 "once_cell", ··· 1596 1609 source = "registry+https://github.com/rust-lang/crates.io-index" 1597 1610 checksum = "13e576ebe98e605500b3c8041bb888e966653577172df6dd97398714eb30b9bf" 1598 1611 dependencies = [ 1599 - "proc-macro2 1.0.51", 1600 - "quote 1.0.23", 1601 - "syn 1.0.108", 1612 + "proc-macro2 1.0.55", 1613 + "quote 1.0.26", 1614 + "syn 1.0.109", 1602 1615 ] 1603 1616 1604 1617 [[package]] ··· 1644 1657 1645 1658 [[package]] 1646 1659 name = "bytesize" 1647 - version = "1.1.0" 1660 + version = "1.2.0" 1648 1661 source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "6c58ec36aac5066d5ca17df51b3e70279f5670a72102f5752cb7e7c856adfc70" 1662 + checksum = "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5" 1650 1663 1651 1664 [[package]] 1652 1665 name = "cache-padded" ··· 1664 1677 "async_once", 1665 1678 "cached_proc_macro", 1666 1679 "cached_proc_macro_types", 1667 - "futures 0.3.26", 1680 + "futures 0.3.28", 1668 1681 "hashbrown 0.13.2", 1669 1682 "instant", 1670 1683 "lazy_static", ··· 1681 1694 dependencies = [ 1682 1695 "cached_proc_macro_types", 1683 1696 "darling 0.14.2", 1684 - "proc-macro2 1.0.51", 1685 - "quote 1.0.23", 1686 - "syn 1.0.108", 1697 + "proc-macro2 1.0.55", 1698 + "quote 1.0.26", 1699 + "syn 1.0.109", 1687 1700 ] 1688 1701 1689 1702 [[package]] ··· 1755 1768 1756 1769 [[package]] 1757 1770 name = "chrono" 1758 - version = "0.4.22" 1759 - source = "git+https://github.com/vectordotdev/chrono.git?branch=no-default-time-v0.4.22-1#920ff24cabedcec0f8459b8d9681cbac186dfb58" 1771 + version = "0.4.24" 1772 + source = "git+https://github.com/vectordotdev/chrono.git?tag=v0.4.24-no-default-time-1#7ec1ad93833787da5df64898fb3e6206221c6833" 1760 1773 dependencies = [ 1761 1774 "iana-time-zone", 1762 1775 "js-sys", ··· 1869 1882 1870 1883 [[package]] 1871 1884 name = "clap" 1872 - version = "4.1.6" 1885 + version = "4.1.14" 1873 1886 source = "registry+https://github.com/rust-lang/crates.io-index" 1874 - checksum = "ec0b0588d44d4d63a87dbd75c136c166bbfd9a86a31cb89e09906521c7d3f5e3" 1887 + checksum = "906f7fe1da4185b7a282b2bc90172a496f9def1aca4545fe7526810741591e14" 1875 1888 dependencies = [ 1876 - "bitflags", 1889 + "clap_builder", 1877 1890 "clap_derive", 1878 - "clap_lex 0.3.0", 1879 - "is-terminal", 1880 1891 "once_cell", 1881 - "strsim 0.10.0", 1882 - "termcolor", 1883 - "terminal_size 0.2.2", 1884 1892 ] 1885 1893 1886 1894 [[package]] 1887 1895 name = "clap-verbosity-flag" 1888 - version = "2.0.0" 1896 + version = "2.0.1" 1889 1897 source = "registry+https://github.com/rust-lang/crates.io-index" 1890 - checksum = "23e2b6c3dcdb73299f48ae05b294da14e2f560b3ed2c09e742269eb1b22af231" 1898 + checksum = "1eef05769009513df2eb1c3b4613e7fad873a14c600ff025b08f250f59fee7de" 1891 1899 dependencies = [ 1892 - "clap 4.1.6", 1900 + "clap 4.1.14", 1893 1901 "log", 1894 1902 ] 1895 1903 1896 1904 [[package]] 1905 + name = "clap_builder" 1906 + version = "4.1.14" 1907 + source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "351f9ad9688141ed83dfd8f5fb998a06225ef444b48ff4dc43de6d409b7fd10b" 1909 + dependencies = [ 1910 + "bitflags", 1911 + "clap_lex 0.4.1", 1912 + "is-terminal", 1913 + "strsim 0.10.0", 1914 + "termcolor", 1915 + "terminal_size 0.2.2", 1916 + ] 1917 + 1918 + [[package]] 1897 1919 name = "clap_complete" 1898 - version = "4.1.2" 1920 + version = "4.2.0" 1899 1921 source = "registry+https://github.com/rust-lang/crates.io-index" 1900 - checksum = "bd125be87bf4c255ebc50de0b7f4d2a6201e8ac3dc86e39c0ad081dc5e7236fe" 1922 + checksum = "01c22dcfb410883764b29953103d9ef7bb8fe21b3fa1158bc99986c2067294bd" 1901 1923 dependencies = [ 1902 - "clap 4.1.6", 1924 + "clap 4.1.14", 1903 1925 ] 1904 1926 1905 1927 [[package]] 1906 1928 name = "clap_derive" 1907 - version = "4.1.0" 1929 + version = "4.1.14" 1908 1930 source = "registry+https://github.com/rust-lang/crates.io-index" 1909 - checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 1931 + checksum = "81d7dc0031c3a59a04fc2ba395c8e2dd463cba1859275f065d225f6122221b45" 1910 1932 dependencies = [ 1911 1933 "heck 0.4.0", 1912 - "proc-macro-error", 1913 - "proc-macro2 1.0.51", 1914 - "quote 1.0.23", 1915 - "syn 1.0.108", 1934 + "proc-macro2 1.0.55", 1935 + "quote 1.0.26", 1936 + "syn 2.0.10", 1916 1937 ] 1917 1938 1918 1939 [[package]] ··· 1926 1947 1927 1948 [[package]] 1928 1949 name = "clap_lex" 1929 - version = "0.3.0" 1950 + version = "0.4.1" 1930 1951 source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" 1932 - dependencies = [ 1933 - "os_str_bytes", 1934 - ] 1952 + checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" 1935 1953 1936 1954 [[package]] 1937 1955 name = "clipboard-win" ··· 1960 1978 "apache-avro", 1961 1979 "bytes 1.4.0", 1962 1980 "chrono", 1981 + "csv", 1963 1982 "derivative", 1964 1983 "dyn-clone", 1965 - "futures 0.3.26", 1984 + "futures 0.3.28", 1966 1985 "indoc", 1967 - "lookup", 1968 1986 "memchr", 1969 1987 "once_cell", 1970 - "ordered-float 3.4.0", 1988 + "ordered-float 3.6.0", 1971 1989 "prost", 1972 1990 "regex", 1973 1991 "serde", ··· 1985 2003 "vector-config-common", 1986 2004 "vector-config-macros", 1987 2005 "vector-core", 2006 + "vector-lookup", 1988 2007 ] 1989 2008 1990 2009 [[package]] ··· 2059 2078 source = "registry+https://github.com/rust-lang/crates.io-index" 2060 2079 checksum = "e37668cb35145dcfaa1931a5f37fde375eeae8068b4c0d2f289da28a270b2d2c" 2061 2080 dependencies = [ 2062 - "directories", 2081 + "directories 4.0.1", 2063 2082 "serde", 2064 2083 "thiserror", 2065 2084 "toml 0.5.11", ··· 2100 2119 "console-api", 2101 2120 "crossbeam-channel", 2102 2121 "crossbeam-utils", 2103 - "futures 0.3.26", 2122 + "futures 0.3.28", 2104 2123 "hdrhistogram", 2105 2124 "humantime", 2106 2125 "prost-types", ··· 2120 2139 version = "0.6.2" 2121 2140 source = "registry+https://github.com/rust-lang/crates.io-index" 2122 2141 checksum = "9d6f2aa4d0537bcc1c74df8755072bd31c1ef1a3a1b85a68e8404a8c353b7b8b" 2142 + 2143 + [[package]] 2144 + name = "const-oid" 2145 + version = "0.9.1" 2146 + source = "registry+https://github.com/rust-lang/crates.io-index" 2147 + checksum = "cec318a675afcb6a1ea1d4340e2d377e56e47c266f28043ceccbf4412ddfdd3b" 2123 2148 2124 2149 [[package]] 2125 2150 name = "convert_case" ··· 2203 2228 "ciborium", 2204 2229 "clap 3.2.23", 2205 2230 "criterion-plot", 2206 - "futures 0.3.26", 2231 + "futures 0.3.28", 2207 2232 "itertools", 2208 2233 "lazy_static", 2209 2234 "num-traits", ··· 2275 2300 2276 2301 [[package]] 2277 2302 name = "crossbeam-utils" 2278 - version = "0.8.14" 2303 + version = "0.8.15" 2279 2304 source = "registry+https://github.com/rust-lang/crates.io-index" 2280 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 2305 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 2281 2306 dependencies = [ 2282 2307 "cfg-if", 2283 2308 ] ··· 2300 2325 2301 2326 [[package]] 2302 2327 name = "crossterm" 2303 - version = "0.26.0" 2328 + version = "0.26.1" 2304 2329 source = "registry+https://github.com/rust-lang/crates.io-index" 2305 - checksum = "77f67c7faacd4db07a939f55d66a983a5355358a1f17d32cc9a8d01d1266b9ce" 2330 + checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13" 2306 2331 dependencies = [ 2307 2332 "bitflags", 2308 2333 "crossterm_winapi", ··· 2342 2367 2343 2368 [[package]] 2344 2369 name = "csv" 2345 - version = "1.2.0" 2370 + version = "1.2.1" 2346 2371 source = "registry+https://github.com/rust-lang/crates.io-index" 2347 - checksum = "af91f40b7355f82b0a891f50e70399475945bb0b0da4f1700ce60761c9d3e359" 2372 + checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad" 2348 2373 dependencies = [ 2349 2374 "csv-core", 2350 2375 "itoa", ··· 2367 2392 source = "registry+https://github.com/rust-lang/crates.io-index" 2368 2393 checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 2369 2394 dependencies = [ 2370 - "quote 1.0.23", 2371 - "syn 1.0.108", 2395 + "quote 1.0.26", 2396 + "syn 1.0.109", 2397 + ] 2398 + 2399 + [[package]] 2400 + name = "ctor" 2401 + version = "0.2.0" 2402 + source = "registry+https://github.com/rust-lang/crates.io-index" 2403 + checksum = "dd4056f63fce3b82d852c3da92b08ea59959890813a7f4ce9c0ff85b10cf301b" 2404 + dependencies = [ 2405 + "quote 1.0.26", 2406 + "syn 2.0.10", 2372 2407 ] 2373 2408 2374 2409 [[package]] ··· 2420 2455 "cc", 2421 2456 "codespan-reporting", 2422 2457 "once_cell", 2423 - "proc-macro2 1.0.51", 2424 - "quote 1.0.23", 2458 + "proc-macro2 1.0.55", 2459 + "quote 1.0.26", 2425 2460 "scratch", 2426 - "syn 1.0.108", 2461 + "syn 1.0.109", 2427 2462 ] 2428 2463 2429 2464 [[package]] ··· 2438 2473 source = "registry+https://github.com/rust-lang/crates.io-index" 2439 2474 checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470" 2440 2475 dependencies = [ 2441 - "proc-macro2 1.0.51", 2442 - "quote 1.0.23", 2443 - "syn 1.0.108", 2476 + "proc-macro2 1.0.55", 2477 + "quote 1.0.26", 2478 + "syn 1.0.109", 2444 2479 ] 2445 2480 2446 2481 [[package]] ··· 2471 2506 dependencies = [ 2472 2507 "fnv", 2473 2508 "ident_case", 2474 - "proc-macro2 1.0.51", 2475 - "quote 1.0.23", 2509 + "proc-macro2 1.0.55", 2510 + "quote 1.0.26", 2476 2511 "strsim 0.10.0", 2477 - "syn 1.0.108", 2512 + "syn 1.0.109", 2478 2513 ] 2479 2514 2480 2515 [[package]] ··· 2485 2520 dependencies = [ 2486 2521 "fnv", 2487 2522 "ident_case", 2488 - "proc-macro2 1.0.51", 2489 - "quote 1.0.23", 2523 + "proc-macro2 1.0.55", 2524 + "quote 1.0.26", 2490 2525 "strsim 0.10.0", 2491 - "syn 1.0.108", 2526 + "syn 1.0.109", 2492 2527 ] 2493 2528 2494 2529 [[package]] ··· 2498 2533 checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 2499 2534 dependencies = [ 2500 2535 "darling_core 0.13.4", 2501 - "quote 1.0.23", 2502 - "syn 1.0.108", 2536 + "quote 1.0.26", 2537 + "syn 1.0.109", 2503 2538 ] 2504 2539 2505 2540 [[package]] ··· 2509 2544 checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e" 2510 2545 dependencies = [ 2511 2546 "darling_core 0.14.2", 2512 - "quote 1.0.23", 2513 - "syn 1.0.108", 2547 + "quote 1.0.26", 2548 + "syn 1.0.109", 2514 2549 ] 2515 2550 2516 2551 [[package]] ··· 2541 2576 [[package]] 2542 2577 name = "datadog-filter" 2543 2578 version = "0.1.0" 2579 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 2544 2580 dependencies = [ 2545 2581 "datadog-search-syntax", 2546 2582 "dyn-clone", ··· 2550 2586 [[package]] 2551 2587 name = "datadog-grok" 2552 2588 version = "0.1.0" 2589 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 2553 2590 dependencies = [ 2554 2591 "bytes 1.4.0", 2555 2592 "chrono", 2556 2593 "chrono-tz", 2557 - "criterion", 2558 2594 "lalrpop", 2559 2595 "lalrpop-util", 2560 2596 "lookup", 2561 2597 "nom", 2562 2598 "once_cell", 2563 2599 "onig", 2564 - "ordered-float 3.4.0", 2600 + "ordered-float 3.6.0", 2565 2601 "peeking_take_while", 2566 2602 "regex", 2567 2603 "serde_json", 2568 2604 "thiserror", 2569 2605 "tracing 0.1.37", 2570 - "tracing-test", 2571 2606 "value", 2572 - "vector-common", 2573 2607 "vrl-compiler", 2574 2608 ] 2575 2609 2576 2610 [[package]] 2577 2611 name = "datadog-search-syntax" 2578 2612 version = "0.1.0" 2613 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 2579 2614 dependencies = [ 2580 2615 "itertools", 2581 2616 "once_cell", ··· 2621 2656 source = "registry+https://github.com/rust-lang/crates.io-index" 2622 2657 checksum = "79b71cca7d95d7681a4b3b9cdf63c8dbc3730d0584c2c74e31416d64a90493f4" 2623 2658 dependencies = [ 2624 - "const-oid", 2659 + "const-oid 0.6.2", 2625 2660 ] 2626 2661 2627 2662 [[package]] 2628 - name = "derivative" 2629 - version = "2.2.0" 2663 + name = "der" 2664 + version = "0.6.1" 2630 2665 source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 2666 + checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 2632 2667 dependencies = [ 2633 - "proc-macro2 1.0.51", 2634 - "quote 1.0.23", 2635 - "syn 1.0.108", 2668 + "const-oid 0.9.1", 2669 + "pem-rfc7468 0.6.0", 2670 + "zeroize", 2636 2671 ] 2637 2672 2638 2673 [[package]] 2639 - name = "derive_arbitrary" 2640 - version = "1.2.3" 2674 + name = "derivative" 2675 + version = "2.2.0" 2641 2676 source = "registry+https://github.com/rust-lang/crates.io-index" 2642 - checksum = "8beee4701e2e229e8098bbdecdca12449bc3e322f137d269182fa1291e20bd00" 2677 + checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 2643 2678 dependencies = [ 2644 - "proc-macro2 1.0.51", 2645 - "quote 1.0.23", 2646 - "syn 1.0.108", 2679 + "proc-macro2 1.0.55", 2680 + "quote 1.0.26", 2681 + "syn 1.0.109", 2647 2682 ] 2648 2683 2649 2684 [[package]] ··· 2653 2688 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 2654 2689 dependencies = [ 2655 2690 "convert_case", 2656 - "proc-macro2 1.0.51", 2657 - "quote 1.0.23", 2691 + "proc-macro2 1.0.55", 2692 + "quote 1.0.26", 2658 2693 "rustc_version 0.4.0", 2659 - "syn 1.0.108", 2694 + "syn 1.0.109", 2660 2695 ] 2661 2696 2662 2697 [[package]] ··· 2687 2722 checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 2688 2723 dependencies = [ 2689 2724 "block-buffer 0.10.3", 2725 + "const-oid 0.9.1", 2690 2726 "crypto-common", 2691 2727 "subtle", 2692 2728 ] ··· 2697 2733 source = "registry+https://github.com/rust-lang/crates.io-index" 2698 2734 checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210" 2699 2735 dependencies = [ 2700 - "dirs-sys", 2736 + "dirs-sys 0.3.7", 2737 + ] 2738 + 2739 + [[package]] 2740 + name = "directories" 2741 + version = "5.0.0" 2742 + source = "registry+https://github.com/rust-lang/crates.io-index" 2743 + checksum = "74be3be809c18e089de43bdc504652bb2bc473fca8756131f8689db8cf079ba9" 2744 + dependencies = [ 2745 + "dirs-sys 0.4.0", 2701 2746 ] 2702 2747 2703 2748 [[package]] ··· 2706 2751 source = "registry+https://github.com/rust-lang/crates.io-index" 2707 2752 checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 2708 2753 dependencies = [ 2709 - "dirs-sys", 2754 + "dirs-sys 0.3.7", 2710 2755 ] 2711 2756 2712 2757 [[package]] ··· 2731 2776 ] 2732 2777 2733 2778 [[package]] 2779 + name = "dirs-sys" 2780 + version = "0.4.0" 2781 + source = "registry+https://github.com/rust-lang/crates.io-index" 2782 + checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b" 2783 + dependencies = [ 2784 + "libc", 2785 + "redox_users", 2786 + "windows-sys 0.45.0", 2787 + ] 2788 + 2789 + [[package]] 2734 2790 name = "dirs-sys-next" 2735 2791 version = "0.1.2" 2736 2792 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2740 2796 "redox_users", 2741 2797 "winapi", 2742 2798 ] 2799 + 2800 + [[package]] 2801 + name = "dlv-list" 2802 + version = "0.3.0" 2803 + source = "registry+https://github.com/rust-lang/crates.io-index" 2804 + checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" 2743 2805 2744 2806 [[package]] 2745 2807 name = "dns-lookup" ··· 2789 2851 2790 2852 [[package]] 2791 2853 name = "dyn-clone" 2792 - version = "1.0.10" 2854 + version = "1.0.11" 2793 2855 source = "registry+https://github.com/rust-lang/crates.io-index" 2794 - checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60" 2856 + checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" 2795 2857 2796 2858 [[package]] 2797 2859 name = "ed25519" 2798 - version = "1.5.2" 2860 + version = "1.5.3" 2799 2861 source = "registry+https://github.com/rust-lang/crates.io-index" 2800 - checksum = "1e9c280362032ea4203659fc489832d0204ef09f247a0506f170dafcac08c369" 2862 + checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" 2801 2863 dependencies = [ 2802 - "signature", 2864 + "signature 1.6.4", 2803 2865 ] 2804 2866 2805 2867 [[package]] ··· 2876 2938 checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73" 2877 2939 dependencies = [ 2878 2940 "heck 0.4.0", 2879 - "proc-macro2 1.0.51", 2880 - "quote 1.0.23", 2881 - "syn 1.0.108", 2941 + "proc-macro2 1.0.55", 2942 + "quote 1.0.26", 2943 + "syn 1.0.109", 2882 2944 ] 2883 2945 2884 2946 [[package]] ··· 2888 2950 checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" 2889 2951 dependencies = [ 2890 2952 "heck 0.4.0", 2891 - "proc-macro2 1.0.51", 2892 - "quote 1.0.23", 2893 - "syn 1.0.108", 2953 + "proc-macro2 1.0.55", 2954 + "quote 1.0.26", 2955 + "syn 1.0.109", 2894 2956 ] 2895 2957 2896 2958 [[package]] ··· 2900 2962 checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2" 2901 2963 dependencies = [ 2902 2964 "once_cell", 2903 - "proc-macro2 1.0.51", 2904 - "quote 1.0.23", 2905 - "syn 1.0.108", 2965 + "proc-macro2 1.0.55", 2966 + "quote 1.0.26", 2967 + "syn 1.0.109", 2906 2968 ] 2907 2969 2908 2970 [[package]] ··· 2920 2982 source = "registry+https://github.com/rust-lang/crates.io-index" 2921 2983 checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae" 2922 2984 dependencies = [ 2923 - "proc-macro2 1.0.51", 2924 - "quote 1.0.23", 2925 - "syn 1.0.108", 2985 + "proc-macro2 1.0.55", 2986 + "quote 1.0.26", 2987 + "syn 1.0.109", 2926 2988 ] 2927 2989 2928 2990 [[package]] ··· 2964 3026 ] 2965 3027 2966 3028 [[package]] 2967 - name = "err-derive" 2968 - version = "0.3.1" 3029 + name = "errno" 3030 + version = "0.2.8" 2969 3031 source = "registry+https://github.com/rust-lang/crates.io-index" 2970 - checksum = "c34a887c8df3ed90498c1c437ce21f211c8e27672921a8ffa293cb8d6d4caa9e" 3032 + checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 2971 3033 dependencies = [ 2972 - "proc-macro-error", 2973 - "proc-macro2 1.0.51", 2974 - "quote 1.0.23", 2975 - "rustversion", 2976 - "syn 1.0.108", 2977 - "synstructure", 3034 + "errno-dragonfly", 3035 + "libc", 3036 + "winapi", 2978 3037 ] 2979 3038 2980 3039 [[package]] 2981 3040 name = "errno" 2982 - version = "0.2.8" 3041 + version = "0.3.0" 2983 3042 source = "registry+https://github.com/rust-lang/crates.io-index" 2984 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 3043 + checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" 2985 3044 dependencies = [ 2986 3045 "errno-dragonfly", 2987 3046 "libc", 2988 - "winapi", 3047 + "windows-sys 0.45.0", 2989 3048 ] 2990 3049 2991 3050 [[package]] ··· 3065 3124 checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 3066 3125 3067 3126 [[package]] 3068 - name = "fast_chemail" 3069 - version = "0.9.6" 3070 - source = "registry+https://github.com/rust-lang/crates.io-index" 3071 - checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4" 3072 - dependencies = [ 3073 - "ascii_utils", 3074 - ] 3075 - 3076 - [[package]] 3077 3127 name = "fastrand" 3078 3128 version = "1.8.0" 3079 3129 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3083 3133 ] 3084 3134 3085 3135 [[package]] 3086 - name = "fd-lock" 3087 - version = "3.0.8" 3088 - source = "registry+https://github.com/rust-lang/crates.io-index" 3089 - checksum = "bb21c69b9fea5e15dbc1049e4b77145dd0ba1c84019c488102de0dc4ea4b0a27" 3090 - dependencies = [ 3091 - "cfg-if", 3092 - "rustix 0.36.4", 3093 - "windows-sys 0.42.0", 3094 - ] 3095 - 3096 - [[package]] 3097 3136 name = "file-source" 3098 3137 version = "0.1.0" 3099 3138 dependencies = [ 3100 - "bstr 1.3.0", 3139 + "bstr 1.4.0", 3101 3140 "bytes 1.4.0", 3102 3141 "chrono", 3103 3142 "crc", 3104 3143 "criterion", 3105 3144 "dashmap", 3106 3145 "flate2", 3107 - "futures 0.3.26", 3146 + "futures 0.3.28", 3108 3147 "glob", 3109 3148 "indexmap", 3110 3149 "libc", ··· 3130 3169 dependencies = [ 3131 3170 "cfg-if", 3132 3171 "libc", 3133 - "redox_syscall", 3172 + "redox_syscall 0.2.16", 3134 3173 "windows-sys 0.42.0", 3135 3174 ] 3136 3175 ··· 3149 3188 source = "registry+https://github.com/rust-lang/crates.io-index" 3150 3189 checksum = "e4c81935e123ab0741c4c4f0d9b8377e5fb21d3de7e062fa4b1263b1fbcba1ea" 3151 3190 dependencies = [ 3152 - "proc-macro2 1.0.51", 3153 - "quote 1.0.23", 3154 - "syn 1.0.108", 3191 + "proc-macro2 1.0.55", 3192 + "quote 1.0.26", 3193 + "syn 1.0.109", 3155 3194 ] 3156 3195 3157 3196 [[package]] ··· 3159 3198 version = "0.4.2" 3160 3199 source = "registry+https://github.com/rust-lang/crates.io-index" 3161 3200 checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 3201 + 3202 + [[package]] 3203 + name = "flagset" 3204 + version = "0.4.3" 3205 + source = "registry+https://github.com/rust-lang/crates.io-index" 3206 + checksum = "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499" 3162 3207 3163 3208 [[package]] 3164 3209 name = "flate2" ··· 3251 3296 3252 3297 [[package]] 3253 3298 name = "futures" 3254 - version = "0.3.26" 3299 + version = "0.3.28" 3255 3300 source = "registry+https://github.com/rust-lang/crates.io-index" 3256 - checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84" 3301 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 3257 3302 dependencies = [ 3258 3303 "futures-channel", 3259 3304 "futures-core", ··· 3266 3311 3267 3312 [[package]] 3268 3313 name = "futures-channel" 3269 - version = "0.3.26" 3314 + version = "0.3.28" 3270 3315 source = "registry+https://github.com/rust-lang/crates.io-index" 3271 - checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 3316 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 3272 3317 dependencies = [ 3273 3318 "futures-core", 3274 3319 "futures-sink", ··· 3276 3321 3277 3322 [[package]] 3278 3323 name = "futures-core" 3279 - version = "0.3.26" 3324 + version = "0.3.28" 3280 3325 source = "registry+https://github.com/rust-lang/crates.io-index" 3281 - checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 3326 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 3282 3327 3283 3328 [[package]] 3284 3329 name = "futures-executor" 3285 - version = "0.3.26" 3330 + version = "0.3.28" 3286 3331 source = "registry+https://github.com/rust-lang/crates.io-index" 3287 - checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e" 3332 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 3288 3333 dependencies = [ 3289 3334 "futures-core", 3290 3335 "futures-task", ··· 3293 3338 3294 3339 [[package]] 3295 3340 name = "futures-io" 3296 - version = "0.3.26" 3341 + version = "0.3.28" 3297 3342 source = "registry+https://github.com/rust-lang/crates.io-index" 3298 - checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 3343 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 3299 3344 3300 3345 [[package]] 3301 3346 name = "futures-lite" ··· 3314 3359 3315 3360 [[package]] 3316 3361 name = "futures-macro" 3317 - version = "0.3.26" 3362 + version = "0.3.28" 3318 3363 source = "registry+https://github.com/rust-lang/crates.io-index" 3319 - checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" 3364 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 3320 3365 dependencies = [ 3321 - "proc-macro2 1.0.51", 3322 - "quote 1.0.23", 3323 - "syn 1.0.108", 3366 + "proc-macro2 1.0.55", 3367 + "quote 1.0.26", 3368 + "syn 2.0.10", 3324 3369 ] 3325 3370 3326 3371 [[package]] 3327 3372 name = "futures-sink" 3328 - version = "0.3.26" 3373 + version = "0.3.28" 3329 3374 source = "registry+https://github.com/rust-lang/crates.io-index" 3330 - checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 3375 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 3331 3376 3332 3377 [[package]] 3333 3378 name = "futures-task" 3334 - version = "0.3.26" 3379 + version = "0.3.28" 3335 3380 source = "registry+https://github.com/rust-lang/crates.io-index" 3336 - checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 3381 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 3337 3382 3338 3383 [[package]] 3339 3384 name = "futures-timer" ··· 3343 3388 3344 3389 [[package]] 3345 3390 name = "futures-util" 3346 - version = "0.3.26" 3391 + version = "0.3.28" 3347 3392 source = "registry+https://github.com/rust-lang/crates.io-index" 3348 - checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 3393 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 3349 3394 dependencies = [ 3350 3395 "futures 0.1.31", 3351 3396 "futures-channel", ··· 3401 3446 source = "registry+https://github.com/rust-lang/crates.io-index" 3402 3447 checksum = "eb19fe8de3ea0920d282f7b77dd4227aea6b8b999b42cdf0ca41b2472b14443a" 3403 3448 dependencies = [ 3404 - "proc-macro2 1.0.51", 3405 - "quote 1.0.23", 3406 - "syn 1.0.108", 3449 + "proc-macro2 1.0.55", 3450 + "quote 1.0.26", 3451 + "syn 1.0.109", 3407 3452 ] 3408 3453 3409 3454 [[package]] ··· 3432 3477 checksum = "f8af59a261bcf42f45d1b261232847b9b850ba0a1419d6100698246fb66e9240" 3433 3478 dependencies = [ 3434 3479 "arc-swap", 3435 - "futures 0.3.26", 3480 + "futures 0.3.28", 3436 3481 "log", 3437 3482 "reqwest", 3438 3483 "serde", ··· 3452 3497 dependencies = [ 3453 3498 "cfg-if", 3454 3499 "dashmap", 3455 - "futures 0.3.26", 3500 + "futures 0.3.28", 3456 3501 "futures-timer", 3457 3502 "no-std-compat", 3458 3503 "nonzero_ext", ··· 3501 3546 "graphql-parser", 3502 3547 "heck 0.4.0", 3503 3548 "lazy_static", 3504 - "proc-macro2 1.0.51", 3505 - "quote 1.0.23", 3549 + "proc-macro2 1.0.55", 3550 + "quote 1.0.26", 3506 3551 "serde", 3507 3552 "serde_json", 3508 - "syn 1.0.108", 3553 + "syn 1.0.109", 3509 3554 ] 3510 3555 3511 3556 [[package]] ··· 3515 3560 checksum = "d52fc9cde811f44b15ec0692b31e56a3067f6f431c5ace712f286e47c1dacc98" 3516 3561 dependencies = [ 3517 3562 "graphql_client_codegen", 3518 - "proc-macro2 1.0.51", 3519 - "syn 1.0.108", 3563 + "proc-macro2 1.0.55", 3564 + "syn 1.0.109", 3520 3565 ] 3521 3566 3522 3567 [[package]] ··· 3531 3576 3532 3577 [[package]] 3533 3578 name = "h2" 3534 - version = "0.3.15" 3579 + version = "0.3.16" 3535 3580 source = "registry+https://github.com/rust-lang/crates.io-index" 3536 - checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 3581 + checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 3537 3582 dependencies = [ 3538 3583 "bytes 1.4.0", 3539 3584 "fnv", ··· 3555 3600 checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 3556 3601 3557 3602 [[package]] 3558 - name = "handlebars" 3559 - version = "4.3.6" 3560 - source = "registry+https://github.com/rust-lang/crates.io-index" 3561 - checksum = "035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a" 3562 - dependencies = [ 3563 - "log", 3564 - "pest", 3565 - "pest_derive", 3566 - "serde", 3567 - "serde_json", 3568 - "thiserror", 3569 - ] 3570 - 3571 - [[package]] 3572 3603 name = "hash_hasher" 3573 3604 version = "2.0.3" 3574 3605 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3694 3725 source = "git+https://github.com/vectordotdev/heim.git?branch=update-nix#76fa765c7ed7fbe43d1465bf52da6b8d19f2d2a9" 3695 3726 dependencies = [ 3696 3727 "cfg-if", 3697 - "futures 0.3.26", 3728 + "futures 0.3.28", 3698 3729 "glob", 3699 3730 "heim-common", 3700 3731 "heim-runtime", ··· 3774 3805 version = "0.1.0-rc.1" 3775 3806 source = "git+https://github.com/vectordotdev/heim.git?branch=update-nix#76fa765c7ed7fbe43d1465bf52da6b8d19f2d2a9" 3776 3807 dependencies = [ 3777 - "futures 0.3.26", 3808 + "futures 0.3.28", 3778 3809 "futures-timer", 3779 3810 "once_cell", 3780 3811 "smol", ··· 3893 3924 3894 3925 [[package]] 3895 3926 name = "hyper" 3896 - version = "0.14.24" 3927 + version = "0.14.25" 3897 3928 source = "registry+https://github.com/rust-lang/crates.io-index" 3898 - checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 3929 + checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" 3899 3930 dependencies = [ 3900 3931 "bytes 1.4.0", 3901 3932 "futures-channel", ··· 3940 3971 checksum = "ca815a891b24fdfb243fa3239c86154392b0953ee584aa1a2a1f66d20cbe75cc" 3941 3972 dependencies = [ 3942 3973 "bytes 1.4.0", 3943 - "futures 0.3.26", 3974 + "futures 0.3.28", 3944 3975 "headers", 3945 3976 "http", 3946 3977 "hyper", ··· 4056 4087 4057 4088 [[package]] 4058 4089 name = "indexmap" 4059 - version = "1.9.2" 4090 + version = "1.9.3" 4060 4091 source = "registry+https://github.com/rust-lang/crates.io-index" 4061 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 4092 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 4062 4093 dependencies = [ 4063 4094 "autocfg", 4064 4095 "hashbrown 0.12.3", ··· 4080 4111 4081 4112 [[package]] 4082 4113 name = "indoc" 4083 - version = "2.0.0" 4114 + version = "2.0.1" 4084 4115 source = "registry+https://github.com/rust-lang/crates.io-index" 4085 - checksum = "6fe2b9d82064e8a0226fddb3547f37f28eaa46d0fc210e275d835f08cf3b76a7" 4116 + checksum = "9f2cb48b81b1dc9f39676bf99f5499babfec7cd8fe14307f7b3d747208fb5690" 4086 4117 4087 4118 [[package]] 4088 4119 name = "infer" ··· 4092 4123 4093 4124 [[package]] 4094 4125 name = "infer" 4095 - version = "0.12.0" 4126 + version = "0.13.0" 4096 4127 source = "registry+https://github.com/rust-lang/crates.io-index" 4097 - checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3" 4128 + checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc" 4098 4129 4099 4130 [[package]] 4100 4131 name = "inherent" 4101 - version = "1.0.4" 4132 + version = "1.0.3" 4102 4133 source = "registry+https://github.com/rust-lang/crates.io-index" 4103 - checksum = "cb659d59c4af6c9dc568b13db431174ab5fa961aa53f5aad7f42fb710c06bc46" 4134 + checksum = "a036328c11e86e024522cb1e9b78ba9df3e316995e004e98854a18e4a326d2e1" 4104 4135 dependencies = [ 4105 - "proc-macro2 1.0.51", 4106 - "quote 1.0.23", 4107 - "syn 1.0.108", 4136 + "proc-macro2 1.0.55", 4137 + "quote 1.0.26", 4138 + "syn 1.0.109", 4108 4139 ] 4109 4140 4110 4141 [[package]] ··· 4148 4179 4149 4180 [[package]] 4150 4181 name = "inventory" 4151 - version = "0.3.3" 4182 + version = "0.3.5" 4152 4183 source = "registry+https://github.com/rust-lang/crates.io-index" 4153 - checksum = "16fe3b35d64bd1f72917f06425e7573a2f63f74f42c8f56e53ea6826dde3a2b5" 4184 + checksum = "7741301a6d6a9b28ce77c0fb77a4eb116b6bc8f3bef09923f7743d059c4157d3" 4154 4185 dependencies = [ 4155 - "ctor", 4186 + "ctor 0.2.0", 4156 4187 "ghost", 4157 4188 ] 4158 4189 ··· 4243 4274 4244 4275 [[package]] 4245 4276 name = "jni" 4246 - version = "0.20.0" 4277 + version = "0.21.1" 4247 4278 source = "registry+https://github.com/rust-lang/crates.io-index" 4248 - checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 4279 + checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 4249 4280 dependencies = [ 4250 4281 "cesu8", 4282 + "cfg-if", 4251 4283 "combine 4.6.6", 4252 4284 "jni-sys", 4253 4285 "log", 4254 4286 "thiserror", 4255 4287 "walkdir", 4288 + "windows-sys 0.45.0", 4256 4289 ] 4257 4290 4258 4291 [[package]] ··· 4308 4341 ] 4309 4342 4310 4343 [[package]] 4344 + name = "jsonwebtoken" 4345 + version = "8.2.0" 4346 + source = "registry+https://github.com/rust-lang/crates.io-index" 4347 + checksum = "09f4f04699947111ec1733e71778d763555737579e44b85844cae8e1940a1828" 4348 + dependencies = [ 4349 + "base64 0.13.1", 4350 + "pem", 4351 + "ring", 4352 + "serde", 4353 + "serde_json", 4354 + "simple_asn1", 4355 + ] 4356 + 4357 + [[package]] 4311 4358 name = "k8s-e2e-tests" 4312 4359 version = "0.1.0" 4313 4360 dependencies = [ 4314 4361 "env_logger 0.10.0", 4315 - "futures 0.3.26", 4362 + "futures 0.3.28", 4316 4363 "indoc", 4317 4364 "k8s-openapi", 4318 4365 "k8s-test-framework", ··· 4413 4460 "chrono", 4414 4461 "dirs-next", 4415 4462 "either", 4416 - "futures 0.3.26", 4463 + "futures 0.3.28", 4417 4464 "http", 4418 4465 "http-body", 4419 4466 "hyper", ··· 4434 4481 "tokio-native-tls", 4435 4482 "tokio-util", 4436 4483 "tower", 4437 - "tower-http", 4484 + "tower-http 0.3.5", 4438 4485 "tracing 0.1.37", 4439 4486 ] 4440 4487 ··· 4464 4511 "ahash 0.8.2", 4465 4512 "backoff", 4466 4513 "derivative", 4467 - "futures 0.3.26", 4514 + "futures 0.3.28", 4468 4515 "json-patch", 4469 4516 "k8s-openapi", 4470 4517 "kube-client", ··· 4504 4551 4505 4552 [[package]] 4506 4553 name = "lalrpop-util" 4507 - version = "0.19.8" 4554 + version = "0.19.9" 4508 4555 source = "registry+https://github.com/rust-lang/crates.io-index" 4509 - checksum = "bcf796c978e9b4d983414f4caedc9273aa33ee214c5b887bd55fde84c85d2dc4" 4556 + checksum = "e5c1f7869c94d214466c5fd432dfed12c379fd87786768d36455892d46b18edd" 4510 4557 dependencies = [ 4511 4558 "regex", 4512 4559 ] ··· 4538 4585 version = "1.4.0" 4539 4586 source = "registry+https://github.com/rust-lang/crates.io-index" 4540 4587 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 4588 + dependencies = [ 4589 + "spin 0.5.2", 4590 + ] 4541 4591 4542 4592 [[package]] 4543 4593 name = "libc" 4544 - version = "0.2.139" 4594 + version = "0.2.140" 4545 4595 source = "registry+https://github.com/rust-lang/crates.io-index" 4546 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 4596 + checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 4547 4597 4548 4598 [[package]] 4549 4599 name = "libflate" ··· 4618 4668 version = "0.1.3" 4619 4669 source = "registry+https://github.com/rust-lang/crates.io-index" 4620 4670 checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f" 4671 + 4672 + [[package]] 4673 + name = "linux-raw-sys" 4674 + version = "0.3.0" 4675 + source = "registry+https://github.com/rust-lang/crates.io-index" 4676 + checksum = "cd550e73688e6d578f0ac2119e32b797a327631a42f9433e59d02e139c8df60d" 4621 4677 4622 4678 [[package]] 4623 4679 name = "listenfd" 4624 - version = "1.0.0" 4680 + version = "1.0.1" 4625 4681 source = "registry+https://github.com/rust-lang/crates.io-index" 4626 - checksum = "14e4fcc00ff6731d94b70e16e71f43bda62883461f31230742e3bc6dddf12988" 4682 + checksum = "e0500463acd96259d219abb05dc57e5a076ef04b2db9a2112846929b5f174c96" 4627 4683 dependencies = [ 4628 4684 "libc", 4629 - "uuid 1.3.0", 4685 + "uuid", 4630 4686 "winapi", 4631 4687 ] 4632 4688 ··· 4676 4732 [[package]] 4677 4733 name = "lookup" 4678 4734 version = "0.1.0" 4735 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 4679 4736 dependencies = [ 4680 - "criterion", 4681 4737 "inherent", 4682 4738 "lalrpop", 4683 4739 "lalrpop-util", ··· 4685 4741 "quickcheck", 4686 4742 "regex", 4687 4743 "serde", 4688 - "serde_json", 4689 4744 "snafu", 4690 - "tracing 0.1.37", 4691 - "vector-config", 4692 - "vector-config-macros", 4693 4745 ] 4694 4746 4695 4747 [[package]] 4696 4748 name = "lru" 4697 - version = "0.9.0" 4749 + version = "0.10.0" 4698 4750 source = "registry+https://github.com/rust-lang/crates.io-index" 4699 - checksum = "71e7d46de488603ffdd5f30afbc64fbba2378214a2c3a2fb83abf3d33126df17" 4751 + checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e" 4700 4752 4701 4753 [[package]] 4702 4754 name = "lru-cache" ··· 4761 4813 ] 4762 4814 4763 4815 [[package]] 4816 + name = "mach2" 4817 + version = "0.4.1" 4818 + source = "registry+https://github.com/rust-lang/crates.io-index" 4819 + checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 4820 + dependencies = [ 4821 + "libc", 4822 + ] 4823 + 4824 + [[package]] 4764 4825 name = "malloc_buf" 4765 4826 version = "0.0.6" 4766 4827 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4882 4943 source = "registry+https://github.com/rust-lang/crates.io-index" 4883 4944 checksum = "731f8ecebd9f3a4aa847dfe75455e4757a45da40a7793d2f0b1f9b6ed18b23f3" 4884 4945 dependencies = [ 4885 - "proc-macro2 1.0.51", 4886 - "quote 1.0.23", 4887 - "syn 1.0.108", 4946 + "proc-macro2 1.0.55", 4947 + "quote 1.0.26", 4948 + "syn 1.0.109", 4888 4949 ] 4889 4950 4890 4951 [[package]] ··· 4919 4980 "ordered-float 2.10.0", 4920 4981 "parking_lot", 4921 4982 "portable-atomic", 4922 - "quanta", 4983 + "quanta 0.10.1", 4923 4984 "radix_trie", 4924 4985 "sketches-ddsketch", 4925 4986 ] ··· 4969 5030 4970 5031 [[package]] 4971 5032 name = "mlua" 4972 - version = "0.8.7" 5033 + version = "0.8.8" 4973 5034 source = "registry+https://github.com/rust-lang/crates.io-index" 4974 - checksum = "2ee2ad7a9aa69056b148d9d590344bc155d3ce0d2200e3b2838f7034f6ba33c1" 5035 + checksum = "ea8ce6788556a67d90567809c7de94dfef2ff1f47ff897aeee935bcfbcdf5735" 4975 5036 dependencies = [ 4976 5037 "bstr 0.2.17", 4977 5038 "cc", ··· 4991 5052 4992 5053 [[package]] 4993 5054 name = "mongodb" 4994 - version = "2.3.1" 5055 + version = "2.4.0" 4995 5056 source = "registry+https://github.com/rust-lang/crates.io-index" 4996 - checksum = "b5a1df476ac9541b0e4fdc8e2cc48884e66c92c933cd17a1fd75e68caf75752e" 5057 + checksum = "a37fe10c1485a0cd603468e284a1a8535b4ecf46808f5f7de3639a1e1252dbf8" 4997 5058 dependencies = [ 4998 5059 "async-trait", 4999 5060 "base64 0.13.1", ··· 5001 5062 "bson", 5002 5063 "chrono", 5003 5064 "derivative", 5065 + "derive_more", 5004 5066 "futures-core", 5005 5067 "futures-executor", 5068 + "futures-io", 5006 5069 "futures-util", 5007 5070 "hex", 5008 5071 "hmac", 5009 5072 "lazy_static", 5010 5073 "md-5", 5011 - "os_info", 5012 5074 "pbkdf2", 5013 5075 "percent-encoding", 5014 5076 "rand 0.8.5", 5015 5077 "rustc_version_runtime", 5016 5078 "rustls 0.20.7", 5017 - "rustls-pemfile 0.3.0", 5079 + "rustls-pemfile 1.0.1", 5018 5080 "serde", 5019 5081 "serde_bytes", 5020 5082 "serde_with 1.14.0", ··· 5031 5093 "trust-dns-proto 0.21.2", 5032 5094 "trust-dns-resolver", 5033 5095 "typed-builder", 5034 - "uuid 0.8.2", 5096 + "uuid", 5035 5097 "webpki-roots", 5036 5098 ] 5037 5099 ··· 5177 5239 5178 5240 [[package]] 5179 5241 name = "nix" 5180 - version = "0.25.1" 5181 - source = "registry+https://github.com/rust-lang/crates.io-index" 5182 - checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 5183 - dependencies = [ 5184 - "autocfg", 5185 - "bitflags", 5186 - "cfg-if", 5187 - "libc", 5188 - ] 5189 - 5190 - [[package]] 5191 - name = "nix" 5192 5242 version = "0.26.2" 5193 - source = "registry+https://github.com/rust-lang/crates.io-index" 5194 - checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 5243 + source = "git+https://github.com/vectordotdev/nix.git?branch=memfd/gnu/musl#6c53a918d2d5bf4307fd60a19d9e10913ae71eeb" 5195 5244 dependencies = [ 5196 5245 "bitflags", 5197 5246 "cfg-if", ··· 5251 5300 ] 5252 5301 5253 5302 [[package]] 5254 - name = "nom8" 5255 - version = "0.2.0" 5256 - source = "registry+https://github.com/rust-lang/crates.io-index" 5257 - checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" 5258 - dependencies = [ 5259 - "memchr", 5260 - ] 5261 - 5262 - [[package]] 5263 5303 name = "nonzero_ext" 5264 5304 version = "0.3.0" 5265 5305 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5323 5363 ] 5324 5364 5325 5365 [[package]] 5366 + name = "num-bigint-dig" 5367 + version = "0.8.2" 5368 + source = "registry+https://github.com/rust-lang/crates.io-index" 5369 + checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905" 5370 + dependencies = [ 5371 + "byteorder", 5372 + "lazy_static", 5373 + "libm", 5374 + "num-integer", 5375 + "num-iter", 5376 + "num-traits", 5377 + "rand 0.8.5", 5378 + "smallvec", 5379 + "zeroize", 5380 + ] 5381 + 5382 + [[package]] 5326 5383 name = "num-complex" 5327 5384 version = "0.4.2" 5328 5385 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5353 5410 ] 5354 5411 5355 5412 [[package]] 5413 + name = "num-iter" 5414 + version = "0.1.43" 5415 + source = "registry+https://github.com/rust-lang/crates.io-index" 5416 + checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 5417 + dependencies = [ 5418 + "autocfg", 5419 + "num-integer", 5420 + "num-traits", 5421 + ] 5422 + 5423 + [[package]] 5356 5424 name = "num-rational" 5357 5425 version = "0.3.2" 5358 5426 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5385 5453 5386 5454 [[package]] 5387 5455 name = "num_enum" 5388 - version = "0.5.10" 5456 + version = "0.5.11" 5389 5457 source = "registry+https://github.com/rust-lang/crates.io-index" 5390 - checksum = "3e0072973714303aa6e3631c7e8e777970cf4bdd25dc4932e41031027b8bcc4e" 5458 + checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 5391 5459 dependencies = [ 5392 5460 "num_enum_derive", 5393 5461 ] 5394 5462 5395 5463 [[package]] 5396 5464 name = "num_enum_derive" 5397 - version = "0.5.10" 5465 + version = "0.5.11" 5398 5466 source = "registry+https://github.com/rust-lang/crates.io-index" 5399 - checksum = "0629cbd6b897944899b1f10496d9c4a7ac5878d45fd61bc22e9e79bfbbc29597" 5467 + checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 5400 5468 dependencies = [ 5401 5469 "proc-macro-crate 1.2.1", 5402 - "proc-macro2 1.0.51", 5403 - "quote 1.0.23", 5404 - "syn 1.0.108", 5470 + "proc-macro2 1.0.55", 5471 + "quote 1.0.26", 5472 + "syn 1.0.109", 5405 5473 ] 5406 5474 5407 5475 [[package]] ··· 5498 5566 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 5499 5567 5500 5568 [[package]] 5569 + name = "opendal" 5570 + version = "0.30.5" 5571 + source = "registry+https://github.com/rust-lang/crates.io-index" 5572 + checksum = "a89d32f1761175aff31cb233330e206c2a8d9c3e96b0af3e74d0e7eff978b46a" 5573 + dependencies = [ 5574 + "anyhow", 5575 + "async-compat", 5576 + "async-trait", 5577 + "backon", 5578 + "base64 0.21.0", 5579 + "bytes 1.4.0", 5580 + "flagset", 5581 + "futures 0.3.28", 5582 + "http", 5583 + "hyper", 5584 + "log", 5585 + "md-5", 5586 + "once_cell", 5587 + "parking_lot", 5588 + "percent-encoding", 5589 + "pin-project", 5590 + "quick-xml 0.27.1", 5591 + "reqsign", 5592 + "reqwest", 5593 + "serde", 5594 + "serde_json", 5595 + "time", 5596 + "tokio", 5597 + "ureq", 5598 + "uuid", 5599 + ] 5600 + 5601 + [[package]] 5501 5602 name = "openidconnect" 5502 5603 version = "2.4.0" 5503 5604 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5523 5624 5524 5625 [[package]] 5525 5626 name = "openssl" 5526 - version = "0.10.45" 5627 + version = "0.10.48" 5527 5628 source = "registry+https://github.com/rust-lang/crates.io-index" 5528 - checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 5629 + checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" 5529 5630 dependencies = [ 5530 5631 "bitflags", 5531 5632 "cfg-if", ··· 5542 5643 source = "registry+https://github.com/rust-lang/crates.io-index" 5543 5644 checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 5544 5645 dependencies = [ 5545 - "proc-macro2 1.0.51", 5546 - "quote 1.0.23", 5547 - "syn 1.0.108", 5646 + "proc-macro2 1.0.55", 5647 + "quote 1.0.26", 5648 + "syn 1.0.109", 5548 5649 ] 5549 5650 5550 5651 [[package]] ··· 5564 5665 5565 5666 [[package]] 5566 5667 name = "openssl-sys" 5567 - version = "0.9.80" 5668 + version = "0.9.83" 5568 5669 source = "registry+https://github.com/rust-lang/crates.io-index" 5569 - checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 5670 + checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b" 5570 5671 dependencies = [ 5571 5672 "autocfg", 5572 5673 "cc", ··· 5583 5684 "bytes 1.4.0", 5584 5685 "chrono", 5585 5686 "hex", 5586 - "lookup", 5587 - "ordered-float 3.4.0", 5687 + "ordered-float 3.6.0", 5588 5688 "prost", 5589 5689 "prost-build", 5590 5690 "tonic", 5591 5691 "tonic-build", 5592 5692 "value", 5593 5693 "vector-core", 5694 + "vector-lookup", 5594 5695 ] 5595 5696 5596 5697 [[package]] ··· 5604 5705 5605 5706 [[package]] 5606 5707 name = "ordered-float" 5607 - version = "3.4.0" 5708 + version = "3.6.0" 5608 5709 source = "registry+https://github.com/rust-lang/crates.io-index" 5609 - checksum = "d84eb1409416d254e4a9c8fa56cc24701755025b458f0fcd8e59e1f5f40c23bf" 5710 + checksum = "13a384337e997e6860ffbaa83708b2ef329fd8c54cb67a5f64d421e0f943254f" 5610 5711 dependencies = [ 5611 5712 "num-traits", 5612 5713 ] 5613 5714 5614 5715 [[package]] 5716 + name = "ordered-multimap" 5717 + version = "0.4.3" 5718 + source = "registry+https://github.com/rust-lang/crates.io-index" 5719 + checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" 5720 + dependencies = [ 5721 + "dlv-list", 5722 + "hashbrown 0.12.3", 5723 + ] 5724 + 5725 + [[package]] 5615 5726 name = "os_info" 5616 - version = "3.6.0" 5727 + version = "3.7.0" 5617 5728 source = "registry+https://github.com/rust-lang/crates.io-index" 5618 - checksum = "5c424bc68d15e0778838ac013b5b3449544d8133633d8016319e7e05a820b8c0" 5729 + checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" 5619 5730 dependencies = [ 5620 5731 "log", 5621 5732 "winapi", ··· 5638 5749 checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 5639 5750 5640 5751 [[package]] 5752 + name = "output_vt100" 5753 + version = "0.1.3" 5754 + source = "registry+https://github.com/rust-lang/crates.io-index" 5755 + checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 5756 + dependencies = [ 5757 + "winapi", 5758 + ] 5759 + 5760 + [[package]] 5641 5761 name = "outref" 5642 - version = "0.1.0" 5762 + version = "0.5.1" 5643 5763 source = "registry+https://github.com/rust-lang/crates.io-index" 5644 - checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" 5764 + checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" 5645 5765 5646 5766 [[package]] 5647 5767 name = "overload" ··· 5682 5802 dependencies = [ 5683 5803 "cfg-if", 5684 5804 "libc", 5685 - "redox_syscall", 5805 + "redox_syscall 0.2.16", 5686 5806 "smallvec", 5687 5807 "windows-sys 0.42.0", 5688 5808 ] ··· 5698 5818 5699 5819 [[package]] 5700 5820 name = "paste" 5701 - version = "1.0.11" 5821 + version = "1.0.12" 5702 5822 source = "registry+https://github.com/rust-lang/crates.io-index" 5703 - checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" 5823 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 5704 5824 5705 5825 [[package]] 5706 5826 name = "pbkdf2" 5707 - version = "0.10.1" 5827 + version = "0.11.0" 5708 5828 source = "registry+https://github.com/rust-lang/crates.io-index" 5709 - checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7" 5829 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 5710 5830 dependencies = [ 5711 5831 "digest 0.10.6", 5712 5832 ] ··· 5728 5848 5729 5849 [[package]] 5730 5850 name = "pem-rfc7468" 5731 - version = "0.2.4" 5851 + version = "0.2.3" 5732 5852 source = "registry+https://github.com/rust-lang/crates.io-index" 5733 - checksum = "84e93a3b1cc0510b03020f33f21e62acdde3dcaef432edc95bea377fbd4c2cd4" 5853 + checksum = "8f22eb0e3c593294a99e9ff4b24cf6b752d43f193aa4415fe5077c159996d497" 5854 + dependencies = [ 5855 + "base64ct", 5856 + ] 5857 + 5858 + [[package]] 5859 + name = "pem-rfc7468" 5860 + version = "0.6.0" 5861 + source = "registry+https://github.com/rust-lang/crates.io-index" 5862 + checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" 5734 5863 dependencies = [ 5735 5864 "base64ct", 5736 5865 ] ··· 5743 5872 5744 5873 [[package]] 5745 5874 name = "pest" 5746 - version = "2.5.5" 5875 + version = "2.5.6" 5747 5876 source = "registry+https://github.com/rust-lang/crates.io-index" 5748 - checksum = "028accff104c4e513bad663bbcd2ad7cfd5304144404c31ed0a77ac103d00660" 5877 + checksum = "8cbd939b234e95d72bc393d51788aec68aeeb5d51e748ca08ff3aad58cb722f7" 5749 5878 dependencies = [ 5750 5879 "thiserror", 5751 5880 "ucd-trie", ··· 5753 5882 5754 5883 [[package]] 5755 5884 name = "pest_derive" 5756 - version = "2.5.5" 5885 + version = "2.5.6" 5757 5886 source = "registry+https://github.com/rust-lang/crates.io-index" 5758 - checksum = "2ac3922aac69a40733080f53c1ce7f91dcf57e1a5f6c52f421fadec7fbdc4b69" 5887 + checksum = "a81186863f3d0a27340815be8f2078dd8050b14cd71913db9fbda795e5f707d7" 5759 5888 dependencies = [ 5760 5889 "pest", 5761 5890 "pest_generator", ··· 5763 5892 5764 5893 [[package]] 5765 5894 name = "pest_generator" 5766 - version = "2.5.5" 5895 + version = "2.5.6" 5767 5896 source = "registry+https://github.com/rust-lang/crates.io-index" 5768 - checksum = "d06646e185566b5961b4058dd107e0a7f56e77c3f484549fb119867773c0f202" 5897 + checksum = "75a1ef20bf3193c15ac345acb32e26b3dc3223aff4d77ae4fc5359567683796b" 5769 5898 dependencies = [ 5770 5899 "pest", 5771 5900 "pest_meta", 5772 - "proc-macro2 1.0.51", 5773 - "quote 1.0.23", 5774 - "syn 1.0.108", 5901 + "proc-macro2 1.0.55", 5902 + "quote 1.0.26", 5903 + "syn 1.0.109", 5775 5904 ] 5776 5905 5777 5906 [[package]] 5778 5907 name = "pest_meta" 5779 - version = "2.5.5" 5908 + version = "2.5.6" 5780 5909 source = "registry+https://github.com/rust-lang/crates.io-index" 5781 - checksum = "e6f60b2ba541577e2a0c307c8f39d1439108120eb7903adeb6497fa880c59616" 5910 + checksum = "5e3b284b1f13a20dc5ebc90aff59a51b8d7137c221131b52a7260c08cbc1cc80" 5782 5911 dependencies = [ 5783 5912 "once_cell", 5784 5913 "pest", ··· 5863 5992 source = "registry+https://github.com/rust-lang/crates.io-index" 5864 5993 checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 5865 5994 dependencies = [ 5866 - "proc-macro2 1.0.51", 5867 - "quote 1.0.23", 5868 - "syn 1.0.108", 5995 + "proc-macro2 1.0.55", 5996 + "quote 1.0.26", 5997 + "syn 1.0.109", 5869 5998 ] 5870 5999 5871 6000 [[package]] ··· 5893 6022 ] 5894 6023 5895 6024 [[package]] 6025 + name = "pkcs1" 6026 + version = "0.4.1" 6027 + source = "registry+https://github.com/rust-lang/crates.io-index" 6028 + checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719" 6029 + dependencies = [ 6030 + "der 0.6.1", 6031 + "pkcs8 0.9.0", 6032 + "spki 0.6.0", 6033 + "zeroize", 6034 + ] 6035 + 6036 + [[package]] 5896 6037 name = "pkcs8" 5897 6038 version = "0.7.6" 5898 6039 source = "registry+https://github.com/rust-lang/crates.io-index" 5899 6040 checksum = "ee3ef9b64d26bad0536099c816c6734379e45bbd5f14798def6809e5cc350447" 5900 6041 dependencies = [ 5901 - "der", 5902 - "pem-rfc7468", 5903 - "spki", 6042 + "der 0.4.5", 6043 + "pem-rfc7468 0.2.3", 6044 + "spki 0.4.1", 5904 6045 "zeroize", 5905 6046 ] 5906 6047 5907 6048 [[package]] 6049 + name = "pkcs8" 6050 + version = "0.9.0" 6051 + source = "registry+https://github.com/rust-lang/crates.io-index" 6052 + checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 6053 + dependencies = [ 6054 + "der 0.6.1", 6055 + "spki 0.6.0", 6056 + ] 6057 + 6058 + [[package]] 5908 6059 name = "pkg-config" 5909 6060 version = "0.3.26" 5910 6061 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5977 6128 source = "registry+https://github.com/rust-lang/crates.io-index" 5978 6129 checksum = "1de0ea6504e07ca78355a6fb88ad0f36cafe9e696cbc6717f16a207f3a60be72" 5979 6130 dependencies = [ 5980 - "futures 0.3.26", 6131 + "futures 0.3.28", 5981 6132 "openssl", 5982 6133 "tokio", 5983 6134 "tokio-openssl", ··· 6028 6179 6029 6180 [[package]] 6030 6181 name = "predicates" 6031 - version = "2.1.3" 6182 + version = "3.0.1" 6032 6183 source = "registry+https://github.com/rust-lang/crates.io-index" 6033 - checksum = "ed6bd09a7f7e68f3f0bf710fb7ab9c4615a488b58b5f653382a687701e458c92" 6184 + checksum = "1ba7d6ead3e3966038f68caa9fc1f860185d95a793180bbcfe0d0da47b3961ed" 6034 6185 dependencies = [ 6186 + "anstyle", 6035 6187 "difflib", 6036 6188 "itertools", 6037 6189 "predicates-core", ··· 6039 6191 6040 6192 [[package]] 6041 6193 name = "predicates-core" 6042 - version = "1.0.5" 6194 + version = "1.0.6" 6043 6195 source = "registry+https://github.com/rust-lang/crates.io-index" 6044 - checksum = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2" 6196 + checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 6045 6197 6046 6198 [[package]] 6047 6199 name = "predicates-tree" ··· 6054 6206 ] 6055 6207 6056 6208 [[package]] 6209 + name = "pretty_assertions" 6210 + version = "1.3.0" 6211 + source = "registry+https://github.com/rust-lang/crates.io-index" 6212 + checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 6213 + dependencies = [ 6214 + "ctor 0.1.26", 6215 + "diff", 6216 + "output_vt100", 6217 + "yansi", 6218 + ] 6219 + 6220 + [[package]] 6057 6221 name = "prettydiff" 6058 6222 version = "0.6.2" 6059 6223 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6070 6234 source = "registry+https://github.com/rust-lang/crates.io-index" 6071 6235 checksum = "c142c0e46b57171fe0c528bee8c5b7569e80f0c17e377cd0e30ea57dbc11bb51" 6072 6236 dependencies = [ 6073 - "proc-macro2 1.0.51", 6074 - "syn 1.0.108", 6237 + "proc-macro2 1.0.55", 6238 + "syn 1.0.109", 6075 6239 ] 6076 6240 6077 6241 [[package]] ··· 6115 6279 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 6116 6280 dependencies = [ 6117 6281 "proc-macro-error-attr", 6118 - "proc-macro2 1.0.51", 6119 - "quote 1.0.23", 6120 - "syn 1.0.108", 6282 + "proc-macro2 1.0.55", 6283 + "quote 1.0.26", 6284 + "syn 1.0.109", 6121 6285 "version_check", 6122 6286 ] 6123 6287 ··· 6127 6291 source = "registry+https://github.com/rust-lang/crates.io-index" 6128 6292 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 6129 6293 dependencies = [ 6130 - "proc-macro2 1.0.51", 6131 - "quote 1.0.23", 6294 + "proc-macro2 1.0.55", 6295 + "quote 1.0.26", 6132 6296 "version_check", 6133 6297 ] 6134 6298 ··· 6155 6319 6156 6320 [[package]] 6157 6321 name = "proc-macro2" 6158 - version = "1.0.51" 6322 + version = "1.0.55" 6159 6323 source = "registry+https://github.com/rust-lang/crates.io-index" 6160 - checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 6324 + checksum = "1d0dd4be24fcdcfeaa12a432d588dc59bbad6cad3510c67e74a2b6b2fc950564" 6161 6325 dependencies = [ 6162 6326 "unicode-ident", 6163 6327 ] ··· 6199 6363 ] 6200 6364 6201 6365 [[package]] 6202 - name = "proptests" 6203 - version = "0.1.0" 6204 - dependencies = [ 6205 - "chrono", 6206 - "lookup", 6207 - "ordered-float 3.4.0", 6208 - "proptest", 6209 - "vrl-diagnostic", 6210 - "vrl-parser", 6211 - ] 6212 - 6213 - [[package]] 6214 6366 name = "prost" 6215 - version = "0.11.6" 6367 + version = "0.11.8" 6216 6368 source = "registry+https://github.com/rust-lang/crates.io-index" 6217 - checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698" 6369 + checksum = "e48e50df39172a3e7eb17e14642445da64996989bc212b583015435d39a58537" 6218 6370 dependencies = [ 6219 6371 "bytes 1.4.0", 6220 6372 "prost-derive", ··· 6222 6374 6223 6375 [[package]] 6224 6376 name = "prost-build" 6225 - version = "0.11.6" 6377 + version = "0.11.8" 6226 6378 source = "registry+https://github.com/rust-lang/crates.io-index" 6227 - checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e" 6379 + checksum = "2c828f93f5ca4826f97fedcbd3f9a536c16b12cff3dbbb4a007f932bbad95b12" 6228 6380 dependencies = [ 6229 6381 "bytes 1.4.0", 6230 6382 "heck 0.4.0", ··· 6237 6389 "prost", 6238 6390 "prost-types", 6239 6391 "regex", 6240 - "syn 1.0.108", 6392 + "syn 1.0.109", 6241 6393 "tempfile", 6242 6394 "which", 6243 6395 ] 6244 6396 6245 6397 [[package]] 6246 6398 name = "prost-derive" 6247 - version = "0.11.6" 6399 + version = "0.11.8" 6248 6400 source = "registry+https://github.com/rust-lang/crates.io-index" 6249 - checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d" 6401 + checksum = "4ea9b0f8cbe5e15a8a042d030bd96668db28ecb567ec37d691971ff5731d2b1b" 6250 6402 dependencies = [ 6251 6403 "anyhow", 6252 6404 "itertools", 6253 - "proc-macro2 1.0.51", 6254 - "quote 1.0.23", 6255 - "syn 1.0.108", 6405 + "proc-macro2 1.0.55", 6406 + "quote 1.0.26", 6407 + "syn 1.0.109", 6256 6408 ] 6257 6409 6258 6410 [[package]] 6259 6411 name = "prost-types" 6260 - version = "0.11.6" 6412 + version = "0.11.8" 6261 6413 source = "registry+https://github.com/rust-lang/crates.io-index" 6262 - checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788" 6414 + checksum = "379119666929a1afd7a043aa6cf96fa67a6dce9af60c88095a4686dbce4c9c88" 6263 6415 dependencies = [ 6264 - "bytes 1.4.0", 6265 6416 "prost", 6266 6417 ] 6267 6418 ··· 6280 6431 source = "registry+https://github.com/rust-lang/crates.io-index" 6281 6432 checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 6282 6433 dependencies = [ 6283 - "proc-macro2 1.0.51", 6284 - "quote 1.0.23", 6285 - "syn 1.0.108", 6434 + "proc-macro2 1.0.55", 6435 + "quote 1.0.26", 6436 + "syn 1.0.109", 6286 6437 ] 6287 6438 6288 6439 [[package]] ··· 6298 6449 "crc", 6299 6450 "data-url", 6300 6451 "flate2", 6301 - "futures 0.3.26", 6452 + "futures 0.3.28", 6302 6453 "futures-io", 6303 6454 "futures-timer", 6304 6455 "log", ··· 6320 6471 "tokio-native-tls", 6321 6472 "tokio-util", 6322 6473 "url", 6323 - "uuid 1.3.0", 6474 + "uuid", 6324 6475 "zstd 0.11.2+zstd.1.5.2", 6325 6476 ] 6326 6477 ··· 6342 6493 "once_cell", 6343 6494 "raw-cpuid", 6344 6495 "wasi 0.10.2+wasi-snapshot-preview1", 6496 + "web-sys", 6497 + "winapi", 6498 + ] 6499 + 6500 + [[package]] 6501 + name = "quanta" 6502 + version = "0.11.0" 6503 + source = "registry+https://github.com/rust-lang/crates.io-index" 6504 + checksum = "8cc73c42f9314c4bdce450c77e6f09ecbddefbeddb1b5979ded332a3913ded33" 6505 + dependencies = [ 6506 + "crossbeam-utils", 6507 + "libc", 6508 + "mach2", 6509 + "once_cell", 6510 + "raw-cpuid", 6511 + "wasi 0.11.0+wasi-snapshot-preview1", 6345 6512 "web-sys", 6346 6513 "winapi", 6347 6514 ] ··· 6359 6526 checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 6360 6527 6361 6528 [[package]] 6529 + name = "quick-xml" 6530 + version = "0.27.1" 6531 + source = "registry+https://github.com/rust-lang/crates.io-index" 6532 + checksum = "ffc053f057dd768a56f62cd7e434c42c831d296968997e9ac1f76ea7c2d14c41" 6533 + dependencies = [ 6534 + "memchr", 6535 + "serde", 6536 + ] 6537 + 6538 + [[package]] 6539 + name = "quick-xml" 6540 + version = "0.28.1" 6541 + source = "registry+https://github.com/rust-lang/crates.io-index" 6542 + checksum = "e5c1a97b1bc42b1d550bfb48d4262153fe400a12bab1511821736f7eac76d7e2" 6543 + dependencies = [ 6544 + "memchr", 6545 + "serde", 6546 + ] 6547 + 6548 + [[package]] 6362 6549 name = "quickcheck" 6363 6550 version = "1.0.3" 6364 6551 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6375 6562 source = "registry+https://github.com/rust-lang/crates.io-index" 6376 6563 checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9" 6377 6564 dependencies = [ 6378 - "proc-macro2 1.0.51", 6379 - "quote 1.0.23", 6380 - "syn 1.0.108", 6565 + "proc-macro2 1.0.55", 6566 + "quote 1.0.26", 6567 + "syn 1.0.109", 6381 6568 ] 6382 6569 6383 6570 [[package]] ··· 6391 6578 6392 6579 [[package]] 6393 6580 name = "quote" 6394 - version = "1.0.23" 6581 + version = "1.0.26" 6395 6582 source = "registry+https://github.com/rust-lang/crates.io-index" 6396 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 6583 + checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 6397 6584 dependencies = [ 6398 - "proc-macro2 1.0.51", 6585 + "proc-macro2 1.0.55", 6399 6586 ] 6400 6587 6401 6588 [[package]] ··· 6598 6785 6599 6786 [[package]] 6600 6787 name = "redis" 6601 - version = "0.22.3" 6788 + version = "0.23.0" 6602 6789 source = "registry+https://github.com/rust-lang/crates.io-index" 6603 - checksum = "aa8455fa3621f6b41c514946de66ea0531f57ca017b2e6c7cc368035ea5b46df" 6790 + checksum = "3ea8c51b5dc1d8e5fd3350ec8167f464ec0995e79f2e90a075b63371500d557f" 6604 6791 dependencies = [ 6605 6792 "arc-swap", 6606 6793 "async-trait", 6607 6794 "bytes 1.4.0", 6608 6795 "combine 4.6.6", 6609 - "futures 0.3.26", 6796 + "futures 0.3.28", 6610 6797 "futures-util", 6611 6798 "itoa", 6612 6799 "native-tls", ··· 6629 6816 ] 6630 6817 6631 6818 [[package]] 6819 + name = "redox_syscall" 6820 + version = "0.3.5" 6821 + source = "registry+https://github.com/rust-lang/crates.io-index" 6822 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 6823 + dependencies = [ 6824 + "bitflags", 6825 + ] 6826 + 6827 + [[package]] 6632 6828 name = "redox_users" 6633 6829 version = "0.4.3" 6634 6830 source = "registry+https://github.com/rust-lang/crates.io-index" 6635 6831 checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 6636 6832 dependencies = [ 6637 6833 "getrandom 0.2.8", 6638 - "redox_syscall", 6834 + "redox_syscall 0.2.16", 6639 6835 "thiserror", 6640 6836 ] 6641 6837 6642 6838 [[package]] 6643 6839 name = "regex" 6644 - version = "1.7.1" 6840 + version = "1.7.3" 6645 6841 source = "registry+https://github.com/rust-lang/crates.io-index" 6646 - checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 6842 + checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 6647 6843 dependencies = [ 6648 6844 "aho-corasick", 6649 6845 "memchr", ··· 6661 6857 6662 6858 [[package]] 6663 6859 name = "regex-syntax" 6664 - version = "0.6.28" 6860 + version = "0.6.29" 6665 6861 source = "registry+https://github.com/rust-lang/crates.io-index" 6666 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 6862 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 6667 6863 6668 6864 [[package]] 6669 - name = "remove_dir_all" 6670 - version = "0.5.3" 6865 + name = "rend" 6866 + version = "0.4.0" 6671 6867 source = "registry+https://github.com/rust-lang/crates.io-index" 6672 - checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 6868 + checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" 6673 6869 dependencies = [ 6674 - "winapi", 6870 + "bytecheck", 6675 6871 ] 6676 6872 6677 6873 [[package]] 6678 - name = "rend" 6679 - version = "0.4.0" 6874 + name = "reqsign" 6875 + version = "0.8.5" 6680 6876 source = "registry+https://github.com/rust-lang/crates.io-index" 6681 - checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" 6877 + checksum = "a7db6d8d2cd7fa61403d14de670f98d7cedac38143681c124943d7bb69258b3a" 6682 6878 dependencies = [ 6683 - "bytecheck", 6879 + "anyhow", 6880 + "backon", 6881 + "base64 0.21.0", 6882 + "bytes 1.4.0", 6883 + "dirs", 6884 + "form_urlencoded", 6885 + "hex", 6886 + "hmac", 6887 + "http", 6888 + "jsonwebtoken", 6889 + "log", 6890 + "once_cell", 6891 + "percent-encoding", 6892 + "quick-xml 0.28.1", 6893 + "rand 0.8.5", 6894 + "rsa", 6895 + "rust-ini", 6896 + "serde", 6897 + "serde_json", 6898 + "sha1", 6899 + "sha2 0.10.6", 6900 + "time", 6901 + "ureq", 6684 6902 ] 6685 6903 6686 6904 [[package]] 6687 6905 name = "reqwest" 6688 - version = "0.11.14" 6906 + version = "0.11.16" 6689 6907 source = "registry+https://github.com/rust-lang/crates.io-index" 6690 - checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 6908 + checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" 6691 6909 dependencies = [ 6692 6910 "base64 0.21.0", 6693 6911 "bytes 1.4.0", ··· 6704 6922 "js-sys", 6705 6923 "log", 6706 6924 "mime", 6925 + "mime_guess", 6707 6926 "native-tls", 6708 6927 "once_cell", 6709 6928 "percent-encoding", ··· 6778 6997 source = "registry+https://github.com/rust-lang/crates.io-index" 6779 6998 checksum = "ff26ed6c7c4dfc2aa9480b86a60e3c7233543a270a680e10758a507c5a4ce476" 6780 6999 dependencies = [ 6781 - "proc-macro2 1.0.51", 6782 - "quote 1.0.23", 6783 - "syn 1.0.108", 7000 + "proc-macro2 1.0.55", 7001 + "quote 1.0.26", 7002 + "syn 1.0.109", 6784 7003 ] 6785 7004 6786 7005 [[package]] ··· 6844 7063 ] 6845 7064 6846 7065 [[package]] 7066 + name = "rsa" 7067 + version = "0.8.1" 7068 + source = "registry+https://github.com/rust-lang/crates.io-index" 7069 + checksum = "89b3896c9b7790b70a9aa314a30e4ae114200992a19c96cbe0ca6070edd32ab8" 7070 + dependencies = [ 7071 + "byteorder", 7072 + "digest 0.10.6", 7073 + "num-bigint-dig", 7074 + "num-integer", 7075 + "num-iter", 7076 + "num-traits", 7077 + "pkcs1", 7078 + "pkcs8 0.9.0", 7079 + "rand_core 0.6.4", 7080 + "sha2 0.10.6", 7081 + "signature 2.0.0", 7082 + "subtle", 7083 + "zeroize", 7084 + ] 7085 + 7086 + [[package]] 7087 + name = "rust-ini" 7088 + version = "0.18.0" 7089 + source = "registry+https://github.com/rust-lang/crates.io-index" 7090 + checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df" 7091 + dependencies = [ 7092 + "cfg-if", 7093 + "ordered-multimap", 7094 + ] 7095 + 7096 + [[package]] 6847 7097 name = "rust_decimal" 6848 - version = "1.28.1" 7098 + version = "1.29.1" 6849 7099 source = "registry+https://github.com/rust-lang/crates.io-index" 6850 - checksum = "e13cf35f7140155d02ba4ec3294373d513a3c7baa8364c162b030e33c61520a8" 7100 + checksum = "26bd36b60561ee1fb5ec2817f198b6fd09fa571c897a5e86d1487cfc2b096dfc" 6851 7101 dependencies = [ 6852 7102 "arrayvec 0.7.2", 6853 7103 "borsh", ··· 6882 7132 source = "registry+https://github.com/rust-lang/crates.io-index" 6883 7133 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 6884 7134 dependencies = [ 6885 - "semver 1.0.16", 7135 + "semver 1.0.17", 6886 7136 ] 6887 7137 6888 7138 [[package]] ··· 6902 7152 checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9" 6903 7153 dependencies = [ 6904 7154 "bitflags", 6905 - "errno", 7155 + "errno 0.2.8", 6906 7156 "io-lifetimes 0.7.5", 6907 7157 "libc", 6908 7158 "linux-raw-sys 0.0.46", ··· 6916 7166 checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23" 6917 7167 dependencies = [ 6918 7168 "bitflags", 6919 - "errno", 7169 + "errno 0.2.8", 6920 7170 "io-lifetimes 1.0.3", 6921 7171 "libc", 6922 7172 "linux-raw-sys 0.1.3", ··· 6924 7174 ] 6925 7175 6926 7176 [[package]] 7177 + name = "rustix" 7178 + version = "0.37.5" 7179 + source = "registry+https://github.com/rust-lang/crates.io-index" 7180 + checksum = "0e78cc525325c06b4a7ff02db283472f3c042b7ff0c391f96c6d5ac6f4f91b75" 7181 + dependencies = [ 7182 + "bitflags", 7183 + "errno 0.3.0", 7184 + "io-lifetimes 1.0.3", 7185 + "libc", 7186 + "linux-raw-sys 0.3.0", 7187 + "windows-sys 0.45.0", 7188 + ] 7189 + 7190 + [[package]] 6927 7191 name = "rustls" 6928 7192 version = "0.19.1" 6929 7193 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6983 7247 6984 7248 [[package]] 6985 7249 name = "rustls-pemfile" 6986 - version = "0.3.0" 6987 - source = "registry+https://github.com/rust-lang/crates.io-index" 6988 - checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" 6989 - dependencies = [ 6990 - "base64 0.13.1", 6991 - ] 6992 - 6993 - [[package]] 6994 - name = "rustls-pemfile" 6995 7250 version = "1.0.1" 6996 7251 source = "registry+https://github.com/rust-lang/crates.io-index" 6997 7252 checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" ··· 7019 7274 7020 7275 [[package]] 7021 7276 name = "rustyline" 7022 - version = "10.1.1" 7277 + version = "11.0.0" 7023 7278 source = "registry+https://github.com/rust-lang/crates.io-index" 7024 - checksum = "c1e83c32c3f3c33b08496e0d1df9ea8c64d39adb8eb36a1ebb1440c690697aef" 7279 + checksum = "5dfc8644681285d1fb67a467fb3021bfea306b99b4146b166a1fe3ada965eece" 7025 7280 dependencies = [ 7026 7281 "bitflags", 7027 7282 "cfg-if", 7028 7283 "clipboard-win", 7029 - "fd-lock", 7030 7284 "libc", 7031 7285 "log", 7032 7286 "memchr", 7033 - "nix 0.25.1", 7287 + "nix 0.26.2", 7034 7288 "scopeguard", 7035 7289 "unicode-segmentation", 7036 7290 "unicode-width", ··· 7040 7294 7041 7295 [[package]] 7042 7296 name = "ryu" 7043 - version = "1.0.12" 7297 + version = "1.0.13" 7044 7298 source = "registry+https://github.com/rust-lang/crates.io-index" 7045 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 7299 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 7046 7300 7047 7301 [[package]] 7048 7302 name = "same-file" ··· 7172 7426 7173 7427 [[package]] 7174 7428 name = "semver" 7175 - version = "1.0.16" 7429 + version = "1.0.17" 7176 7430 source = "registry+https://github.com/rust-lang/crates.io-index" 7177 - checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 7431 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 7178 7432 dependencies = [ 7179 7433 "serde", 7180 7434 ] ··· 7187 7441 7188 7442 [[package]] 7189 7443 name = "serde" 7190 - version = "1.0.152" 7444 + version = "1.0.159" 7191 7445 source = "registry+https://github.com/rust-lang/crates.io-index" 7192 - checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 7446 + checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" 7193 7447 dependencies = [ 7194 7448 "serde_derive", 7195 7449 ] ··· 7200 7454 source = "registry+https://github.com/rust-lang/crates.io-index" 7201 7455 checksum = "a78072b550e5c20bc4a9d1384be28809cbdb7b25b2b4707ddc6d908b7e6de3bf" 7202 7456 dependencies = [ 7203 - "toml 0.7.2", 7457 + "toml 0.7.3", 7204 7458 ] 7205 7459 7206 7460 [[package]] ··· 7215 7469 7216 7470 [[package]] 7217 7471 name = "serde-wasm-bindgen" 7218 - version = "0.4.5" 7472 + version = "0.5.0" 7219 7473 source = "registry+https://github.com/rust-lang/crates.io-index" 7220 - checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf" 7474 + checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" 7221 7475 dependencies = [ 7222 7476 "js-sys", 7223 7477 "serde", ··· 7247 7501 7248 7502 [[package]] 7249 7503 name = "serde_derive" 7250 - version = "1.0.152" 7504 + version = "1.0.159" 7251 7505 source = "registry+https://github.com/rust-lang/crates.io-index" 7252 - checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 7506 + checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" 7253 7507 dependencies = [ 7254 - "proc-macro2 1.0.51", 7255 - "quote 1.0.23", 7256 - "syn 1.0.108", 7508 + "proc-macro2 1.0.55", 7509 + "quote 1.0.26", 7510 + "syn 2.0.10", 7257 7511 ] 7258 7512 7259 7513 [[package]] ··· 7262 7516 source = "registry+https://github.com/rust-lang/crates.io-index" 7263 7517 checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" 7264 7518 dependencies = [ 7265 - "proc-macro2 1.0.51", 7266 - "quote 1.0.23", 7267 - "syn 1.0.108", 7519 + "proc-macro2 1.0.55", 7520 + "quote 1.0.26", 7521 + "syn 1.0.109", 7268 7522 ] 7269 7523 7270 7524 [[package]] 7271 7525 name = "serde_json" 7272 - version = "1.0.93" 7526 + version = "1.0.95" 7273 7527 source = "registry+https://github.com/rust-lang/crates.io-index" 7274 - checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" 7528 + checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" 7275 7529 dependencies = [ 7276 7530 "indexmap", 7277 7531 "itoa", ··· 7314 7568 source = "registry+https://github.com/rust-lang/crates.io-index" 7315 7569 checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca" 7316 7570 dependencies = [ 7317 - "proc-macro2 1.0.51", 7318 - "quote 1.0.23", 7319 - "syn 1.0.108", 7571 + "proc-macro2 1.0.55", 7572 + "quote 1.0.26", 7573 + "syn 1.0.109", 7320 7574 ] 7321 7575 7322 7576 [[package]] ··· 7352 7606 7353 7607 [[package]] 7354 7608 name = "serde_with" 7355 - version = "2.2.0" 7609 + version = "2.3.1" 7356 7610 source = "registry+https://github.com/rust-lang/crates.io-index" 7357 - checksum = "30d904179146de381af4c93d3af6ca4984b3152db687dacb9c3c35e86f39809c" 7611 + checksum = "85456ffac572dc8826334164f2fb6fb40a7c766aebe195a2a21ee69ee2885ecf" 7358 7612 dependencies = [ 7359 7613 "base64 0.13.1", 7360 7614 "chrono", ··· 7362 7616 "indexmap", 7363 7617 "serde", 7364 7618 "serde_json", 7365 - "serde_with_macros 2.2.0", 7619 + "serde_with_macros 2.3.1", 7366 7620 "time", 7367 7621 ] 7368 7622 ··· 7373 7627 checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 7374 7628 dependencies = [ 7375 7629 "darling 0.13.4", 7376 - "proc-macro2 1.0.51", 7377 - "quote 1.0.23", 7378 - "syn 1.0.108", 7630 + "proc-macro2 1.0.55", 7631 + "quote 1.0.26", 7632 + "syn 1.0.109", 7379 7633 ] 7380 7634 7381 7635 [[package]] 7382 7636 name = "serde_with_macros" 7383 - version = "2.2.0" 7637 + version = "2.3.1" 7384 7638 source = "registry+https://github.com/rust-lang/crates.io-index" 7385 - checksum = "a1966009f3c05f095697c537312f5415d1e3ed31ce0a56942bac4c771c5c335e" 7639 + checksum = "7cbcd6104f8a4ab6af7f6be2a0da6be86b9de3c401f6e86bb856ab2af739232f" 7386 7640 dependencies = [ 7387 7641 "darling 0.14.2", 7388 - "proc-macro2 1.0.51", 7389 - "quote 1.0.23", 7390 - "syn 1.0.108", 7642 + "proc-macro2 1.0.55", 7643 + "quote 1.0.26", 7644 + "syn 1.0.109", 7391 7645 ] 7392 7646 7393 7647 [[package]] ··· 7404 7658 7405 7659 [[package]] 7406 7660 name = "serde_yaml" 7407 - version = "0.9.17" 7661 + version = "0.9.21" 7408 7662 source = "registry+https://github.com/rust-lang/crates.io-index" 7409 - checksum = "8fb06d4b6cdaef0e0c51fa881acb721bed3c924cfaa71d9c94a3b771dfdf6567" 7663 + checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c" 7410 7664 dependencies = [ 7411 7665 "indexmap", 7412 7666 "itoa", ··· 7526 7780 source = "registry+https://github.com/rust-lang/crates.io-index" 7527 7781 checksum = "5dfecc059e81632eef1dd9b79e22fc28b8fe69b30d3357512a77a0ad8ee3c782" 7528 7782 dependencies = [ 7529 - "pkcs8", 7783 + "pkcs8 0.7.6", 7530 7784 "rand_core 0.6.4", 7531 - "signature", 7785 + "signature 1.6.4", 7532 7786 "zeroize", 7533 7787 ] 7534 7788 ··· 7539 7793 checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 7540 7794 7541 7795 [[package]] 7542 - name = "simd-abstraction" 7543 - version = "0.7.1" 7796 + name = "signature" 7797 + version = "2.0.0" 7544 7798 source = "registry+https://github.com/rust-lang/crates.io-index" 7545 - checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987" 7799 + checksum = "8fe458c98333f9c8152221191a77e2a44e8325d0193484af2e9421a53019e57d" 7546 7800 dependencies = [ 7547 - "outref", 7801 + "digest 0.10.6", 7802 + "rand_core 0.6.4", 7548 7803 ] 7549 7804 7550 7805 [[package]] ··· 7574 7829 checksum = "2a30f10c911c0355f80f1c2faa8096efc4a58cdf8590b954d5b395efa071c711" 7575 7830 7576 7831 [[package]] 7832 + name = "simple_asn1" 7833 + version = "0.6.2" 7834 + source = "registry+https://github.com/rust-lang/crates.io-index" 7835 + checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 7836 + dependencies = [ 7837 + "num-bigint", 7838 + "num-traits", 7839 + "thiserror", 7840 + "time", 7841 + ] 7842 + 7843 + [[package]] 7577 7844 name = "siphasher" 7578 7845 version = "0.3.10" 7579 7846 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 7656 7923 checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 7657 7924 dependencies = [ 7658 7925 "heck 0.4.0", 7659 - "proc-macro2 1.0.51", 7660 - "quote 1.0.23", 7661 - "syn 1.0.108", 7926 + "proc-macro2 1.0.55", 7927 + "quote 1.0.26", 7928 + "syn 1.0.109", 7662 7929 ] 7663 7930 7664 7931 [[package]] ··· 7698 7965 source = "registry+https://github.com/rust-lang/crates.io-index" 7699 7966 checksum = "5c01a0c15da1b0b0e1494112e7af814a678fec9bd157881b49beac661e9b6f32" 7700 7967 dependencies = [ 7701 - "der", 7968 + "der 0.4.5", 7969 + ] 7970 + 7971 + [[package]] 7972 + name = "spki" 7973 + version = "0.6.0" 7974 + source = "registry+https://github.com/rust-lang/crates.io-index" 7975 + checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 7976 + dependencies = [ 7977 + "base64ct", 7978 + "der 0.6.1", 7702 7979 ] 7703 7980 7704 7981 [[package]] ··· 7787 8064 dependencies = [ 7788 8065 "heck 0.3.3", 7789 8066 "proc-macro-error", 7790 - "proc-macro2 1.0.51", 7791 - "quote 1.0.23", 7792 - "syn 1.0.108", 8067 + "proc-macro2 1.0.55", 8068 + "quote 1.0.26", 8069 + "syn 1.0.109", 7793 8070 ] 7794 8071 7795 8072 [[package]] ··· 7805 8082 checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 7806 8083 dependencies = [ 7807 8084 "heck 0.4.0", 7808 - "proc-macro2 1.0.51", 7809 - "quote 1.0.23", 8085 + "proc-macro2 1.0.55", 8086 + "quote 1.0.26", 7810 8087 "rustversion", 7811 - "syn 1.0.108", 8088 + "syn 1.0.109", 7812 8089 ] 7813 8090 7814 8091 [[package]] ··· 7840 8117 7841 8118 [[package]] 7842 8119 name = "syn" 7843 - version = "1.0.108" 8120 + version = "1.0.109" 7844 8121 source = "registry+https://github.com/rust-lang/crates.io-index" 7845 - checksum = "d56e159d99e6c2b93995d171050271edb50ecc5288fbc7cc17de8fdce4e58c14" 8122 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 8123 + dependencies = [ 8124 + "proc-macro2 1.0.55", 8125 + "quote 1.0.26", 8126 + "unicode-ident", 8127 + ] 8128 + 8129 + [[package]] 8130 + name = "syn" 8131 + version = "2.0.10" 8132 + source = "registry+https://github.com/rust-lang/crates.io-index" 8133 + checksum = "5aad1363ed6d37b84299588d62d3a7d95b5a5c2d9aad5c85609fda12afaa1f40" 7846 8134 dependencies = [ 7847 - "proc-macro2 1.0.51", 7848 - "quote 1.0.23", 8135 + "proc-macro2 1.0.55", 8136 + "quote 1.0.26", 7849 8137 "unicode-ident", 7850 8138 ] 7851 8139 ··· 7861 8149 source = "registry+https://github.com/rust-lang/crates.io-index" 7862 8150 checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 7863 8151 dependencies = [ 7864 - "proc-macro2 1.0.51", 7865 - "quote 1.0.23", 7866 - "syn 1.0.108", 8152 + "proc-macro2 1.0.55", 8153 + "quote 1.0.26", 8154 + "syn 1.0.109", 7867 8155 "unicode-xid 0.2.4", 7868 8156 ] 7869 8157 ··· 7903 8191 checksum = "09a4b0a70bac0a58ca6a7659d1328e34ee462339c70b0fa49f72bad1f278910a" 7904 8192 dependencies = [ 7905 8193 "cfg-if", 8194 + "native-tls", 8195 + "rustls-pemfile 1.0.1", 7906 8196 ] 7907 8197 7908 8198 [[package]] ··· 7913 8203 7914 8204 [[package]] 7915 8205 name = "tempfile" 7916 - version = "3.3.0" 8206 + version = "3.5.0" 7917 8207 source = "registry+https://github.com/rust-lang/crates.io-index" 7918 - checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 8208 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 7919 8209 dependencies = [ 7920 8210 "cfg-if", 7921 8211 "fastrand", 7922 - "libc", 7923 - "redox_syscall", 7924 - "remove_dir_all", 7925 - "winapi", 8212 + "redox_syscall 0.3.5", 8213 + "rustix 0.37.5", 8214 + "windows-sys 0.45.0", 7926 8215 ] 7927 8216 7928 8217 [[package]] ··· 7972 8261 checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8" 7973 8262 7974 8263 [[package]] 7975 - name = "test-case" 7976 - version = "3.0.0" 7977 - source = "registry+https://github.com/rust-lang/crates.io-index" 7978 - checksum = "679b019fb241da62cc449b33b224d19ebe1c6767b495569765115dd7f7f9fba4" 7979 - dependencies = [ 7980 - "test-case-macros", 7981 - ] 7982 - 7983 - [[package]] 7984 - name = "test-case-core" 7985 - version = "3.0.0" 7986 - source = "registry+https://github.com/rust-lang/crates.io-index" 7987 - checksum = "72dc21b5887f4032c4656502d085dc28f2afbb686f25f216472bb0526f4b1b88" 7988 - dependencies = [ 7989 - "cfg-if", 7990 - "proc-macro-error", 7991 - "proc-macro2 1.0.51", 7992 - "quote 1.0.23", 7993 - "syn 1.0.108", 7994 - ] 7995 - 7996 - [[package]] 7997 - name = "test-case-macros" 7998 - version = "3.0.0" 7999 - source = "registry+https://github.com/rust-lang/crates.io-index" 8000 - checksum = "f3786898e0be151a96f730fd529b0e8a10f5990fa2a7ea14e37ca27613c05190" 8001 - dependencies = [ 8002 - "proc-macro-error", 8003 - "proc-macro2 1.0.51", 8004 - "quote 1.0.23", 8005 - "syn 1.0.108", 8006 - "test-case-core", 8007 - ] 8008 - 8009 - [[package]] 8010 8264 name = "test-generator" 8011 8265 version = "0.3.1" 8012 8266 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8035 8289 8036 8290 [[package]] 8037 8291 name = "thiserror" 8038 - version = "1.0.38" 8292 + version = "1.0.40" 8039 8293 source = "registry+https://github.com/rust-lang/crates.io-index" 8040 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 8294 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 8041 8295 dependencies = [ 8042 8296 "thiserror-impl", 8043 8297 ] 8044 8298 8045 8299 [[package]] 8046 8300 name = "thiserror-impl" 8047 - version = "1.0.38" 8301 + version = "1.0.40" 8048 8302 source = "registry+https://github.com/rust-lang/crates.io-index" 8049 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 8303 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 8050 8304 dependencies = [ 8051 - "proc-macro2 1.0.51", 8052 - "quote 1.0.23", 8053 - "syn 1.0.108", 8305 + "proc-macro2 1.0.55", 8306 + "quote 1.0.26", 8307 + "syn 2.0.10", 8054 8308 ] 8055 8309 8056 8310 [[package]] ··· 8148 8402 8149 8403 [[package]] 8150 8404 name = "tokio" 8151 - version = "1.25.0" 8405 + version = "1.26.0" 8152 8406 source = "registry+https://github.com/rust-lang/crates.io-index" 8153 - checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" 8407 + checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 8154 8408 dependencies = [ 8155 8409 "autocfg", 8156 8410 "bytes 1.4.0", ··· 8164 8418 "socket2", 8165 8419 "tokio-macros", 8166 8420 "tracing 0.1.37", 8167 - "windows-sys 0.42.0", 8421 + "windows-sys 0.45.0", 8168 8422 ] 8169 8423 8170 8424 [[package]] ··· 8194 8448 source = "registry+https://github.com/rust-lang/crates.io-index" 8195 8449 checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 8196 8450 dependencies = [ 8197 - "proc-macro2 1.0.51", 8198 - "quote 1.0.23", 8199 - "syn 1.0.108", 8451 + "proc-macro2 1.0.55", 8452 + "quote 1.0.26", 8453 + "syn 1.0.109", 8200 8454 ] 8201 8455 8202 8456 [[package]] ··· 8283 8537 8284 8538 [[package]] 8285 8539 name = "tokio-tungstenite" 8286 - version = "0.17.2" 8287 - source = "registry+https://github.com/rust-lang/crates.io-index" 8288 - checksum = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181" 8289 - dependencies = [ 8290 - "futures-util", 8291 - "log", 8292 - "tokio", 8293 - "tungstenite 0.17.3", 8294 - ] 8295 - 8296 - [[package]] 8297 - name = "tokio-tungstenite" 8298 8540 version = "0.18.0" 8299 8541 source = "registry+https://github.com/rust-lang/crates.io-index" 8300 8542 checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd" ··· 8303 8545 "log", 8304 8546 "rustls 0.20.7", 8305 8547 "tokio", 8306 - "tungstenite 0.18.0", 8548 + "tungstenite", 8307 8549 ] 8308 8550 8309 8551 [[package]] ··· 8313 8555 dependencies = [ 8314 8556 "bytes 1.4.0", 8315 8557 "futures-core", 8558 + "futures-io", 8316 8559 "futures-sink", 8317 8560 "pin-project-lite", 8318 8561 "slab", ··· 8331 8574 8332 8575 [[package]] 8333 8576 name = "toml" 8334 - version = "0.7.2" 8577 + version = "0.7.3" 8335 8578 source = "registry+https://github.com/rust-lang/crates.io-index" 8336 - checksum = "f7afcae9e3f0fe2c370fd4657108972cbb2fa9db1b9f84849cefd80741b01cb6" 8579 + checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 8337 8580 dependencies = [ 8338 8581 "serde", 8339 8582 "serde_spanned", ··· 8352 8595 8353 8596 [[package]] 8354 8597 name = "toml_edit" 8355 - version = "0.19.3" 8598 + version = "0.19.6" 8356 8599 source = "registry+https://github.com/rust-lang/crates.io-index" 8357 - checksum = "5e6a7712b49e1775fb9a7b998de6635b299237f48b404dde71704f2e0e7f37e5" 8600 + checksum = "08de71aa0d6e348f070457f85af8bd566e2bc452156a423ddf22861b3a953fae" 8358 8601 dependencies = [ 8359 8602 "indexmap", 8360 - "nom8", 8361 8603 "serde", 8362 8604 "serde_spanned", 8363 8605 "toml_datetime", 8606 + "winnow", 8364 8607 ] 8365 8608 8366 8609 [[package]] ··· 8406 8649 checksum = "5bf5e9b9c0f7e0a7c027dcfaba7b2c60816c7049171f679d99ee2ff65d0de8c4" 8407 8650 dependencies = [ 8408 8651 "prettyplease", 8409 - "proc-macro2 1.0.51", 8652 + "proc-macro2 1.0.55", 8410 8653 "prost-build", 8411 - "quote 1.0.23", 8412 - "syn 1.0.108", 8654 + "quote 1.0.26", 8655 + "syn 1.0.109", 8413 8656 ] 8414 8657 8415 8658 [[package]] ··· 8438 8681 source = "registry+https://github.com/rust-lang/crates.io-index" 8439 8682 checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" 8440 8683 dependencies = [ 8684 + "base64 0.13.1", 8685 + "bitflags", 8686 + "bytes 1.4.0", 8687 + "futures-core", 8688 + "futures-util", 8689 + "http", 8690 + "http-body", 8691 + "http-range-header", 8692 + "pin-project-lite", 8693 + "tower", 8694 + "tower-layer", 8695 + "tower-service", 8696 + "tracing 0.1.37", 8697 + ] 8698 + 8699 + [[package]] 8700 + name = "tower-http" 8701 + version = "0.4.0" 8702 + source = "registry+https://github.com/rust-lang/crates.io-index" 8703 + checksum = "5d1d42a9b3f3ec46ba828e8d376aec14592ea199f70a06a548587ecd1c4ab658" 8704 + dependencies = [ 8441 8705 "async-compression", 8442 - "base64 0.13.1", 8443 8706 "bitflags", 8444 8707 "bytes 1.4.0", 8445 8708 "futures-core", ··· 8450 8713 "pin-project-lite", 8451 8714 "tokio", 8452 8715 "tokio-util", 8453 - "tower", 8454 8716 "tower-layer", 8455 8717 "tower-service", 8456 - "tracing 0.1.37", 8457 8718 ] 8458 8719 8459 8720 [[package]] ··· 8511 8772 source = "registry+https://github.com/rust-lang/crates.io-index" 8512 8773 checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 8513 8774 dependencies = [ 8514 - "proc-macro2 1.0.51", 8515 - "quote 1.0.23", 8516 - "syn 1.0.108", 8775 + "proc-macro2 1.0.55", 8776 + "quote 1.0.26", 8777 + "syn 1.0.109", 8517 8778 ] 8518 8779 8519 8780 [[package]] ··· 8551 8812 source = "registry+https://github.com/rust-lang/crates.io-index" 8552 8813 checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 8553 8814 dependencies = [ 8554 - "futures 0.3.26", 8815 + "futures 0.3.28", 8555 8816 "futures-task", 8556 8817 "pin-project", 8557 8818 "tracing 0.1.37", ··· 8612 8873 "serde", 8613 8874 "serde_json", 8614 8875 "sharded-slab", 8615 - "smallvec", 8616 8876 "thread_local", 8617 8877 "tracing 0.1.37", 8618 8878 "tracing-core 0.1.30", ··· 8621 8881 ] 8622 8882 8623 8883 [[package]] 8624 - name = "tracing-test" 8625 - version = "0.2.4" 8626 - source = "registry+https://github.com/rust-lang/crates.io-index" 8627 - checksum = "3a2c0ff408fe918a94c428a3f2ad04e4afd5c95bbc08fcf868eff750c15728a4" 8628 - dependencies = [ 8629 - "lazy_static", 8630 - "tracing-core 0.1.30", 8631 - "tracing-subscriber", 8632 - "tracing-test-macro", 8633 - ] 8634 - 8635 - [[package]] 8636 - name = "tracing-test-macro" 8637 - version = "0.2.4" 8638 - source = "registry+https://github.com/rust-lang/crates.io-index" 8639 - checksum = "258bc1c4f8e2e73a977812ab339d503e6feeb92700f6d07a6de4d321522d5c08" 8640 - dependencies = [ 8641 - "lazy_static", 8642 - "quote 1.0.23", 8643 - "syn 1.0.108", 8644 - ] 8645 - 8646 - [[package]] 8647 8884 name = "tracing-tower" 8648 8885 version = "0.1.0" 8649 8886 source = "git+https://github.com/tokio-rs/tracing?rev=e0642d949891546a3bb7e47080365ee7274f05cd#e0642d949891546a3bb7e47080365ee7274f05cd" 8650 8887 dependencies = [ 8651 - "futures 0.3.26", 8888 + "futures 0.3.28", 8652 8889 "tower-service", 8653 8890 "tracing 0.2.0", 8654 8891 "tracing-futures 0.3.0", ··· 8754 8991 8755 8992 [[package]] 8756 8993 name = "tungstenite" 8757 - version = "0.17.3" 8758 - source = "registry+https://github.com/rust-lang/crates.io-index" 8759 - checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" 8760 - dependencies = [ 8761 - "base64 0.13.1", 8762 - "byteorder", 8763 - "bytes 1.4.0", 8764 - "http", 8765 - "httparse", 8766 - "log", 8767 - "rand 0.8.5", 8768 - "sha-1", 8769 - "thiserror", 8770 - "url", 8771 - "utf-8", 8772 - ] 8773 - 8774 - [[package]] 8775 - name = "tungstenite" 8776 8994 version = "0.18.0" 8777 8995 source = "registry+https://github.com/rust-lang/crates.io-index" 8778 8996 checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788" ··· 8806 9024 source = "registry+https://github.com/rust-lang/crates.io-index" 8807 9025 checksum = "89851716b67b937e393b3daa8423e67ddfc4bbbf1654bcf05488e95e0828db0c" 8808 9026 dependencies = [ 8809 - "proc-macro2 1.0.51", 8810 - "quote 1.0.23", 8811 - "syn 1.0.108", 9027 + "proc-macro2 1.0.55", 9028 + "quote 1.0.26", 9029 + "syn 1.0.109", 8812 9030 ] 8813 9031 8814 9032 [[package]] ··· 8819 9037 8820 9038 [[package]] 8821 9039 name = "typetag" 8822 - version = "0.2.5" 9040 + version = "0.2.7" 8823 9041 source = "registry+https://github.com/rust-lang/crates.io-index" 8824 - checksum = "8eecd98403ae5ea2813689125cf5b3f99c40b8abed46c0a8945c81eadb673b31" 9042 + checksum = "edc3ebbaab23e6cc369cb48246769d031f5bd85f1b28141f32982e3c0c7b33cf" 8825 9043 dependencies = [ 8826 9044 "erased-serde", 8827 9045 "inventory", ··· 8832 9050 8833 9051 [[package]] 8834 9052 name = "typetag-impl" 8835 - version = "0.2.5" 9053 + version = "0.2.7" 8836 9054 source = "registry+https://github.com/rust-lang/crates.io-index" 8837 - checksum = "8f9568611f0de5e83e0993b85c54679cd0afd659adcfcb0233f16280b980492e" 9055 + checksum = "bb01b60fcc3f5e17babb1a9956263f3ccd2cadc3e52908400231441683283c1d" 8838 9056 dependencies = [ 8839 - "proc-macro2 1.0.51", 8840 - "quote 1.0.23", 8841 - "syn 1.0.108", 9057 + "proc-macro2 1.0.55", 9058 + "quote 1.0.26", 9059 + "syn 2.0.10", 8842 9060 ] 8843 9061 8844 9062 [[package]] ··· 8932 9150 8933 9151 [[package]] 8934 9152 name = "unsafe-libyaml" 8935 - version = "0.2.4" 9153 + version = "0.2.7" 8936 9154 source = "registry+https://github.com/rust-lang/crates.io-index" 8937 - checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68" 9155 + checksum = "ad2024452afd3874bf539695e04af6732ba06517424dbf958fdb16a01f3bef6c" 8938 9156 8939 9157 [[package]] 8940 9158 name = "untrusted" ··· 8954 9172 ] 8955 9173 8956 9174 [[package]] 9175 + name = "ureq" 9176 + version = "2.6.2" 9177 + source = "registry+https://github.com/rust-lang/crates.io-index" 9178 + checksum = "338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d" 9179 + dependencies = [ 9180 + "base64 0.13.1", 9181 + "log", 9182 + "native-tls", 9183 + "once_cell", 9184 + "url", 9185 + ] 9186 + 9187 + [[package]] 8957 9188 name = "url" 8958 9189 version = "2.3.1" 8959 9190 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8991 9222 8992 9223 [[package]] 8993 9224 name = "uuid" 8994 - version = "0.8.2" 8995 - source = "registry+https://github.com/rust-lang/crates.io-index" 8996 - checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 8997 - dependencies = [ 8998 - "getrandom 0.2.8", 8999 - ] 9000 - 9001 - [[package]] 9002 - name = "uuid" 9003 9225 version = "1.3.0" 9004 9226 source = "registry+https://github.com/rust-lang/crates.io-index" 9005 9227 checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" ··· 9018 9240 [[package]] 9019 9241 name = "value" 9020 9242 version = "0.1.0" 9243 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9021 9244 dependencies = [ 9022 9245 "async-graphql", 9023 9246 "bytes 1.4.0", 9024 9247 "chrono", 9025 - "indoc", 9026 9248 "lookup", 9027 9249 "mlua", 9028 - "ordered-float 3.4.0", 9250 + "ordered-float 3.6.0", 9029 9251 "quickcheck", 9030 9252 "regex", 9031 9253 "serde", 9032 9254 "serde_json", 9033 9255 "snafu", 9034 - "toml 0.7.2", 9256 + "toml 0.7.3", 9035 9257 "tracing 0.1.37", 9036 9258 ] 9037 9259 ··· 9048 9270 "anyhow", 9049 9271 "atty", 9050 9272 "cached", 9051 - "clap 4.1.6", 9273 + "chrono", 9274 + "clap 4.1.14", 9052 9275 "clap-verbosity-flag", 9053 9276 "clap_complete", 9054 9277 "confy", 9055 - "directories", 9278 + "directories 5.0.0", 9056 9279 "dunce", 9280 + "glob", 9057 9281 "hashlink", 9282 + "hex", 9058 9283 "indicatif", 9059 9284 "itertools", 9060 9285 "log", ··· 9062 9287 "os_info", 9063 9288 "owo-colors", 9064 9289 "paste", 9290 + "regex", 9291 + "reqwest", 9065 9292 "serde", 9066 9293 "serde_json", 9067 - "serde_yaml 0.9.17", 9068 - "toml 0.7.2", 9294 + "serde_yaml 0.9.21", 9295 + "sha2 0.10.6", 9296 + "tempfile", 9297 + "toml 0.7.3", 9069 9298 ] 9070 9299 9071 9300 [[package]] ··· 9076 9305 9077 9306 [[package]] 9078 9307 name = "vector" 9079 - version = "0.28.1" 9308 + version = "0.29.1" 9080 9309 dependencies = [ 9081 9310 "apache-avro", 9082 9311 "approx", ··· 9097 9326 "aws-sdk-kinesis", 9098 9327 "aws-sdk-s3", 9099 9328 "aws-sdk-sqs", 9100 - "aws-sigv4 0.53.0", 9329 + "aws-sigv4 0.55.0", 9101 9330 "aws-smithy-async", 9102 9331 "aws-smithy-client", 9103 9332 "aws-smithy-http 0.51.0", 9104 - "aws-smithy-http-tower 0.54.3", 9333 + "aws-smithy-http-tower 0.54.4", 9105 9334 "aws-smithy-types 0.51.0", 9106 9335 "aws-types", 9107 9336 "axum", ··· 9116 9345 "bytesize", 9117 9346 "chrono", 9118 9347 "cidr-utils", 9119 - "clap 4.1.6", 9348 + "clap 4.1.14", 9120 9349 "codecs", 9121 9350 "colored", 9122 9351 "console-subscriber", 9123 9352 "criterion", 9124 - "crossterm 0.26.0", 9353 + "crossterm 0.26.1", 9125 9354 "csv", 9126 9355 "datadog-filter", 9127 9356 "datadog-search-syntax", ··· 9136 9365 "fakedata", 9137 9366 "file-source", 9138 9367 "flate2", 9139 - "futures 0.3.26", 9368 + "futures 0.3.28", 9140 9369 "futures-util", 9141 9370 "glob", 9142 9371 "goauth", ··· 9156 9385 "hyper-proxy", 9157 9386 "indexmap", 9158 9387 "indoc", 9159 - "infer 0.12.0", 9388 + "infer 0.13.0", 9160 9389 "inventory", 9161 9390 "itertools", 9162 9391 "k8s-openapi", ··· 9166 9395 "listenfd", 9167 9396 "logfmt", 9168 9397 "loki-logproto", 9169 - "lookup", 9170 9398 "lru", 9171 9399 "maxminddb", 9172 9400 "md-5", ··· 9182 9410 "num-format", 9183 9411 "number_prefix", 9184 9412 "once_cell", 9413 + "opendal", 9185 9414 "openssl", 9186 9415 "openssl-probe", 9187 9416 "openssl-src", 9188 9417 "opentelemetry-proto", 9189 - "ordered-float 3.4.0", 9418 + "ordered-float 3.6.0", 9190 9419 "paste", 9191 9420 "percent-encoding", 9192 9421 "pin-project", ··· 9209 9438 "rmpv", 9210 9439 "roaring", 9211 9440 "seahash", 9212 - "semver 1.0.16", 9441 + "semver 1.0.17", 9213 9442 "serde", 9214 9443 "serde-toml-merge", 9215 9444 "serde_bytes", 9216 9445 "serde_json", 9217 - "serde_with 2.2.0", 9218 - "serde_yaml 0.9.17", 9446 + "serde_with 2.3.1", 9447 + "serde_yaml 0.9.21", 9219 9448 "sha2 0.10.6", 9220 9449 "similar-asserts", 9221 9450 "smallvec", ··· 9234 9463 "tokio-postgres", 9235 9464 "tokio-stream", 9236 9465 "tokio-test", 9237 - "tokio-tungstenite 0.18.0", 9466 + "tokio-tungstenite", 9238 9467 "tokio-util", 9239 - "toml 0.7.2", 9468 + "toml 0.7.3", 9240 9469 "tonic", 9241 9470 "tonic-build", 9242 9471 "tower", 9243 - "tower-http", 9472 + "tower-http 0.4.0", 9244 9473 "tower-test", 9245 9474 "tracing 0.1.37", 9246 9475 "tracing-core 0.1.30", ··· 9252 9481 "tui", 9253 9482 "typetag", 9254 9483 "url", 9255 - "uuid 1.3.0", 9484 + "uuid", 9256 9485 "value", 9257 9486 "vector-api-client", 9258 9487 "vector-buffers", ··· 9261 9490 "vector-config-common", 9262 9491 "vector-config-macros", 9263 9492 "vector-core", 9493 + "vector-lookup", 9264 9494 "vector-vrl-functions", 9265 9495 "vrl", 9266 9496 "vrl-cli", ··· 9278 9508 "anyhow", 9279 9509 "async-trait", 9280 9510 "chrono", 9281 - "clap 4.1.6", 9282 - "futures 0.3.26", 9511 + "clap 4.1.14", 9512 + "futures 0.3.28", 9283 9513 "graphql_client", 9284 9514 "indoc", 9285 9515 "reqwest", ··· 9287 9517 "serde_json", 9288 9518 "tokio", 9289 9519 "tokio-stream", 9290 - "tokio-tungstenite 0.18.0", 9520 + "tokio-tungstenite", 9291 9521 "url", 9292 - "uuid 1.3.0", 9522 + "uuid", 9293 9523 ] 9294 9524 9295 9525 [[package]] ··· 9301 9531 "async-trait", 9302 9532 "bytecheck", 9303 9533 "bytes 1.4.0", 9304 - "clap 4.1.6", 9534 + "clap 4.1.14", 9305 9535 "crc32fast", 9306 9536 "criterion", 9307 9537 "crossbeam-queue", 9308 9538 "crossbeam-utils", 9309 9539 "fslock", 9310 - "futures 0.3.26", 9540 + "futures 0.3.28", 9311 9541 "hdrhistogram", 9312 9542 "memmap2", 9313 9543 "metrics", ··· 9321 9551 "rand 0.8.5", 9322 9552 "rkyv", 9323 9553 "serde", 9324 - "serde_yaml 0.9.17", 9554 + "serde_yaml 0.9.21", 9325 9555 "snafu", 9326 9556 "temp-dir", 9327 9557 "tokio", ··· 9346 9576 "chrono-tz", 9347 9577 "crossbeam-utils", 9348 9578 "derivative", 9349 - "futures 0.3.26", 9579 + "futures 0.3.28", 9350 9580 "indexmap", 9351 9581 "metrics", 9352 9582 "nom", 9353 - "ordered-float 3.4.0", 9583 + "ordered-float 3.6.0", 9354 9584 "paste", 9355 9585 "pin-project", 9356 9586 "quickcheck", ··· 9367 9597 "vector-config", 9368 9598 "vector-config-common", 9369 9599 "vector-config-macros", 9600 + "vrl-core", 9370 9601 ] 9371 9602 9372 9603 [[package]] ··· 9380 9611 "inventory", 9381 9612 "no-proxy", 9382 9613 "num-traits", 9614 + "pretty_assertions", 9383 9615 "serde", 9384 9616 "serde_json", 9385 - "serde_with 2.2.0", 9617 + "serde_with 2.3.1", 9386 9618 "snafu", 9387 - "toml 0.7.2", 9619 + "toml 0.7.3", 9388 9620 "url", 9389 9621 "vector-config-common", 9390 9622 "vector-config-macros", 9623 + "vrl-compiler", 9624 + "vrl-core", 9391 9625 ] 9392 9626 9393 9627 [[package]] ··· 9396 9630 dependencies = [ 9397 9631 "darling 0.13.4", 9398 9632 "indexmap", 9399 - "proc-macro2 1.0.51", 9400 - "quote 1.0.23", 9633 + "proc-macro2 1.0.55", 9634 + "quote 1.0.26", 9401 9635 "serde", 9402 9636 "serde_json", 9403 - "syn 1.0.108", 9637 + "syn 1.0.109", 9404 9638 ] 9405 9639 9406 9640 [[package]] ··· 9408 9642 version = "0.1.0" 9409 9643 dependencies = [ 9410 9644 "darling 0.13.4", 9411 - "proc-macro2 1.0.51", 9412 - "quote 1.0.23", 9645 + "itertools", 9646 + "proc-macro2 1.0.55", 9647 + "quote 1.0.26", 9413 9648 "serde", 9414 9649 "serde_derive_internals", 9415 - "syn 1.0.108", 9650 + "syn 1.0.109", 9416 9651 "vector-config", 9417 9652 "vector-config-common", 9418 9653 ] ··· 9436 9671 "enumflags2", 9437 9672 "env-test-util", 9438 9673 "float_eq", 9439 - "futures 0.3.26", 9674 + "futures 0.3.28", 9440 9675 "futures-util", 9441 9676 "headers", 9442 9677 "http", 9443 9678 "hyper-proxy", 9444 9679 "indexmap", 9445 - "lookup", 9446 9680 "metrics", 9447 9681 "metrics-tracing-context", 9448 9682 "metrics-util", ··· 9453 9687 "noisy_float", 9454 9688 "once_cell", 9455 9689 "openssl", 9456 - "ordered-float 3.4.0", 9690 + "ordered-float 3.6.0", 9457 9691 "parking_lot", 9458 9692 "pin-project", 9459 9693 "proptest", 9460 9694 "prost", 9461 9695 "prost-build", 9462 9696 "prost-types", 9463 - "quanta", 9697 + "quanta 0.11.0", 9464 9698 "quickcheck", 9465 9699 "quickcheck_macros", 9466 9700 "rand 0.8.5", ··· 9471 9705 "security-framework", 9472 9706 "serde", 9473 9707 "serde_json", 9474 - "serde_with 2.2.0", 9708 + "serde_with 2.3.1", 9475 9709 "similar-asserts", 9476 9710 "smallvec", 9477 9711 "snafu", ··· 9481 9715 "tokio-stream", 9482 9716 "tokio-test", 9483 9717 "tokio-util", 9484 - "toml 0.7.2", 9718 + "toml 0.7.3", 9485 9719 "tonic", 9486 9720 "tower", 9487 9721 "tracing 0.1.37", ··· 9497 9731 "vector-config", 9498 9732 "vector-config-common", 9499 9733 "vector-config-macros", 9734 + "vector-lookup", 9500 9735 "vrl", 9501 9736 ] 9502 9737 9503 9738 [[package]] 9739 + name = "vector-lookup" 9740 + version = "0.1.0" 9741 + dependencies = [ 9742 + "lookup", 9743 + "serde", 9744 + "vector-config", 9745 + "vector-config-macros", 9746 + ] 9747 + 9748 + [[package]] 9749 + name = "vector-vrl-cli" 9750 + version = "0.1.0" 9751 + dependencies = [ 9752 + "clap 4.1.14", 9753 + "vector-vrl-functions", 9754 + "vrl-cli", 9755 + "vrl-stdlib", 9756 + ] 9757 + 9758 + [[package]] 9504 9759 name = "vector-vrl-functions" 9505 9760 version = "0.1.0" 9506 9761 dependencies = [ ··· 9510 9765 ] 9511 9766 9512 9767 [[package]] 9768 + name = "vector-vrl-tests" 9769 + version = "0.1.0" 9770 + dependencies = [ 9771 + "ansi_term", 9772 + "chrono", 9773 + "chrono-tz", 9774 + "clap 4.1.14", 9775 + "enrichment", 9776 + "glob", 9777 + "lookup", 9778 + "prettydiff", 9779 + "regex", 9780 + "serde", 9781 + "serde_json", 9782 + "tikv-jemallocator", 9783 + "tracing-subscriber", 9784 + "value", 9785 + "vector-vrl-functions", 9786 + "vrl", 9787 + "vrl-stdlib", 9788 + "vrl-tests", 9789 + ] 9790 + 9791 + [[package]] 9792 + name = "vector-vrl-web-playground" 9793 + version = "0.1.0" 9794 + dependencies = [ 9795 + "enrichment", 9796 + "getrandom 0.2.8", 9797 + "gloo-utils", 9798 + "serde", 9799 + "serde-wasm-bindgen", 9800 + "value", 9801 + "vector-vrl-functions", 9802 + "vrl", 9803 + "vrl-stdlib", 9804 + "wasm-bindgen", 9805 + ] 9806 + 9807 + [[package]] 9513 9808 name = "version_check" 9514 9809 version = "0.9.4" 9515 9810 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 9524 9819 [[package]] 9525 9820 name = "vrl" 9526 9821 version = "0.1.0" 9822 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9527 9823 dependencies = [ 9528 9824 "bytes 1.4.0", 9529 - "criterion", 9530 9825 "indoc", 9531 9826 "lookup", 9532 - "ordered-float 3.4.0", 9533 - "serde_json", 9827 + "ordered-float 3.6.0", 9534 9828 "value", 9535 - "vector-common", 9536 9829 "vrl-compiler", 9537 9830 "vrl-core", 9538 9831 "vrl-diagnostic", 9539 9832 "vrl-parser", 9540 - "vrl-stdlib", 9541 9833 ] 9542 9834 9543 9835 [[package]] 9544 9836 name = "vrl-cli" 9545 9837 version = "0.1.0" 9838 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9546 9839 dependencies = [ 9547 - "clap 4.1.6", 9840 + "clap 4.1.14", 9548 9841 "exitcode", 9549 9842 "indoc", 9550 9843 "lookup", ··· 9555 9848 "serde_json", 9556 9849 "thiserror", 9557 9850 "value", 9558 - "vector-common", 9559 - "vector-vrl-functions", 9560 9851 "vrl", 9561 9852 "vrl-core", 9562 9853 "vrl-stdlib", ··· 9566 9857 [[package]] 9567 9858 name = "vrl-compiler" 9568 9859 version = "0.1.0" 9860 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9569 9861 dependencies = [ 9570 9862 "anymap", 9571 9863 "bytes 1.4.0", 9572 9864 "chrono", 9573 - "criterion", 9574 9865 "dyn-clone", 9575 9866 "getrandom 0.2.8", 9576 - "indoc", 9577 9867 "lalrpop-util", 9578 9868 "lookup", 9579 - "ordered-float 3.4.0", 9869 + "ordered-float 3.6.0", 9580 9870 "paste", 9581 9871 "regex", 9582 9872 "serde", 9583 9873 "thiserror", 9584 9874 "value", 9585 - "vector-common", 9586 - "vector-config", 9587 - "vector-config-common", 9588 - "vector-config-macros", 9589 9875 "vrl-core", 9590 9876 "vrl-diagnostic", 9591 9877 "vrl-parser", ··· 9594 9880 [[package]] 9595 9881 name = "vrl-core" 9596 9882 version = "0.1.0" 9883 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9597 9884 dependencies = [ 9885 + "bytes 1.4.0", 9886 + "chrono", 9887 + "chrono-tz", 9888 + "derivative", 9598 9889 "lookup", 9890 + "nom", 9891 + "ordered-float 3.6.0", 9892 + "serde", 9893 + "serde_json", 9894 + "snafu", 9895 + "tracing 0.1.37", 9599 9896 "value", 9600 9897 "vrl-diagnostic", 9601 9898 ] ··· 9603 9900 [[package]] 9604 9901 name = "vrl-diagnostic" 9605 9902 version = "0.1.0" 9903 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9606 9904 dependencies = [ 9607 9905 "codespan-reporting", 9608 9906 "termcolor", ··· 9611 9909 [[package]] 9612 9910 name = "vrl-parser" 9613 9911 version = "0.1.0" 9912 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9614 9913 dependencies = [ 9615 - "arbitrary", 9616 9914 "lalrpop", 9617 9915 "lalrpop-util", 9618 9916 "lookup", 9619 - "ordered-float 3.4.0", 9917 + "ordered-float 3.6.0", 9620 9918 "paste", 9621 - "test-case", 9622 9919 "thiserror", 9623 9920 "vrl-diagnostic", 9624 9921 ] ··· 9626 9923 [[package]] 9627 9924 name = "vrl-stdlib" 9628 9925 version = "0.1.0" 9926 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9629 9927 dependencies = [ 9630 9928 "aes", 9631 - "anyhow", 9632 9929 "base16", 9633 9930 "base64 0.21.0", 9634 9931 "bytes 1.4.0", ··· 9636 9933 "cfb-mode", 9637 9934 "charset", 9638 9935 "chrono", 9639 - "chrono-tz", 9640 9936 "cidr-utils", 9641 - "criterion", 9642 9937 "csv", 9643 9938 "ctr", 9644 9939 "data-encoding", ··· 9649 9944 "flate2", 9650 9945 "grok", 9651 9946 "hex", 9947 + "hmac", 9652 9948 "hostname", 9653 9949 "indexmap", 9654 9950 "lookup", ··· 9671 9967 "strip-ansi-escapes", 9672 9968 "syslog_loose", 9673 9969 "tracing 0.1.37", 9674 - "tracing-test", 9675 9970 "uaparser", 9676 9971 "url", 9677 9972 "utf8-width", 9678 - "uuid 1.3.0", 9973 + "uuid", 9679 9974 "value", 9680 - "vector-common", 9681 9975 "vrl", 9682 9976 "vrl-core", 9977 + "vrl-diagnostic", 9683 9978 "woothee", 9684 9979 "zstd 0.12.3+zstd.1.5.2", 9685 9980 ] ··· 9687 9982 [[package]] 9688 9983 name = "vrl-tests" 9689 9984 version = "0.1.0" 9985 + source = "git+https://github.com/vectordotdev/vrl?rev=v0.2.0#258cc611080c1bdb5ed6897e8a79b76ab2038fcb" 9690 9986 dependencies = [ 9691 9987 "ansi_term", 9692 9988 "chrono", 9693 9989 "chrono-tz", 9694 - "clap 4.1.6", 9695 - "enrichment", 9990 + "clap 4.1.14", 9696 9991 "glob", 9697 9992 "lookup", 9698 9993 "prettydiff", ··· 9702 9997 "tikv-jemallocator", 9703 9998 "tracing-subscriber", 9704 9999 "value", 9705 - "vector-common", 9706 - "vector-vrl-functions", 9707 10000 "vrl", 9708 10001 "vrl-stdlib", 9709 10002 ] 9710 10003 9711 10004 [[package]] 9712 - name = "vrl-web-playground" 9713 - version = "0.1.0" 9714 - dependencies = [ 9715 - "getrandom 0.2.8", 9716 - "gloo-utils", 9717 - "serde", 9718 - "serde-wasm-bindgen", 9719 - "value", 9720 - "vrl", 9721 - "vrl-stdlib", 9722 - "wasm-bindgen", 9723 - ] 10005 + name = "vsimd" 10006 + version = "0.8.0" 10007 + source = "registry+https://github.com/rust-lang/crates.io-index" 10008 + checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" 9724 10009 9725 10010 [[package]] 9726 10011 name = "vte" ··· 9739 10024 source = "registry+https://github.com/rust-lang/crates.io-index" 9740 10025 checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 9741 10026 dependencies = [ 9742 - "proc-macro2 1.0.51", 9743 - "quote 1.0.23", 10027 + "proc-macro2 1.0.55", 10028 + "quote 1.0.26", 9744 10029 ] 9745 10030 9746 10031 [[package]] ··· 9781 10066 9782 10067 [[package]] 9783 10068 name = "warp" 9784 - version = "0.3.3" 10069 + version = "0.3.4" 9785 10070 source = "registry+https://github.com/rust-lang/crates.io-index" 9786 - checksum = "ed7b8be92646fc3d18b06147664ebc5f48d222686cb11a8755e561a735aacc6d" 10071 + checksum = "27e1a710288f0f91a98dd8a74f05b76a10768db245ce183edf64dc1afdc3016c" 9787 10072 dependencies = [ 9788 10073 "bytes 1.4.0", 9789 10074 "futures-channel", ··· 9796 10081 "mime_guess", 9797 10082 "percent-encoding", 9798 10083 "pin-project", 9799 - "rustls-pemfile 0.2.1", 10084 + "rustls-pemfile 1.0.1", 9800 10085 "scoped-tls", 9801 10086 "serde", 9802 10087 "serde_json", 9803 10088 "serde_urlencoded", 9804 10089 "tokio", 9805 10090 "tokio-stream", 9806 - "tokio-tungstenite 0.17.2", 10091 + "tokio-tungstenite", 9807 10092 "tokio-util", 9808 10093 "tower-service", 9809 10094 "tracing 0.1.37", ··· 9846 10131 "bumpalo", 9847 10132 "log", 9848 10133 "once_cell", 9849 - "proc-macro2 1.0.51", 9850 - "quote 1.0.23", 9851 - "syn 1.0.108", 10134 + "proc-macro2 1.0.55", 10135 + "quote 1.0.26", 10136 + "syn 1.0.109", 9852 10137 "wasm-bindgen-shared", 9853 10138 ] 9854 10139 ··· 9870 10155 source = "registry+https://github.com/rust-lang/crates.io-index" 9871 10156 checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 9872 10157 dependencies = [ 9873 - "quote 1.0.23", 10158 + "quote 1.0.26", 9874 10159 "wasm-bindgen-macro-support", 9875 10160 ] 9876 10161 ··· 9880 10165 source = "registry+https://github.com/rust-lang/crates.io-index" 9881 10166 checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 9882 10167 dependencies = [ 9883 - "proc-macro2 1.0.51", 9884 - "quote 1.0.23", 9885 - "syn 1.0.108", 10168 + "proc-macro2 1.0.55", 10169 + "quote 1.0.26", 10170 + "syn 1.0.109", 9886 10171 "wasm-bindgen-backend", 9887 10172 "wasm-bindgen-shared", 9888 10173 ] ··· 9918 10203 9919 10204 [[package]] 9920 10205 name = "webbrowser" 9921 - version = "0.8.7" 10206 + version = "0.8.8" 9922 10207 source = "registry+https://github.com/rust-lang/crates.io-index" 9923 - checksum = "97d1fa1e5c829b2bf9eb1e28fb950248b797cd6a04866fbdfa8bc31e5eef4c78" 10208 + checksum = "579cc485bd5ce5bfa0d738e4921dd0b956eca9800be1fd2e5257ebe95bc4617e" 9924 10209 dependencies = [ 9925 10210 "core-foundation", 9926 10211 "dirs", ··· 10033 10318 10034 10319 [[package]] 10035 10320 name = "windows-service" 10036 - version = "0.5.0" 10321 + version = "0.6.0" 10037 10322 source = "registry+https://github.com/rust-lang/crates.io-index" 10038 - checksum = "917fdb865e7ff03af9dd86609f8767bc88fefba89e8efd569de8e208af8724b3" 10323 + checksum = "cd9db37ecb5b13762d95468a2fc6009d4b2c62801243223aabd44fca13ad13c8" 10039 10324 dependencies = [ 10040 10325 "bitflags", 10041 - "err-derive", 10042 10326 "widestring 1.0.2", 10043 - "windows-sys 0.36.1", 10327 + "windows-sys 0.45.0", 10044 10328 ] 10045 10329 10046 10330 [[package]] 10047 10331 name = "windows-sys" 10048 - version = "0.36.1" 10332 + version = "0.42.0" 10049 10333 source = "registry+https://github.com/rust-lang/crates.io-index" 10050 - checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 10334 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 10051 10335 dependencies = [ 10052 - "windows_aarch64_msvc 0.36.1", 10053 - "windows_i686_gnu 0.36.1", 10054 - "windows_i686_msvc 0.36.1", 10055 - "windows_x86_64_gnu 0.36.1", 10056 - "windows_x86_64_msvc 0.36.1", 10336 + "windows_aarch64_gnullvm", 10337 + "windows_aarch64_msvc", 10338 + "windows_i686_gnu", 10339 + "windows_i686_msvc", 10340 + "windows_x86_64_gnu", 10341 + "windows_x86_64_gnullvm", 10342 + "windows_x86_64_msvc", 10057 10343 ] 10058 10344 10059 10345 [[package]] 10060 10346 name = "windows-sys" 10061 - version = "0.42.0" 10347 + version = "0.45.0" 10348 + source = "registry+https://github.com/rust-lang/crates.io-index" 10349 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 10350 + dependencies = [ 10351 + "windows-targets", 10352 + ] 10353 + 10354 + [[package]] 10355 + name = "windows-targets" 10356 + version = "0.42.1" 10062 10357 source = "registry+https://github.com/rust-lang/crates.io-index" 10063 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 10358 + checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 10064 10359 dependencies = [ 10065 10360 "windows_aarch64_gnullvm", 10066 - "windows_aarch64_msvc 0.42.0", 10067 - "windows_i686_gnu 0.42.0", 10068 - "windows_i686_msvc 0.42.0", 10069 - "windows_x86_64_gnu 0.42.0", 10361 + "windows_aarch64_msvc", 10362 + "windows_i686_gnu", 10363 + "windows_i686_msvc", 10364 + "windows_x86_64_gnu", 10070 10365 "windows_x86_64_gnullvm", 10071 - "windows_x86_64_msvc 0.42.0", 10366 + "windows_x86_64_msvc", 10072 10367 ] 10073 10368 10074 10369 [[package]] 10075 10370 name = "windows_aarch64_gnullvm" 10076 - version = "0.42.0" 10371 + version = "0.42.1" 10077 10372 source = "registry+https://github.com/rust-lang/crates.io-index" 10078 - checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" 10373 + checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 10079 10374 10080 10375 [[package]] 10081 10376 name = "windows_aarch64_msvc" 10082 - version = "0.36.1" 10083 - source = "registry+https://github.com/rust-lang/crates.io-index" 10084 - checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 10085 - 10086 - [[package]] 10087 - name = "windows_aarch64_msvc" 10088 - version = "0.42.0" 10089 - source = "registry+https://github.com/rust-lang/crates.io-index" 10090 - checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" 10091 - 10092 - [[package]] 10093 - name = "windows_i686_gnu" 10094 - version = "0.36.1" 10377 + version = "0.42.1" 10095 10378 source = "registry+https://github.com/rust-lang/crates.io-index" 10096 - checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 10379 + checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 10097 10380 10098 10381 [[package]] 10099 10382 name = "windows_i686_gnu" 10100 - version = "0.42.0" 10101 - source = "registry+https://github.com/rust-lang/crates.io-index" 10102 - checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" 10103 - 10104 - [[package]] 10105 - name = "windows_i686_msvc" 10106 - version = "0.36.1" 10383 + version = "0.42.1" 10107 10384 source = "registry+https://github.com/rust-lang/crates.io-index" 10108 - checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 10385 + checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 10109 10386 10110 10387 [[package]] 10111 10388 name = "windows_i686_msvc" 10112 - version = "0.42.0" 10113 - source = "registry+https://github.com/rust-lang/crates.io-index" 10114 - checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" 10115 - 10116 - [[package]] 10117 - name = "windows_x86_64_gnu" 10118 - version = "0.36.1" 10389 + version = "0.42.1" 10119 10390 source = "registry+https://github.com/rust-lang/crates.io-index" 10120 - checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 10391 + checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 10121 10392 10122 10393 [[package]] 10123 10394 name = "windows_x86_64_gnu" 10124 - version = "0.42.0" 10395 + version = "0.42.1" 10125 10396 source = "registry+https://github.com/rust-lang/crates.io-index" 10126 - checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" 10397 + checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 10127 10398 10128 10399 [[package]] 10129 10400 name = "windows_x86_64_gnullvm" 10130 - version = "0.42.0" 10401 + version = "0.42.1" 10131 10402 source = "registry+https://github.com/rust-lang/crates.io-index" 10132 - checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" 10403 + checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 10133 10404 10134 10405 [[package]] 10135 10406 name = "windows_x86_64_msvc" 10136 - version = "0.36.1" 10407 + version = "0.42.1" 10137 10408 source = "registry+https://github.com/rust-lang/crates.io-index" 10138 - checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 10409 + checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 10139 10410 10140 10411 [[package]] 10141 - name = "windows_x86_64_msvc" 10142 - version = "0.42.0" 10412 + name = "winnow" 10413 + version = "0.3.5" 10143 10414 source = "registry+https://github.com/rust-lang/crates.io-index" 10144 - checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" 10415 + checksum = "ee7b2c67f962bf5042bfd8b6a916178df33a26eec343ae064cb8e069f638fa6f" 10416 + dependencies = [ 10417 + "memchr", 10418 + ] 10145 10419 10146 10420 [[package]] 10147 10421 name = "winreg" ··· 10162 10436 "async-trait", 10163 10437 "base64 0.13.1", 10164 10438 "deadpool", 10165 - "futures 0.3.26", 10439 + "futures 0.3.28", 10166 10440 "futures-timer", 10167 10441 "http-types", 10168 10442 "hyper", ··· 10206 10480 ] 10207 10481 10208 10482 [[package]] 10483 + name = "yansi" 10484 + version = "0.5.1" 10485 + source = "registry+https://github.com/rust-lang/crates.io-index" 10486 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 10487 + 10488 + [[package]] 10209 10489 name = "zerocopy" 10210 10490 version = "0.6.1" 10211 10491 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 10221 10501 source = "registry+https://github.com/rust-lang/crates.io-index" 10222 10502 checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3" 10223 10503 dependencies = [ 10224 - "proc-macro2 1.0.51", 10225 - "quote 1.0.23", 10226 - "syn 1.0.108", 10504 + "proc-macro2 1.0.55", 10505 + "quote 1.0.26", 10506 + "syn 1.0.109", 10227 10507 ] 10228 10508 10229 10509 [[package]] ··· 10241 10521 source = "registry+https://github.com/rust-lang/crates.io-index" 10242 10522 checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17" 10243 10523 dependencies = [ 10244 - "proc-macro2 1.0.51", 10245 - "quote 1.0.23", 10246 - "syn 1.0.108", 10524 + "proc-macro2 1.0.55", 10525 + "quote 1.0.26", 10526 + "syn 1.0.109", 10247 10527 "synstructure", 10248 10528 ] 10249 10529
+7 -8
pkgs/tools/misc/vector/default.nix
··· 17 17 , tzdata 18 18 , cmake 19 19 , perl 20 + , git 20 21 # nix has a problem with the `?` in the feature list 21 22 # enabling kafka will produce a vector with no features at all 22 23 , enableKafka ? false ··· 33 34 34 35 let 35 36 pname = "vector"; 36 - version = "0.28.1"; 37 + version = "0.29.1"; 37 38 in 38 39 rustPlatform.buildRustPackage { 39 40 inherit pname version; ··· 42 43 owner = "vectordotdev"; 43 44 repo = pname; 44 45 rev = "v${version}"; 45 - sha256 = "sha256-hBEw5sAxex4o/b1nr60dEwZs7nosXU7pUChT1VoI25k="; 46 + sha256 = "sha256-4WqO7i1xthUU2bTzaS5poTh+wemjvqNAUFIDN73f7kw="; 46 47 }; 47 48 48 49 cargoLock = { 49 50 lockFile = ./Cargo.lock; 50 51 outputHashes = { 51 52 "azure_core-0.5.0" = "sha256-fojO7dhntpymMjV58TtYb7N4UN6rOp30D54x09RDXfQ="; 52 - "chrono-0.4.22" = "sha256-c5xHLte0+NpM+UUHEwxu2qdBFUBw62YN9vNkD12llwI="; 53 + "chrono-0.4.24" = "sha256-SVPRfixSt0m14MmOcmBVseC/moj1DIA3B+m0pvT41K0="; 54 + "datadog-filter-0.1.0" = "sha256-CNAIoDyJJo+D2Qzt6Fb2FwpQpzX02XurT8j1gHkz1bE="; 53 55 "heim-0.1.0-rc.1" = "sha256-ODKEQ1udt7FlxI5fvoFMG7C2zmM45eeEYDUEaLTsdYo="; 56 + "nix-0.26.2" = "sha256-uquYvRT56lhupkrESpxwKEimRFhmYvri10n3dj0f2yg="; 54 57 "tokio-util-0.7.4" = "sha256-rAzj44O+GOZhG+o6FVN5qCcG/NWxW8fUpScm+xsRjIs="; 55 58 "tracing-0.2.0" = "sha256-YAxeEofFA43PX2hafh3RY+C81a2v6n1fGzYz2FycC3M="; 56 59 }; 57 60 }; 58 - nativeBuildInputs = [ pkg-config cmake perl ]; 61 + nativeBuildInputs = [ pkg-config cmake perl git ]; 59 62 buildInputs = [ oniguruma openssl protobuf rdkafka zstd ] 60 63 ++ lib.optionals stdenv.isDarwin [ Security libiconv coreutils CoreServices ]; 61 64 ··· 106 109 postPatch = '' 107 110 substituteInPlace ./src/dns.rs \ 108 111 --replace "#[tokio::test]" "" 109 - 110 - ${lib.optionalString (!builtins.elem "transforms-geoip" features) '' 111 - substituteInPlace ./Cargo.toml --replace '"transforms-geoip",' "" 112 - ''} 113 112 ''; 114 113 115 114 passthru = {
+2 -2
pkgs/tools/package-management/nix-update/default.nix
··· 9 9 10 10 python3.pkgs.buildPythonApplication rec { 11 11 pname = "nix-update"; 12 - version = "0.17.1"; 12 + version = "0.17.2"; 13 13 format = "setuptools"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "Mic92"; 17 17 repo = pname; 18 18 rev = version; 19 - hash = "sha256-nlA9WmwXkx/2IgRCcmoj/kpRNbNVTEl7uSkISXgo8wo="; 19 + hash = "sha256-W2vBKgdPOLGdAIxbHD4Qi4ivAabFSuu7ikvu5kItwN8="; 20 20 }; 21 21 22 22 makeWrapperArgs = [
+5 -1
pkgs/top-level/all-packages.nix
··· 1367 1367 wine = null; 1368 1368 }; 1369 1369 1370 + ledfx = callPackage ../applications/audio/ledfx { }; 1371 + 1370 1372 libdislocator = callPackage ../tools/security/afl/libdislocator.nix { }; 1371 1373 1372 1374 afpfs-ng = callPackage ../tools/filesystems/afpfs-ng { }; ··· 16637 16639 cliscord = callPackage ../misc/cliscord { 16638 16640 inherit (darwin.apple_sdk.frameworks) Security; 16639 16641 }; 16642 + 16643 + dart-sass-embedded = callPackage ../misc/dart-sass-embedded { }; 16640 16644 16641 16645 clojupyter = callPackage ../applications/editors/jupyter-kernels/clojupyter { 16642 16646 jre = jre8; ··· 39015 39019 }; 39016 39020 mysql = mysql; 39017 39021 pcre = pcre-cpp; 39018 - jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 39022 + jre = openjdk19; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 39019 39023 }); 39020 39024 39021 39025 r128gain = callPackage ../applications/audio/r128gain { };
+2
pkgs/top-level/python-packages.nix
··· 4268 4268 4269 4269 grpcio-tools = callPackage ../development/python-modules/grpcio-tools { }; 4270 4270 4271 + grpcio-testing = callPackage ../development/python-modules/grpcio-testing { }; 4272 + 4271 4273 grpclib = callPackage ../development/python-modules/grpclib { }; 4272 4274 4273 4275 gruut = callPackage ../development/python-modules/gruut { };