diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 68 |
1 files changed, 17 insertions, 51 deletions
| @@ -97,16 +97,6 @@ dependencies = [ | |||
| 97 | ] | 97 | ] |
| 98 | 98 | ||
| 99 | [[package]] | 99 | [[package]] |
| 100 | name = "ctor" | ||
| 101 | version = "0.1.20" | ||
| 102 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 103 | checksum = "5e98e2ad1a782e33928b96fc3948e7c355e5af34ba4de7670fe8bac2a3b2006d" | ||
| 104 | dependencies = [ | ||
| 105 | "quote", | ||
| 106 | "syn", | ||
| 107 | ] | ||
| 108 | |||
| 109 | [[package]] | ||
| 110 | name = "either" | 100 | name = "either" |
| 111 | version = "1.6.1" | 101 | version = "1.6.1" |
| 112 | source = "registry+https://github.com/rust-lang/crates.io-index" | 102 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -135,17 +125,6 @@ dependencies = [ | |||
| 135 | ] | 125 | ] |
| 136 | 126 | ||
| 137 | [[package]] | 127 | [[package]] |
| 138 | name = "ghost" | ||
| 139 | version = "0.1.2" | ||
| 140 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 141 | checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479" | ||
| 142 | dependencies = [ | ||
| 143 | "proc-macro2", | ||
| 144 | "quote", | ||
| 145 | "syn", | ||
| 146 | ] | ||
| 147 | |||
| 148 | [[package]] | ||
| 149 | name = "idna" | 128 | name = "idna" |
| 150 | version = "0.2.2" | 129 | version = "0.2.2" |
| 151 | source = "registry+https://github.com/rust-lang/crates.io-index" | 130 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -189,28 +168,6 @@ dependencies = [ | |||
| 189 | ] | 168 | ] |
| 190 | 169 | ||
| 191 | [[package]] | 170 | [[package]] |
| 192 | name = "inventory" | ||
| 193 | version = "0.1.10" | ||
| 194 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 195 | checksum = "0f0f7efb804ec95e33db9ad49e4252f049e37e8b0a4652e3cd61f7999f2eff7f" | ||
| 196 | dependencies = [ | ||
| 197 | "ctor", | ||
| 198 | "ghost", | ||
| 199 | "inventory-impl", | ||
| 200 | ] | ||
| 201 | |||
| 202 | [[package]] | ||
| 203 | name = "inventory-impl" | ||
| 204 | version = "0.1.10" | ||
| 205 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 206 | checksum = "75c094e94816723ab936484666968f5b58060492e880f3c8d00489a1e244fa51" | ||
| 207 | dependencies = [ | ||
| 208 | "proc-macro2", | ||
| 209 | "quote", | ||
| 210 | "syn", | ||
| 211 | ] | ||
| 212 | |||
| 213 | [[package]] | ||
| 214 | name = "itertools" | 171 | name = "itertools" |
| 215 | version = "0.9.0" | 172 | version = "0.9.0" |
| 216 | source = "registry+https://github.com/rust-lang/crates.io-index" | 173 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -353,26 +310,34 @@ checksum = "66b398073e7cdd6f05934389a8f5961e3aabfa66675b6f440df4e2c793d51a4f" | |||
| 353 | 310 | ||
| 354 | [[package]] | 311 | [[package]] |
| 355 | name = "pyo3" | 312 | name = "pyo3" |
| 356 | version = "0.13.2" | 313 | version = "0.14.5" |
| 357 | source = "registry+https://github.com/rust-lang/crates.io-index" | 314 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 358 | checksum = "4837b8e8e18a102c23f79d1e9a110b597ea3b684c95e874eb1ad88f8683109c3" | 315 | checksum = "35100f9347670a566a67aa623369293703322bb9db77d99d7df7313b575ae0c8" |
| 359 | dependencies = [ | 316 | dependencies = [ |
| 360 | "cfg-if", | 317 | "cfg-if", |
| 361 | "ctor", | ||
| 362 | "indoc", | 318 | "indoc", |
| 363 | "inventory", | ||
| 364 | "libc", | 319 | "libc", |
| 365 | "parking_lot", | 320 | "parking_lot", |
| 366 | "paste", | 321 | "paste", |
| 322 | "pyo3-build-config", | ||
| 367 | "pyo3-macros", | 323 | "pyo3-macros", |
| 368 | "unindent", | 324 | "unindent", |
| 369 | ] | 325 | ] |
| 370 | 326 | ||
| 371 | [[package]] | 327 | [[package]] |
| 328 | name = "pyo3-build-config" | ||
| 329 | version = "0.14.5" | ||
| 330 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 331 | checksum = "d12961738cacbd7f91b7c43bc25cfeeaa2698ad07a04b3be0aa88b950865738f" | ||
| 332 | dependencies = [ | ||
| 333 | "once_cell", | ||
| 334 | ] | ||
| 335 | |||
| 336 | [[package]] | ||
| 372 | name = "pyo3-macros" | 337 | name = "pyo3-macros" |
| 373 | version = "0.13.2" | 338 | version = "0.14.5" |
| 374 | source = "registry+https://github.com/rust-lang/crates.io-index" | 339 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 375 | checksum = "a47f2c300ceec3e58064fd5f8f5b61230f2ffd64bde4970c81fdd0563a2db1bb" | 340 | checksum = "fc0bc5215d704824dfddddc03f93cb572e1155c68b6761c37005e1c288808ea8" |
| 376 | dependencies = [ | 341 | dependencies = [ |
| 377 | "pyo3-macros-backend", | 342 | "pyo3-macros-backend", |
| 378 | "quote", | 343 | "quote", |
| @@ -381,11 +346,12 @@ dependencies = [ | |||
| 381 | 346 | ||
| 382 | [[package]] | 347 | [[package]] |
| 383 | name = "pyo3-macros-backend" | 348 | name = "pyo3-macros-backend" |
| 384 | version = "0.13.2" | 349 | version = "0.14.5" |
| 385 | source = "registry+https://github.com/rust-lang/crates.io-index" | 350 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 386 | checksum = "87b097e5d84fcbe3e167f400fbedd657820a375b034c78bd852050749a575d66" | 351 | checksum = "71623fc593224afaab918aa3afcaf86ed2f43d34f6afde7f3922608f253240df" |
| 387 | dependencies = [ | 352 | dependencies = [ |
| 388 | "proc-macro2", | 353 | "proc-macro2", |
| 354 | "pyo3-build-config", | ||
| 389 | "quote", | 355 | "quote", |
| 390 | "syn", | 356 | "syn", |
| 391 | ] | 357 | ] |
