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