1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "bitflags" 7version = "1.3.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 10 11[[package]] 12name = "build-scripts" 13version = "0.1.0" 14dependencies = [ 15 "git2", 16 "openssl", 17] 18 19[[package]] 20name = "cc" 21version = "1.0.72" 22source = "registry+https://github.com/rust-lang/crates.io-index" 23checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee" 24dependencies = [ 25 "jobserver", 26] 27 28[[package]] 29name = "cfg-if" 30version = "1.0.0" 31source = "registry+https://github.com/rust-lang/crates.io-index" 32checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 33 34[[package]] 35name = "foreign-types" 36version = "0.3.2" 37source = "registry+https://github.com/rust-lang/crates.io-index" 38checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 39dependencies = [ 40 "foreign-types-shared", 41] 42 43[[package]] 44name = "foreign-types-shared" 45version = "0.1.1" 46source = "registry+https://github.com/rust-lang/crates.io-index" 47checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 48 49[[package]] 50name = "form_urlencoded" 51version = "1.1.0" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 54dependencies = [ 55 "percent-encoding", 56] 57 58[[package]] 59name = "git2" 60version = "0.17.1" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "8b7905cdfe33d31a88bb2e8419ddd054451f5432d1da9eaf2ac7804ee1ea12d5" 63dependencies = [ 64 "bitflags", 65 "libc", 66 "libgit2-sys", 67 "log", 68 "openssl-probe", 69 "openssl-sys", 70 "url", 71] 72 73[[package]] 74name = "idna" 75version = "0.3.0" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 78dependencies = [ 79 "unicode-bidi", 80 "unicode-normalization", 81] 82 83[[package]] 84name = "jobserver" 85version = "0.1.26" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 88dependencies = [ 89 "libc", 90] 91 92[[package]] 93name = "libc" 94version = "0.2.112" 95source = "registry+https://github.com/rust-lang/crates.io-index" 96checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125" 97 98[[package]] 99name = "libgit2-sys" 100version = "0.15.1+1.6.4" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "fb4577bde8cdfc7d6a2a4bcb7b049598597de33ffd337276e9c7db6cd4a2cee7" 103dependencies = [ 104 "cc", 105 "libc", 106 "libssh2-sys", 107 "libz-sys", 108 "openssl-sys", 109 "pkg-config", 110] 111 112[[package]] 113name = "libssh2-sys" 114version = "0.3.0" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee" 117dependencies = [ 118 "cc", 119 "libc", 120 "libz-sys", 121 "openssl-sys", 122 "pkg-config", 123 "vcpkg", 124] 125 126[[package]] 127name = "libz-sys" 128version = "1.1.8" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 131dependencies = [ 132 "cc", 133 "libc", 134 "pkg-config", 135 "vcpkg", 136] 137 138[[package]] 139name = "log" 140version = "0.4.17" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 143dependencies = [ 144 "cfg-if", 145] 146 147[[package]] 148name = "once_cell" 149version = "1.9.0" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5" 152 153[[package]] 154name = "openssl" 155version = "0.10.52" 156source = "registry+https://github.com/rust-lang/crates.io-index" 157checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 158dependencies = [ 159 "bitflags", 160 "cfg-if", 161 "foreign-types", 162 "libc", 163 "once_cell", 164 "openssl-macros", 165 "openssl-sys", 166] 167 168[[package]] 169name = "openssl-macros" 170version = "0.1.1" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 173dependencies = [ 174 "proc-macro2", 175 "quote", 176 "syn", 177] 178 179[[package]] 180name = "openssl-probe" 181version = "0.1.5" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 184 185[[package]] 186name = "openssl-sys" 187version = "0.9.87" 188source = "registry+https://github.com/rust-lang/crates.io-index" 189checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 190dependencies = [ 191 "cc", 192 "libc", 193 "pkg-config", 194 "vcpkg", 195] 196 197[[package]] 198name = "percent-encoding" 199version = "2.2.0" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 202 203[[package]] 204name = "pkg-config" 205version = "0.3.24" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe" 208 209[[package]] 210name = "proc-macro2" 211version = "1.0.56" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 214dependencies = [ 215 "unicode-ident", 216] 217 218[[package]] 219name = "quote" 220version = "1.0.26" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 223dependencies = [ 224 "proc-macro2", 225] 226 227[[package]] 228name = "syn" 229version = "2.0.15" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 232dependencies = [ 233 "proc-macro2", 234 "quote", 235 "unicode-ident", 236] 237 238[[package]] 239name = "tinyvec" 240version = "1.6.0" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 243dependencies = [ 244 "tinyvec_macros", 245] 246 247[[package]] 248name = "tinyvec_macros" 249version = "0.1.1" 250source = "registry+https://github.com/rust-lang/crates.io-index" 251checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 252 253[[package]] 254name = "unicode-bidi" 255version = "0.3.13" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 258 259[[package]] 260name = "unicode-ident" 261version = "1.0.8" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 264 265[[package]] 266name = "unicode-normalization" 267version = "0.1.22" 268source = "registry+https://github.com/rust-lang/crates.io-index" 269checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 270dependencies = [ 271 "tinyvec", 272] 273 274[[package]] 275name = "url" 276version = "2.3.1" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 279dependencies = [ 280 "form_urlencoded", 281 "idna", 282 "percent-encoding", 283] 284 285[[package]] 286name = "vcpkg" 287version = "0.2.15" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 290