prometheus-client-mmap 1.1.2 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: e59221e8f91b4b0a5fa2d2aa25cbb1c9d138aa4e29bb9be9cc496a82a186b0a3
         | 
| 4 | 
            +
              data.tar.gz: 8ca1851323870f09f88478bffedf26c0139a6b41b2d923210bef477892a82473
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: caea39febf2d430d0a60efdf69292d8b584e7896ba625b50e8bb36d241c4e98411ee987df20f316736d0471669030c12e15f66bf8eda40522a2a0048acc9d86c
         | 
| 7 | 
            +
              data.tar.gz: 2a15361444f123a64e5563c5df321fd0d997256368c350e7453668ccc51825d7ff0a77104b0355072ff89b60f33f5bfd50b35c7b8a63db85ed5cd9216df2caf4
         | 
| @@ -12,23 +12,23 @@ magnus = { version = "0.7", features = ["rb-sys"] } | |
| 12 12 | 
             
            memmap2 = "0.9"
         | 
| 13 13 | 
             
            # v0.26 cannot be built on CentOS 7 https://github.com/nix-rust/nix/issues/1972
         | 
| 14 14 | 
             
            nix = { version = "0.25", features = ["mman"] } # mman used for MsFlags
         | 
| 15 | 
            -
            rb-sys = { version = "0.9 | 
| 15 | 
            +
            rb-sys = { version = "0.9", features = ["stable-api-compiled-fallback"] }
         | 
| 16 16 | 
             
            serde = { version = "1.0", features = ["derive"] }
         | 
| 17 17 | 
             
            serde_json = { version = "1.0", features = ["raw_value"] }
         | 
| 18 | 
            -
            smallvec = { version = "1. | 
| 19 | 
            -
            thiserror = " | 
| 18 | 
            +
            smallvec = { version = "1.13", features = ["serde"] }
         | 
| 19 | 
            +
            thiserror = "2.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
            [dev-dependencies]
         | 
| 22 | 
            -
            bstr = "1. | 
| 22 | 
            +
            bstr = "1.11"
         | 
| 23 23 | 
             
            indoc = "2.0"
         | 
| 24 24 | 
             
            # We need the `embed` feature to run tests, but this triggers failures when building as a Gem.
         | 
| 25 25 | 
             
            magnus = { version = "0.7", features = ["rb-sys","embed"] }
         | 
| 26 26 | 
             
            rand = "0.8"
         | 
| 27 27 | 
             
            sha2 = "0.10"
         | 
| 28 | 
            -
            tempfile = "3. | 
| 28 | 
            +
            tempfile = "3.14"
         | 
| 29 29 |  | 
| 30 30 | 
             
            [build-dependencies]
         | 
| 31 | 
            -
            rb-sys-env = " | 
| 31 | 
            +
            rb-sys-env = { git = "https://github.com/oxidize-rb/rb-sys.git", rev = "5d1999ba70d301581524b8252c8ff3b8a825afa2" }
         | 
| 32 32 |  | 
| 33 33 | 
             
            [lib]
         | 
| 34 34 | 
             
            # Integration tests won't work if crate is only `cdylib`.
         | 
| @@ -25,7 +25,7 @@ use inner::InnerMmap; | |
| 25 25 |  | 
| 26 26 | 
             
            mod inner;
         | 
| 27 27 |  | 
| 28 | 
            -
            #[cfg( | 
| 28 | 
            +
            #[cfg(ruby_gte_3_4)]
         | 
| 29 29 | 
             
            /// The Ruby `STR_SHARED` flag, aka `FL_USER0`.
         | 
| 30 30 | 
             
            /// This was changed from `FL_USER2` in https://github.com/ruby/ruby/commit/6deeec5d459ecff5ec4628523b14ac7379fd942e.
         | 
| 31 31 | 
             
            const STR_SHARED: c_ulong = 1 << (12);
         | 
| @@ -397,10 +397,8 @@ impl MmapedFile { | |
| 397 397 | 
             
                    let new_len = self.inner(|inner| util::cast_chk::<_, c_long>(inner.len(), "mmap len"))?;
         | 
| 398 398 |  | 
| 399 399 | 
             
                    // Iterate over the values of the `WeakMap`.
         | 
| 400 | 
            -
                    for  | 
| 401 | 
            -
                        let  | 
| 402 | 
            -
                        let rb_string: Value = rpair.entry(1)?;
         | 
| 403 | 
            -
             | 
| 400 | 
            +
                    for val in tracker.enumeratorize("each_value", ()) {
         | 
| 401 | 
            +
                        let rb_string = val?;
         | 
| 404 402 | 
             
                        let str = RString::from_value(rb_string)
         | 
| 405 403 | 
             
                            .ok_or_else(|| err!(arg_error(), "weakmap value was not a string"))?;
         | 
| 406 404 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: prometheus-client-mmap
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.1 | 
| 4 | 
            +
              version: 1.2.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tobias Schmidt
         | 
| @@ -11,7 +11,7 @@ authors: | |
| 11 11 | 
             
            autorequire:
         | 
| 12 12 | 
             
            bindir: bin
         | 
| 13 13 | 
             
            cert_chain: []
         | 
| 14 | 
            -
            date: 2024-12- | 
| 14 | 
            +
            date: 2024-12-29 00:00:00.000000000 Z
         | 
| 15 15 | 
             
            dependencies:
         | 
| 16 16 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 17 17 | 
             
              name: rb_sys
         | 
| @@ -41,6 +41,20 @@ dependencies: | |
| 41 41 | 
             
                - - ">="
         | 
| 42 42 | 
             
                  - !ruby/object:Gem::Version
         | 
| 43 43 | 
             
                    version: '0'
         | 
| 44 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 45 | 
            +
              name: bigdecimal
         | 
| 46 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 47 | 
            +
                requirements:
         | 
| 48 | 
            +
                - - ">="
         | 
| 49 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 50 | 
            +
                    version: '0'
         | 
| 51 | 
            +
              type: :runtime
         | 
| 52 | 
            +
              prerelease: false
         | 
| 53 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 54 | 
            +
                requirements:
         | 
| 55 | 
            +
                - - ">="
         | 
| 56 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 57 | 
            +
                    version: '0'
         | 
| 44 58 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 45 59 | 
             
              name: fuzzbert
         | 
| 46 60 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -95,42 +109,56 @@ dependencies: | |
| 95 109 | 
             
                requirements:
         | 
| 96 110 | 
             
                - - "~>"
         | 
| 97 111 | 
             
                  - !ruby/object:Gem::Version
         | 
| 98 | 
            -
                    version: 1.2. | 
| 112 | 
            +
                    version: 1.2.7
         | 
| 99 113 | 
             
              type: :development
         | 
| 100 114 | 
             
              prerelease: false
         | 
| 101 115 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 102 116 | 
             
                requirements:
         | 
| 103 117 | 
             
                - - "~>"
         | 
| 104 118 | 
             
                  - !ruby/object:Gem::Version
         | 
| 105 | 
            -
                    version: 1.2. | 
| 119 | 
            +
                    version: 1.2.7
         | 
| 106 120 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 107 121 | 
             
              name: rake-compiler-dock
         | 
| 108 122 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 109 123 | 
             
                requirements:
         | 
| 110 124 | 
             
                - - "~>"
         | 
| 111 125 | 
             
                  - !ruby/object:Gem::Version
         | 
| 112 | 
            -
                    version: 1. | 
| 126 | 
            +
                    version: 1.7.0
         | 
| 127 | 
            +
              type: :development
         | 
| 128 | 
            +
              prerelease: false
         | 
| 129 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 130 | 
            +
                requirements:
         | 
| 131 | 
            +
                - - "~>"
         | 
| 132 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 133 | 
            +
                    version: 1.7.0
         | 
| 134 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 135 | 
            +
              name: rspec
         | 
| 136 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 137 | 
            +
                requirements:
         | 
| 138 | 
            +
                - - "~>"
         | 
| 139 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 140 | 
            +
                    version: '3.2'
         | 
| 113 141 | 
             
              type: :development
         | 
| 114 142 | 
             
              prerelease: false
         | 
| 115 143 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 116 144 | 
             
                requirements:
         | 
| 117 145 | 
             
                - - "~>"
         | 
| 118 146 | 
             
                  - !ruby/object:Gem::Version
         | 
| 119 | 
            -
                    version:  | 
| 147 | 
            +
                    version: '3.2'
         | 
| 120 148 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 121 149 | 
             
              name: ruby-prof
         | 
| 122 150 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 123 151 | 
             
                requirements:
         | 
| 124 152 | 
             
                - - "~>"
         | 
| 125 153 | 
             
                  - !ruby/object:Gem::Version
         | 
| 126 | 
            -
                    version: '1. | 
| 154 | 
            +
                    version: '1.7'
         | 
| 127 155 | 
             
              type: :development
         | 
| 128 156 | 
             
              prerelease: false
         | 
| 129 157 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 130 158 | 
             
                requirements:
         | 
| 131 159 | 
             
                - - "~>"
         | 
| 132 160 | 
             
                  - !ruby/object:Gem::Version
         | 
| 133 | 
            -
                    version: '1. | 
| 161 | 
            +
                    version: '1.7'
         | 
| 134 162 | 
             
            description:
         | 
| 135 163 | 
             
            email:
         | 
| 136 164 | 
             
            - ts@soundcloud.com
         | 
| @@ -144,8 +172,6 @@ extra_rdoc_files: [] | |
| 144 172 | 
             
            files:
         | 
| 145 173 | 
             
            - ".tool-versions"
         | 
| 146 174 | 
             
            - README.md
         | 
| 147 | 
            -
            - ext/fast_mmaped_file_rs/.cargo/config.toml
         | 
| 148 | 
            -
            - ext/fast_mmaped_file_rs/Cargo.lock
         | 
| 149 175 | 
             
            - ext/fast_mmaped_file_rs/Cargo.toml
         | 
| 150 176 | 
             
            - ext/fast_mmaped_file_rs/README.md
         | 
| 151 177 | 
             
            - ext/fast_mmaped_file_rs/build.rs
         | 
| @@ -202,7 +228,7 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 202 228 | 
             
              requirements:
         | 
| 203 229 | 
             
              - - ">="
         | 
| 204 230 | 
             
                - !ruby/object:Gem::Version
         | 
| 205 | 
            -
                  version:  | 
| 231 | 
            +
                  version: '3.1'
         | 
| 206 232 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 207 233 | 
             
              requirements:
         | 
| 208 234 | 
             
              - - ">="
         | 
| @@ -1,23 +0,0 @@ | |
| 1 | 
            -
            [target.aarch64-apple-darwin]
         | 
| 2 | 
            -
            # Without this flag, when linking static libruby, the linker removes symbols
         | 
| 3 | 
            -
            # (such as `_rb_ext_ractor_safe`) which it thinks are dead code... but they are
         | 
| 4 | 
            -
            # not, and they need to be included for the `embed` feature to work with static
         | 
| 5 | 
            -
            # Ruby.
         | 
| 6 | 
            -
            rustflags = [
         | 
| 7 | 
            -
            	"-C", "link-dead-code=on",
         | 
| 8 | 
            -
            	"-C", "link-arg=-undefined",
         | 
| 9 | 
            -
            	"-C", "link-arg=dynamic_lookup",
         | 
| 10 | 
            -
            ]
         | 
| 11 | 
            -
             | 
| 12 | 
            -
            [target.x86_64-apple-darwin]
         | 
| 13 | 
            -
            rustflags = [
         | 
| 14 | 
            -
            	"-C", "link-dead-code=on",
         | 
| 15 | 
            -
            	"-C", "link-arg=-undefined",
         | 
| 16 | 
            -
            	"-C", "link-arg=dynamic_lookup",
         | 
| 17 | 
            -
            ]
         | 
| 18 | 
            -
             | 
| 19 | 
            -
            [target.aarch64-unknown-linux-gnu]
         | 
| 20 | 
            -
            rustflags = [ "-C", "link-dead-code=on" ]
         | 
| 21 | 
            -
             | 
| 22 | 
            -
            [target.x86_64-unknown-linux-gnu]
         | 
| 23 | 
            -
            rustflags = [ "-C", "link-dead-code=on" ]
         | 
| @@ -1,771 +0,0 @@ | |
| 1 | 
            -
            # This file is automatically @generated by Cargo.
         | 
| 2 | 
            -
            # It is not intended for manual editing.
         | 
| 3 | 
            -
            version = 3
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            [[package]]
         | 
| 6 | 
            -
            name = "ahash"
         | 
| 7 | 
            -
            version = "0.8.11"
         | 
| 8 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 9 | 
            -
            checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
         | 
| 10 | 
            -
            dependencies = [
         | 
| 11 | 
            -
             "cfg-if",
         | 
| 12 | 
            -
             "once_cell",
         | 
| 13 | 
            -
             "version_check",
         | 
| 14 | 
            -
             "zerocopy",
         | 
| 15 | 
            -
            ]
         | 
| 16 | 
            -
             | 
| 17 | 
            -
            [[package]]
         | 
| 18 | 
            -
            name = "aho-corasick"
         | 
| 19 | 
            -
            version = "1.1.3"
         | 
| 20 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 21 | 
            -
            checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
         | 
| 22 | 
            -
            dependencies = [
         | 
| 23 | 
            -
             "memchr",
         | 
| 24 | 
            -
            ]
         | 
| 25 | 
            -
             | 
| 26 | 
            -
            [[package]]
         | 
| 27 | 
            -
            name = "allocator-api2"
         | 
| 28 | 
            -
            version = "0.2.18"
         | 
| 29 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 30 | 
            -
            checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
         | 
| 31 | 
            -
             | 
| 32 | 
            -
            [[package]]
         | 
| 33 | 
            -
            name = "autocfg"
         | 
| 34 | 
            -
            version = "1.4.0"
         | 
| 35 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 36 | 
            -
            checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
         | 
| 37 | 
            -
             | 
| 38 | 
            -
            [[package]]
         | 
| 39 | 
            -
            name = "bindgen"
         | 
| 40 | 
            -
            version = "0.69.4"
         | 
| 41 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 42 | 
            -
            checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
         | 
| 43 | 
            -
            dependencies = [
         | 
| 44 | 
            -
             "bitflags 2.6.0",
         | 
| 45 | 
            -
             "cexpr",
         | 
| 46 | 
            -
             "clang-sys",
         | 
| 47 | 
            -
             "itertools",
         | 
| 48 | 
            -
             "lazy_static",
         | 
| 49 | 
            -
             "lazycell",
         | 
| 50 | 
            -
             "proc-macro2",
         | 
| 51 | 
            -
             "quote",
         | 
| 52 | 
            -
             "regex",
         | 
| 53 | 
            -
             "rustc-hash",
         | 
| 54 | 
            -
             "shlex",
         | 
| 55 | 
            -
             "syn",
         | 
| 56 | 
            -
            ]
         | 
| 57 | 
            -
             | 
| 58 | 
            -
            [[package]]
         | 
| 59 | 
            -
            name = "bitflags"
         | 
| 60 | 
            -
            version = "1.3.2"
         | 
| 61 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 62 | 
            -
            checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
         | 
| 63 | 
            -
             | 
| 64 | 
            -
            [[package]]
         | 
| 65 | 
            -
            name = "bitflags"
         | 
| 66 | 
            -
            version = "2.6.0"
         | 
| 67 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 68 | 
            -
            checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
         | 
| 69 | 
            -
             | 
| 70 | 
            -
            [[package]]
         | 
| 71 | 
            -
            name = "block-buffer"
         | 
| 72 | 
            -
            version = "0.10.4"
         | 
| 73 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 74 | 
            -
            checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
         | 
| 75 | 
            -
            dependencies = [
         | 
| 76 | 
            -
             "generic-array",
         | 
| 77 | 
            -
            ]
         | 
| 78 | 
            -
             | 
| 79 | 
            -
            [[package]]
         | 
| 80 | 
            -
            name = "bstr"
         | 
| 81 | 
            -
            version = "1.10.0"
         | 
| 82 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 83 | 
            -
            checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
         | 
| 84 | 
            -
            dependencies = [
         | 
| 85 | 
            -
             "memchr",
         | 
| 86 | 
            -
             "regex-automata",
         | 
| 87 | 
            -
             "serde",
         | 
| 88 | 
            -
            ]
         | 
| 89 | 
            -
             | 
| 90 | 
            -
            [[package]]
         | 
| 91 | 
            -
            name = "byteorder"
         | 
| 92 | 
            -
            version = "1.5.0"
         | 
| 93 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 94 | 
            -
            checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
         | 
| 95 | 
            -
             | 
| 96 | 
            -
            [[package]]
         | 
| 97 | 
            -
            name = "cexpr"
         | 
| 98 | 
            -
            version = "0.6.0"
         | 
| 99 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 100 | 
            -
            checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
         | 
| 101 | 
            -
            dependencies = [
         | 
| 102 | 
            -
             "nom",
         | 
| 103 | 
            -
            ]
         | 
| 104 | 
            -
             | 
| 105 | 
            -
            [[package]]
         | 
| 106 | 
            -
            name = "cfg-if"
         | 
| 107 | 
            -
            version = "1.0.0"
         | 
| 108 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 109 | 
            -
            checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
         | 
| 110 | 
            -
             | 
| 111 | 
            -
            [[package]]
         | 
| 112 | 
            -
            name = "clang-sys"
         | 
| 113 | 
            -
            version = "1.8.1"
         | 
| 114 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 115 | 
            -
            checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
         | 
| 116 | 
            -
            dependencies = [
         | 
| 117 | 
            -
             "glob",
         | 
| 118 | 
            -
             "libc",
         | 
| 119 | 
            -
             "libloading",
         | 
| 120 | 
            -
            ]
         | 
| 121 | 
            -
             | 
| 122 | 
            -
            [[package]]
         | 
| 123 | 
            -
            name = "cpufeatures"
         | 
| 124 | 
            -
            version = "0.2.14"
         | 
| 125 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 126 | 
            -
            checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
         | 
| 127 | 
            -
            dependencies = [
         | 
| 128 | 
            -
             "libc",
         | 
| 129 | 
            -
            ]
         | 
| 130 | 
            -
             | 
| 131 | 
            -
            [[package]]
         | 
| 132 | 
            -
            name = "crypto-common"
         | 
| 133 | 
            -
            version = "0.1.6"
         | 
| 134 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 135 | 
            -
            checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
         | 
| 136 | 
            -
            dependencies = [
         | 
| 137 | 
            -
             "generic-array",
         | 
| 138 | 
            -
             "typenum",
         | 
| 139 | 
            -
            ]
         | 
| 140 | 
            -
             | 
| 141 | 
            -
            [[package]]
         | 
| 142 | 
            -
            name = "digest"
         | 
| 143 | 
            -
            version = "0.10.7"
         | 
| 144 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 145 | 
            -
            checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
         | 
| 146 | 
            -
            dependencies = [
         | 
| 147 | 
            -
             "block-buffer",
         | 
| 148 | 
            -
             "crypto-common",
         | 
| 149 | 
            -
            ]
         | 
| 150 | 
            -
             | 
| 151 | 
            -
            [[package]]
         | 
| 152 | 
            -
            name = "either"
         | 
| 153 | 
            -
            version = "1.13.0"
         | 
| 154 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 155 | 
            -
            checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
         | 
| 156 | 
            -
             | 
| 157 | 
            -
            [[package]]
         | 
| 158 | 
            -
            name = "errno"
         | 
| 159 | 
            -
            version = "0.3.9"
         | 
| 160 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 161 | 
            -
            checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
         | 
| 162 | 
            -
            dependencies = [
         | 
| 163 | 
            -
             "libc",
         | 
| 164 | 
            -
             "windows-sys 0.52.0",
         | 
| 165 | 
            -
            ]
         | 
| 166 | 
            -
             | 
| 167 | 
            -
            [[package]]
         | 
| 168 | 
            -
            name = "fast_mmaped_file_rs"
         | 
| 169 | 
            -
            version = "0.1.0"
         | 
| 170 | 
            -
            dependencies = [
         | 
| 171 | 
            -
             "bstr",
         | 
| 172 | 
            -
             "hashbrown",
         | 
| 173 | 
            -
             "indoc",
         | 
| 174 | 
            -
             "libc",
         | 
| 175 | 
            -
             "magnus",
         | 
| 176 | 
            -
             "memmap2",
         | 
| 177 | 
            -
             "nix",
         | 
| 178 | 
            -
             "rand",
         | 
| 179 | 
            -
             "rb-sys",
         | 
| 180 | 
            -
             "rb-sys-env 0.2.1",
         | 
| 181 | 
            -
             "serde",
         | 
| 182 | 
            -
             "serde_json",
         | 
| 183 | 
            -
             "sha2",
         | 
| 184 | 
            -
             "smallvec",
         | 
| 185 | 
            -
             "tempfile",
         | 
| 186 | 
            -
             "thiserror",
         | 
| 187 | 
            -
            ]
         | 
| 188 | 
            -
             | 
| 189 | 
            -
            [[package]]
         | 
| 190 | 
            -
            name = "fastrand"
         | 
| 191 | 
            -
            version = "2.1.1"
         | 
| 192 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 193 | 
            -
            checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
         | 
| 194 | 
            -
             | 
| 195 | 
            -
            [[package]]
         | 
| 196 | 
            -
            name = "generic-array"
         | 
| 197 | 
            -
            version = "0.14.7"
         | 
| 198 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 199 | 
            -
            checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
         | 
| 200 | 
            -
            dependencies = [
         | 
| 201 | 
            -
             "typenum",
         | 
| 202 | 
            -
             "version_check",
         | 
| 203 | 
            -
            ]
         | 
| 204 | 
            -
             | 
| 205 | 
            -
            [[package]]
         | 
| 206 | 
            -
            name = "getrandom"
         | 
| 207 | 
            -
            version = "0.2.15"
         | 
| 208 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 209 | 
            -
            checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
         | 
| 210 | 
            -
            dependencies = [
         | 
| 211 | 
            -
             "cfg-if",
         | 
| 212 | 
            -
             "libc",
         | 
| 213 | 
            -
             "wasi",
         | 
| 214 | 
            -
            ]
         | 
| 215 | 
            -
             | 
| 216 | 
            -
            [[package]]
         | 
| 217 | 
            -
            name = "glob"
         | 
| 218 | 
            -
            version = "0.3.1"
         | 
| 219 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 220 | 
            -
            checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
         | 
| 221 | 
            -
             | 
| 222 | 
            -
            [[package]]
         | 
| 223 | 
            -
            name = "hashbrown"
         | 
| 224 | 
            -
            version = "0.14.5"
         | 
| 225 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 226 | 
            -
            checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
         | 
| 227 | 
            -
            dependencies = [
         | 
| 228 | 
            -
             "ahash",
         | 
| 229 | 
            -
             "allocator-api2",
         | 
| 230 | 
            -
            ]
         | 
| 231 | 
            -
             | 
| 232 | 
            -
            [[package]]
         | 
| 233 | 
            -
            name = "indoc"
         | 
| 234 | 
            -
            version = "2.0.5"
         | 
| 235 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 236 | 
            -
            checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
         | 
| 237 | 
            -
             | 
| 238 | 
            -
            [[package]]
         | 
| 239 | 
            -
            name = "itertools"
         | 
| 240 | 
            -
            version = "0.12.1"
         | 
| 241 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 242 | 
            -
            checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
         | 
| 243 | 
            -
            dependencies = [
         | 
| 244 | 
            -
             "either",
         | 
| 245 | 
            -
            ]
         | 
| 246 | 
            -
             | 
| 247 | 
            -
            [[package]]
         | 
| 248 | 
            -
            name = "itoa"
         | 
| 249 | 
            -
            version = "1.0.11"
         | 
| 250 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 251 | 
            -
            checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
         | 
| 252 | 
            -
             | 
| 253 | 
            -
            [[package]]
         | 
| 254 | 
            -
            name = "lazy_static"
         | 
| 255 | 
            -
            version = "1.5.0"
         | 
| 256 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 257 | 
            -
            checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
         | 
| 258 | 
            -
             | 
| 259 | 
            -
            [[package]]
         | 
| 260 | 
            -
            name = "lazycell"
         | 
| 261 | 
            -
            version = "1.3.0"
         | 
| 262 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 263 | 
            -
            checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
         | 
| 264 | 
            -
             | 
| 265 | 
            -
            [[package]]
         | 
| 266 | 
            -
            name = "libc"
         | 
| 267 | 
            -
            version = "0.2.159"
         | 
| 268 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 269 | 
            -
            checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
         | 
| 270 | 
            -
             | 
| 271 | 
            -
            [[package]]
         | 
| 272 | 
            -
            name = "libloading"
         | 
| 273 | 
            -
            version = "0.8.5"
         | 
| 274 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 275 | 
            -
            checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
         | 
| 276 | 
            -
            dependencies = [
         | 
| 277 | 
            -
             "cfg-if",
         | 
| 278 | 
            -
             "windows-targets",
         | 
| 279 | 
            -
            ]
         | 
| 280 | 
            -
             | 
| 281 | 
            -
            [[package]]
         | 
| 282 | 
            -
            name = "linux-raw-sys"
         | 
| 283 | 
            -
            version = "0.4.14"
         | 
| 284 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 285 | 
            -
            checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
         | 
| 286 | 
            -
             | 
| 287 | 
            -
            [[package]]
         | 
| 288 | 
            -
            name = "magnus"
         | 
| 289 | 
            -
            version = "0.7.1"
         | 
| 290 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 291 | 
            -
            checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
         | 
| 292 | 
            -
            dependencies = [
         | 
| 293 | 
            -
             "magnus-macros",
         | 
| 294 | 
            -
             "rb-sys",
         | 
| 295 | 
            -
             "rb-sys-env 0.1.2",
         | 
| 296 | 
            -
             "seq-macro",
         | 
| 297 | 
            -
            ]
         | 
| 298 | 
            -
             | 
| 299 | 
            -
            [[package]]
         | 
| 300 | 
            -
            name = "magnus-macros"
         | 
| 301 | 
            -
            version = "0.6.0"
         | 
| 302 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 303 | 
            -
            checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
         | 
| 304 | 
            -
            dependencies = [
         | 
| 305 | 
            -
             "proc-macro2",
         | 
| 306 | 
            -
             "quote",
         | 
| 307 | 
            -
             "syn",
         | 
| 308 | 
            -
            ]
         | 
| 309 | 
            -
             | 
| 310 | 
            -
            [[package]]
         | 
| 311 | 
            -
            name = "memchr"
         | 
| 312 | 
            -
            version = "2.7.4"
         | 
| 313 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 314 | 
            -
            checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
         | 
| 315 | 
            -
             | 
| 316 | 
            -
            [[package]]
         | 
| 317 | 
            -
            name = "memmap2"
         | 
| 318 | 
            -
            version = "0.9.5"
         | 
| 319 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 320 | 
            -
            checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
         | 
| 321 | 
            -
            dependencies = [
         | 
| 322 | 
            -
             "libc",
         | 
| 323 | 
            -
            ]
         | 
| 324 | 
            -
             | 
| 325 | 
            -
            [[package]]
         | 
| 326 | 
            -
            name = "memoffset"
         | 
| 327 | 
            -
            version = "0.6.5"
         | 
| 328 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 329 | 
            -
            checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
         | 
| 330 | 
            -
            dependencies = [
         | 
| 331 | 
            -
             "autocfg",
         | 
| 332 | 
            -
            ]
         | 
| 333 | 
            -
             | 
| 334 | 
            -
            [[package]]
         | 
| 335 | 
            -
            name = "minimal-lexical"
         | 
| 336 | 
            -
            version = "0.2.1"
         | 
| 337 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 338 | 
            -
            checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
         | 
| 339 | 
            -
             | 
| 340 | 
            -
            [[package]]
         | 
| 341 | 
            -
            name = "nix"
         | 
| 342 | 
            -
            version = "0.25.1"
         | 
| 343 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 344 | 
            -
            checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
         | 
| 345 | 
            -
            dependencies = [
         | 
| 346 | 
            -
             "autocfg",
         | 
| 347 | 
            -
             "bitflags 1.3.2",
         | 
| 348 | 
            -
             "cfg-if",
         | 
| 349 | 
            -
             "libc",
         | 
| 350 | 
            -
             "memoffset",
         | 
| 351 | 
            -
             "pin-utils",
         | 
| 352 | 
            -
            ]
         | 
| 353 | 
            -
             | 
| 354 | 
            -
            [[package]]
         | 
| 355 | 
            -
            name = "nom"
         | 
| 356 | 
            -
            version = "7.1.3"
         | 
| 357 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 358 | 
            -
            checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
         | 
| 359 | 
            -
            dependencies = [
         | 
| 360 | 
            -
             "memchr",
         | 
| 361 | 
            -
             "minimal-lexical",
         | 
| 362 | 
            -
            ]
         | 
| 363 | 
            -
             | 
| 364 | 
            -
            [[package]]
         | 
| 365 | 
            -
            name = "once_cell"
         | 
| 366 | 
            -
            version = "1.20.1"
         | 
| 367 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 368 | 
            -
            checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
         | 
| 369 | 
            -
            dependencies = [
         | 
| 370 | 
            -
             "portable-atomic",
         | 
| 371 | 
            -
            ]
         | 
| 372 | 
            -
             | 
| 373 | 
            -
            [[package]]
         | 
| 374 | 
            -
            name = "pin-utils"
         | 
| 375 | 
            -
            version = "0.1.0"
         | 
| 376 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 377 | 
            -
            checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
         | 
| 378 | 
            -
             | 
| 379 | 
            -
            [[package]]
         | 
| 380 | 
            -
            name = "portable-atomic"
         | 
| 381 | 
            -
            version = "1.9.0"
         | 
| 382 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 383 | 
            -
            checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
         | 
| 384 | 
            -
             | 
| 385 | 
            -
            [[package]]
         | 
| 386 | 
            -
            name = "ppv-lite86"
         | 
| 387 | 
            -
            version = "0.2.20"
         | 
| 388 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 389 | 
            -
            checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
         | 
| 390 | 
            -
            dependencies = [
         | 
| 391 | 
            -
             "zerocopy",
         | 
| 392 | 
            -
            ]
         | 
| 393 | 
            -
             | 
| 394 | 
            -
            [[package]]
         | 
| 395 | 
            -
            name = "proc-macro2"
         | 
| 396 | 
            -
            version = "1.0.86"
         | 
| 397 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 398 | 
            -
            checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
         | 
| 399 | 
            -
            dependencies = [
         | 
| 400 | 
            -
             "unicode-ident",
         | 
| 401 | 
            -
            ]
         | 
| 402 | 
            -
             | 
| 403 | 
            -
            [[package]]
         | 
| 404 | 
            -
            name = "quote"
         | 
| 405 | 
            -
            version = "1.0.37"
         | 
| 406 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 407 | 
            -
            checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
         | 
| 408 | 
            -
            dependencies = [
         | 
| 409 | 
            -
             "proc-macro2",
         | 
| 410 | 
            -
            ]
         | 
| 411 | 
            -
             | 
| 412 | 
            -
            [[package]]
         | 
| 413 | 
            -
            name = "rand"
         | 
| 414 | 
            -
            version = "0.8.5"
         | 
| 415 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 416 | 
            -
            checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
         | 
| 417 | 
            -
            dependencies = [
         | 
| 418 | 
            -
             "libc",
         | 
| 419 | 
            -
             "rand_chacha",
         | 
| 420 | 
            -
             "rand_core",
         | 
| 421 | 
            -
            ]
         | 
| 422 | 
            -
             | 
| 423 | 
            -
            [[package]]
         | 
| 424 | 
            -
            name = "rand_chacha"
         | 
| 425 | 
            -
            version = "0.3.1"
         | 
| 426 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 427 | 
            -
            checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
         | 
| 428 | 
            -
            dependencies = [
         | 
| 429 | 
            -
             "ppv-lite86",
         | 
| 430 | 
            -
             "rand_core",
         | 
| 431 | 
            -
            ]
         | 
| 432 | 
            -
             | 
| 433 | 
            -
            [[package]]
         | 
| 434 | 
            -
            name = "rand_core"
         | 
| 435 | 
            -
            version = "0.6.4"
         | 
| 436 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 437 | 
            -
            checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
         | 
| 438 | 
            -
            dependencies = [
         | 
| 439 | 
            -
             "getrandom",
         | 
| 440 | 
            -
            ]
         | 
| 441 | 
            -
             | 
| 442 | 
            -
            [[package]]
         | 
| 443 | 
            -
            name = "rb-sys"
         | 
| 444 | 
            -
            version = "0.9.105"
         | 
| 445 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 446 | 
            -
            checksum = "4b3a1f3ce8e7c36d777d52fe7a99039fe4fea7c8ec355a4c4f3a17f92a14029f"
         | 
| 447 | 
            -
            dependencies = [
         | 
| 448 | 
            -
             "rb-sys-build",
         | 
| 449 | 
            -
            ]
         | 
| 450 | 
            -
             | 
| 451 | 
            -
            [[package]]
         | 
| 452 | 
            -
            name = "rb-sys-build"
         | 
| 453 | 
            -
            version = "0.9.105"
         | 
| 454 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 455 | 
            -
            checksum = "3e6b246c29c0809e1cbe60a1ba9e093da72a4676d02adc68469297d1e589bbf0"
         | 
| 456 | 
            -
            dependencies = [
         | 
| 457 | 
            -
             "bindgen",
         | 
| 458 | 
            -
             "lazy_static",
         | 
| 459 | 
            -
             "proc-macro2",
         | 
| 460 | 
            -
             "quote",
         | 
| 461 | 
            -
             "regex",
         | 
| 462 | 
            -
             "shell-words",
         | 
| 463 | 
            -
             "syn",
         | 
| 464 | 
            -
            ]
         | 
| 465 | 
            -
             | 
| 466 | 
            -
            [[package]]
         | 
| 467 | 
            -
            name = "rb-sys-env"
         | 
| 468 | 
            -
            version = "0.1.2"
         | 
| 469 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 470 | 
            -
            checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
         | 
| 471 | 
            -
             | 
| 472 | 
            -
            [[package]]
         | 
| 473 | 
            -
            name = "rb-sys-env"
         | 
| 474 | 
            -
            version = "0.2.1"
         | 
| 475 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 476 | 
            -
            checksum = "5b0412803f8fea126e8f500d8eb6d5394a983517888a790254f4190e9b16a7a5"
         | 
| 477 | 
            -
             | 
| 478 | 
            -
            [[package]]
         | 
| 479 | 
            -
            name = "regex"
         | 
| 480 | 
            -
            version = "1.11.0"
         | 
| 481 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 482 | 
            -
            checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
         | 
| 483 | 
            -
            dependencies = [
         | 
| 484 | 
            -
             "aho-corasick",
         | 
| 485 | 
            -
             "memchr",
         | 
| 486 | 
            -
             "regex-automata",
         | 
| 487 | 
            -
             "regex-syntax",
         | 
| 488 | 
            -
            ]
         | 
| 489 | 
            -
             | 
| 490 | 
            -
            [[package]]
         | 
| 491 | 
            -
            name = "regex-automata"
         | 
| 492 | 
            -
            version = "0.4.8"
         | 
| 493 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 494 | 
            -
            checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
         | 
| 495 | 
            -
            dependencies = [
         | 
| 496 | 
            -
             "aho-corasick",
         | 
| 497 | 
            -
             "memchr",
         | 
| 498 | 
            -
             "regex-syntax",
         | 
| 499 | 
            -
            ]
         | 
| 500 | 
            -
             | 
| 501 | 
            -
            [[package]]
         | 
| 502 | 
            -
            name = "regex-syntax"
         | 
| 503 | 
            -
            version = "0.8.5"
         | 
| 504 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 505 | 
            -
            checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
         | 
| 506 | 
            -
             | 
| 507 | 
            -
            [[package]]
         | 
| 508 | 
            -
            name = "rustc-hash"
         | 
| 509 | 
            -
            version = "1.1.0"
         | 
| 510 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 511 | 
            -
            checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
         | 
| 512 | 
            -
             | 
| 513 | 
            -
            [[package]]
         | 
| 514 | 
            -
            name = "rustix"
         | 
| 515 | 
            -
            version = "0.38.37"
         | 
| 516 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 517 | 
            -
            checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
         | 
| 518 | 
            -
            dependencies = [
         | 
| 519 | 
            -
             "bitflags 2.6.0",
         | 
| 520 | 
            -
             "errno",
         | 
| 521 | 
            -
             "libc",
         | 
| 522 | 
            -
             "linux-raw-sys",
         | 
| 523 | 
            -
             "windows-sys 0.52.0",
         | 
| 524 | 
            -
            ]
         | 
| 525 | 
            -
             | 
| 526 | 
            -
            [[package]]
         | 
| 527 | 
            -
            name = "ryu"
         | 
| 528 | 
            -
            version = "1.0.18"
         | 
| 529 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 530 | 
            -
            checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
         | 
| 531 | 
            -
             | 
| 532 | 
            -
            [[package]]
         | 
| 533 | 
            -
            name = "seq-macro"
         | 
| 534 | 
            -
            version = "0.3.5"
         | 
| 535 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 536 | 
            -
            checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
         | 
| 537 | 
            -
             | 
| 538 | 
            -
            [[package]]
         | 
| 539 | 
            -
            name = "serde"
         | 
| 540 | 
            -
            version = "1.0.210"
         | 
| 541 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 542 | 
            -
            checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
         | 
| 543 | 
            -
            dependencies = [
         | 
| 544 | 
            -
             "serde_derive",
         | 
| 545 | 
            -
            ]
         | 
| 546 | 
            -
             | 
| 547 | 
            -
            [[package]]
         | 
| 548 | 
            -
            name = "serde_derive"
         | 
| 549 | 
            -
            version = "1.0.210"
         | 
| 550 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 551 | 
            -
            checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
         | 
| 552 | 
            -
            dependencies = [
         | 
| 553 | 
            -
             "proc-macro2",
         | 
| 554 | 
            -
             "quote",
         | 
| 555 | 
            -
             "syn",
         | 
| 556 | 
            -
            ]
         | 
| 557 | 
            -
             | 
| 558 | 
            -
            [[package]]
         | 
| 559 | 
            -
            name = "serde_json"
         | 
| 560 | 
            -
            version = "1.0.128"
         | 
| 561 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 562 | 
            -
            checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
         | 
| 563 | 
            -
            dependencies = [
         | 
| 564 | 
            -
             "itoa",
         | 
| 565 | 
            -
             "memchr",
         | 
| 566 | 
            -
             "ryu",
         | 
| 567 | 
            -
             "serde",
         | 
| 568 | 
            -
            ]
         | 
| 569 | 
            -
             | 
| 570 | 
            -
            [[package]]
         | 
| 571 | 
            -
            name = "sha2"
         | 
| 572 | 
            -
            version = "0.10.8"
         | 
| 573 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 574 | 
            -
            checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
         | 
| 575 | 
            -
            dependencies = [
         | 
| 576 | 
            -
             "cfg-if",
         | 
| 577 | 
            -
             "cpufeatures",
         | 
| 578 | 
            -
             "digest",
         | 
| 579 | 
            -
            ]
         | 
| 580 | 
            -
             | 
| 581 | 
            -
            [[package]]
         | 
| 582 | 
            -
            name = "shell-words"
         | 
| 583 | 
            -
            version = "1.1.0"
         | 
| 584 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 585 | 
            -
            checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
         | 
| 586 | 
            -
             | 
| 587 | 
            -
            [[package]]
         | 
| 588 | 
            -
            name = "shlex"
         | 
| 589 | 
            -
            version = "1.3.0"
         | 
| 590 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 591 | 
            -
            checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
         | 
| 592 | 
            -
             | 
| 593 | 
            -
            [[package]]
         | 
| 594 | 
            -
            name = "smallvec"
         | 
| 595 | 
            -
            version = "1.13.2"
         | 
| 596 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 597 | 
            -
            checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
         | 
| 598 | 
            -
            dependencies = [
         | 
| 599 | 
            -
             "serde",
         | 
| 600 | 
            -
            ]
         | 
| 601 | 
            -
             | 
| 602 | 
            -
            [[package]]
         | 
| 603 | 
            -
            name = "syn"
         | 
| 604 | 
            -
            version = "2.0.79"
         | 
| 605 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 606 | 
            -
            checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
         | 
| 607 | 
            -
            dependencies = [
         | 
| 608 | 
            -
             "proc-macro2",
         | 
| 609 | 
            -
             "quote",
         | 
| 610 | 
            -
             "unicode-ident",
         | 
| 611 | 
            -
            ]
         | 
| 612 | 
            -
             | 
| 613 | 
            -
            [[package]]
         | 
| 614 | 
            -
            name = "tempfile"
         | 
| 615 | 
            -
            version = "3.13.0"
         | 
| 616 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 617 | 
            -
            checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
         | 
| 618 | 
            -
            dependencies = [
         | 
| 619 | 
            -
             "cfg-if",
         | 
| 620 | 
            -
             "fastrand",
         | 
| 621 | 
            -
             "once_cell",
         | 
| 622 | 
            -
             "rustix",
         | 
| 623 | 
            -
             "windows-sys 0.59.0",
         | 
| 624 | 
            -
            ]
         | 
| 625 | 
            -
             | 
| 626 | 
            -
            [[package]]
         | 
| 627 | 
            -
            name = "thiserror"
         | 
| 628 | 
            -
            version = "1.0.64"
         | 
| 629 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 630 | 
            -
            checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
         | 
| 631 | 
            -
            dependencies = [
         | 
| 632 | 
            -
             "thiserror-impl",
         | 
| 633 | 
            -
            ]
         | 
| 634 | 
            -
             | 
| 635 | 
            -
            [[package]]
         | 
| 636 | 
            -
            name = "thiserror-impl"
         | 
| 637 | 
            -
            version = "1.0.64"
         | 
| 638 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 639 | 
            -
            checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
         | 
| 640 | 
            -
            dependencies = [
         | 
| 641 | 
            -
             "proc-macro2",
         | 
| 642 | 
            -
             "quote",
         | 
| 643 | 
            -
             "syn",
         | 
| 644 | 
            -
            ]
         | 
| 645 | 
            -
             | 
| 646 | 
            -
            [[package]]
         | 
| 647 | 
            -
            name = "typenum"
         | 
| 648 | 
            -
            version = "1.17.0"
         | 
| 649 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 650 | 
            -
            checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
         | 
| 651 | 
            -
             | 
| 652 | 
            -
            [[package]]
         | 
| 653 | 
            -
            name = "unicode-ident"
         | 
| 654 | 
            -
            version = "1.0.13"
         | 
| 655 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 656 | 
            -
            checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
         | 
| 657 | 
            -
             | 
| 658 | 
            -
            [[package]]
         | 
| 659 | 
            -
            name = "version_check"
         | 
| 660 | 
            -
            version = "0.9.5"
         | 
| 661 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 662 | 
            -
            checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
         | 
| 663 | 
            -
             | 
| 664 | 
            -
            [[package]]
         | 
| 665 | 
            -
            name = "wasi"
         | 
| 666 | 
            -
            version = "0.11.0+wasi-snapshot-preview1"
         | 
| 667 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 668 | 
            -
            checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
         | 
| 669 | 
            -
             | 
| 670 | 
            -
            [[package]]
         | 
| 671 | 
            -
            name = "windows-sys"
         | 
| 672 | 
            -
            version = "0.52.0"
         | 
| 673 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 674 | 
            -
            checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
         | 
| 675 | 
            -
            dependencies = [
         | 
| 676 | 
            -
             "windows-targets",
         | 
| 677 | 
            -
            ]
         | 
| 678 | 
            -
             | 
| 679 | 
            -
            [[package]]
         | 
| 680 | 
            -
            name = "windows-sys"
         | 
| 681 | 
            -
            version = "0.59.0"
         | 
| 682 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 683 | 
            -
            checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
         | 
| 684 | 
            -
            dependencies = [
         | 
| 685 | 
            -
             "windows-targets",
         | 
| 686 | 
            -
            ]
         | 
| 687 | 
            -
             | 
| 688 | 
            -
            [[package]]
         | 
| 689 | 
            -
            name = "windows-targets"
         | 
| 690 | 
            -
            version = "0.52.6"
         | 
| 691 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 692 | 
            -
            checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
         | 
| 693 | 
            -
            dependencies = [
         | 
| 694 | 
            -
             "windows_aarch64_gnullvm",
         | 
| 695 | 
            -
             "windows_aarch64_msvc",
         | 
| 696 | 
            -
             "windows_i686_gnu",
         | 
| 697 | 
            -
             "windows_i686_gnullvm",
         | 
| 698 | 
            -
             "windows_i686_msvc",
         | 
| 699 | 
            -
             "windows_x86_64_gnu",
         | 
| 700 | 
            -
             "windows_x86_64_gnullvm",
         | 
| 701 | 
            -
             "windows_x86_64_msvc",
         | 
| 702 | 
            -
            ]
         | 
| 703 | 
            -
             | 
| 704 | 
            -
            [[package]]
         | 
| 705 | 
            -
            name = "windows_aarch64_gnullvm"
         | 
| 706 | 
            -
            version = "0.52.6"
         | 
| 707 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 708 | 
            -
            checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
         | 
| 709 | 
            -
             | 
| 710 | 
            -
            [[package]]
         | 
| 711 | 
            -
            name = "windows_aarch64_msvc"
         | 
| 712 | 
            -
            version = "0.52.6"
         | 
| 713 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 714 | 
            -
            checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
         | 
| 715 | 
            -
             | 
| 716 | 
            -
            [[package]]
         | 
| 717 | 
            -
            name = "windows_i686_gnu"
         | 
| 718 | 
            -
            version = "0.52.6"
         | 
| 719 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 720 | 
            -
            checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
         | 
| 721 | 
            -
             | 
| 722 | 
            -
            [[package]]
         | 
| 723 | 
            -
            name = "windows_i686_gnullvm"
         | 
| 724 | 
            -
            version = "0.52.6"
         | 
| 725 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 726 | 
            -
            checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
         | 
| 727 | 
            -
             | 
| 728 | 
            -
            [[package]]
         | 
| 729 | 
            -
            name = "windows_i686_msvc"
         | 
| 730 | 
            -
            version = "0.52.6"
         | 
| 731 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 732 | 
            -
            checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
         | 
| 733 | 
            -
             | 
| 734 | 
            -
            [[package]]
         | 
| 735 | 
            -
            name = "windows_x86_64_gnu"
         | 
| 736 | 
            -
            version = "0.52.6"
         | 
| 737 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 738 | 
            -
            checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
         | 
| 739 | 
            -
             | 
| 740 | 
            -
            [[package]]
         | 
| 741 | 
            -
            name = "windows_x86_64_gnullvm"
         | 
| 742 | 
            -
            version = "0.52.6"
         | 
| 743 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 744 | 
            -
            checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
         | 
| 745 | 
            -
             | 
| 746 | 
            -
            [[package]]
         | 
| 747 | 
            -
            name = "windows_x86_64_msvc"
         | 
| 748 | 
            -
            version = "0.52.6"
         | 
| 749 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 750 | 
            -
            checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
         | 
| 751 | 
            -
             | 
| 752 | 
            -
            [[package]]
         | 
| 753 | 
            -
            name = "zerocopy"
         | 
| 754 | 
            -
            version = "0.7.35"
         | 
| 755 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 756 | 
            -
            checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
         | 
| 757 | 
            -
            dependencies = [
         | 
| 758 | 
            -
             "byteorder",
         | 
| 759 | 
            -
             "zerocopy-derive",
         | 
| 760 | 
            -
            ]
         | 
| 761 | 
            -
             | 
| 762 | 
            -
            [[package]]
         | 
| 763 | 
            -
            name = "zerocopy-derive"
         | 
| 764 | 
            -
            version = "0.7.35"
         | 
| 765 | 
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         | 
| 766 | 
            -
            checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
         | 
| 767 | 
            -
            dependencies = [
         | 
| 768 | 
            -
             "proc-macro2",
         | 
| 769 | 
            -
             "quote",
         | 
| 770 | 
            -
             "syn",
         | 
| 771 | 
            -
            ]
         |