1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aho-corasick" 7version = "1.1.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "bindgen" 16version = "0.68.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" 19dependencies = [ 20 "bitflags", 21 "cexpr", 22 "clang-sys", 23 "lazy_static", 24 "lazycell", 25 "peeking_take_while", 26 "proc-macro2", 27 "quote", 28 "regex", 29 "rustc-hash", 30 "shlex", 31 "syn", 32] 33 34[[package]] 35name = "bitflags" 36version = "2.4.1" 37source = "registry+https://github.com/rust-lang/crates.io-index" 38checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 39 40[[package]] 41name = "cc" 42version = "1.0.83" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 45dependencies = [ 46 "libc", 47] 48 49[[package]] 50name = "cexpr" 51version = "0.6.0" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 54dependencies = [ 55 "nom", 56] 57 58[[package]] 59name = "cfg-if" 60version = "1.0.0" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 63 64[[package]] 65name = "clang-sys" 66version = "1.7.0" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" 69dependencies = [ 70 "glob", 71 "libc", 72 "libloading", 73] 74 75[[package]] 76name = "glob" 77version = "0.3.1" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 80 81[[package]] 82name = "lazy_static" 83version = "1.4.0" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 86 87[[package]] 88name = "lazycell" 89version = "1.3.0" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 92 93[[package]] 94name = "libc" 95version = "0.2.152" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 98 99[[package]] 100name = "libloading" 101version = "0.8.1" 102source = "registry+https://github.com/rust-lang/crates.io-index" 103checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 104dependencies = [ 105 "cfg-if", 106 "windows-sys", 107] 108 109[[package]] 110name = "memchr" 111version = "2.7.1" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 114 115[[package]] 116name = "minimal-lexical" 117version = "0.2.1" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 120 121[[package]] 122name = "nix" 123version = "0.27.1" 124source = "registry+https://github.com/rust-lang/crates.io-index" 125checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 126dependencies = [ 127 "bitflags", 128 "cfg-if", 129 "libc", 130] 131 132[[package]] 133name = "nom" 134version = "7.1.3" 135source = "registry+https://github.com/rust-lang/crates.io-index" 136checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 137dependencies = [ 138 "memchr", 139 "minimal-lexical", 140] 141 142[[package]] 143name = "peeking_take_while" 144version = "0.1.2" 145source = "registry+https://github.com/rust-lang/crates.io-index" 146checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 147 148[[package]] 149name = "proc-macro2" 150version = "1.0.76" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" 153dependencies = [ 154 "unicode-ident", 155] 156 157[[package]] 158name = "quote" 159version = "1.0.35" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 162dependencies = [ 163 "proc-macro2", 164] 165 166[[package]] 167name = "regex" 168version = "1.10.2" 169source = "registry+https://github.com/rust-lang/crates.io-index" 170checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 171dependencies = [ 172 "aho-corasick", 173 "memchr", 174 "regex-automata", 175 "regex-syntax", 176] 177 178[[package]] 179name = "regex-automata" 180version = "0.4.3" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 183dependencies = [ 184 "aho-corasick", 185 "memchr", 186 "regex-syntax", 187] 188 189[[package]] 190name = "regex-syntax" 191version = "0.8.2" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 194 195[[package]] 196name = "rustc-hash" 197version = "1.1.0" 198source = "registry+https://github.com/rust-lang/crates.io-index" 199checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 200 201[[package]] 202name = "shlex" 203version = "1.2.0" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 206 207[[package]] 208name = "syn" 209version = "2.0.48" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 212dependencies = [ 213 "proc-macro2", 214 "quote", 215 "unicode-ident", 216] 217 218[[package]] 219name = "thiserror" 220version = "1.0.56" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 223dependencies = [ 224 "thiserror-impl", 225] 226 227[[package]] 228name = "thiserror-impl" 229version = "1.0.56" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 232dependencies = [ 233 "proc-macro2", 234 "quote", 235 "syn", 236] 237 238[[package]] 239name = "unicode-ident" 240version = "1.0.12" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 243 244[[package]] 245name = "userfaultfd" 246version = "0.8.1" 247dependencies = [ 248 "bitflags", 249 "cfg-if", 250 "libc", 251 "nix", 252 "thiserror", 253 "userfaultfd-sys", 254] 255 256[[package]] 257name = "userfaultfd-sys" 258version = "0.5.0" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "d75595d2a62b7db16bd47f5a1ce14e1fe05ccbe27d6c96721a958e0a027cad41" 261dependencies = [ 262 "bindgen", 263 "cc", 264 "cfg-if", 265] 266 267[[package]] 268name = "windows-sys" 269version = "0.48.0" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 272dependencies = [ 273 "windows-targets", 274] 275 276[[package]] 277name = "windows-targets" 278version = "0.48.5" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 281dependencies = [ 282 "windows_aarch64_gnullvm", 283 "windows_aarch64_msvc", 284 "windows_i686_gnu", 285 "windows_i686_msvc", 286 "windows_x86_64_gnu", 287 "windows_x86_64_gnullvm", 288 "windows_x86_64_msvc", 289] 290 291[[package]] 292name = "windows_aarch64_gnullvm" 293version = "0.48.5" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 296 297[[package]] 298name = "windows_aarch64_msvc" 299version = "0.48.5" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 302 303[[package]] 304name = "windows_i686_gnu" 305version = "0.48.5" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 308 309[[package]] 310name = "windows_i686_msvc" 311version = "0.48.5" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 314 315[[package]] 316name = "windows_x86_64_gnu" 317version = "0.48.5" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 320 321[[package]] 322name = "windows_x86_64_gnullvm" 323version = "0.48.5" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 326 327[[package]] 328name = "windows_x86_64_msvc" 329version = "0.48.5" 330source = "registry+https://github.com/rust-lang/crates.io-index" 331checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 332