nym: 0.11.0 -> 1.1.21

authored by

happysalada and committed by
Yt
605c86ad bf2e7265

+5405 -1270
+5362 -1219
pkgs/applications/networking/nym/Cargo.lock
··· 1 # This file is automatically @generated by Cargo. 2 # It is not intended for manual editing. 3 - # Copyright 2020 - Nym Technologies SA <contact@nymtech.net> 4 - # SPDX-License-Identifier: Apache-2.0 5 version = 3 6 7 [[package]] 8 - name = "aes-ctr" 9 - version = "0.3.0" 10 source = "registry+https://github.com/rust-lang/crates.io-index" 11 - checksum = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" 12 dependencies = [ 13 - "aes-soft 0.3.3", 14 - "aesni 0.6.0", 15 - "ctr 0.3.2", 16 - "stream-cipher", 17 ] 18 19 [[package]] 20 - name = "aes-ctr" 21 - version = "0.6.0" 22 source = "registry+https://github.com/rust-lang/crates.io-index" 23 - checksum = "7729c3cde54d67063be556aeac75a81330d802f0259500ca40cb52967f975763" 24 dependencies = [ 25 - "aes-soft 0.6.4", 26 - "aesni 0.10.0", 27 - "cipher", 28 - "ctr 0.6.0", 29 ] 30 31 [[package]] 32 - name = "aes-soft" 33 - version = "0.3.3" 34 source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" 36 dependencies = [ 37 - "block-cipher-trait", 38 - "byteorder", 39 - "opaque-debug 0.2.3", 40 ] 41 42 [[package]] 43 - name = "aes-soft" 44 - version = "0.6.4" 45 source = "registry+https://github.com/rust-lang/crates.io-index" 46 - checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" 47 dependencies = [ 48 - "cipher", 49 - "opaque-debug 0.3.0", 50 ] 51 52 [[package]] 53 - name = "aesni" 54 - version = "0.6.0" 55 source = "registry+https://github.com/rust-lang/crates.io-index" 56 - checksum = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" 57 dependencies = [ 58 - "block-cipher-trait", 59 - "opaque-debug 0.2.3", 60 - "stream-cipher", 61 ] 62 63 [[package]] 64 - name = "aesni" 65 - version = "0.10.0" 66 source = "registry+https://github.com/rust-lang/crates.io-index" 67 - checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" 68 dependencies = [ 69 - "cipher", 70 - "opaque-debug 0.3.0", 71 ] 72 73 [[package]] 74 name = "aho-corasick" 75 - version = "0.7.18" 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 78 dependencies = [ 79 "memchr", 80 ] 81 82 [[package]] 83 - name = "ansi_term" 84 - version = "0.11.0" 85 source = "registry+https://github.com/rust-lang/crates.io-index" 86 - checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 87 dependencies = [ 88 - "winapi", 89 ] 90 91 [[package]] 92 name = "arrayref" 93 - version = "0.3.6" 94 source = "registry+https://github.com/rust-lang/crates.io-index" 95 - checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 96 97 [[package]] 98 name = "arrayvec" 99 - version = "0.5.2" 100 source = "registry+https://github.com/rust-lang/crates.io-index" 101 - checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 102 103 [[package]] 104 name = "async-stream" 105 - version = "0.3.2" 106 source = "registry+https://github.com/rust-lang/crates.io-index" 107 - checksum = "171374e7e3b2504e0e5236e3b59260560f9fe94bfe9ac39ba5e4e929c5590625" 108 dependencies = [ 109 "async-stream-impl", 110 "futures-core", 111 ] 112 113 [[package]] 114 name = "async-stream-impl" 115 - version = "0.3.2" 116 source = "registry+https://github.com/rust-lang/crates.io-index" 117 - checksum = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308" 118 dependencies = [ 119 "proc-macro2", 120 "quote", 121 - "syn", 122 ] 123 124 [[package]] 125 name = "async-trait" 126 - version = "0.1.50" 127 source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "0b98e84bbb4cbcdd97da190ba0c58a1bb0de2c1fdf67d159e192ed766aeca722" 129 dependencies = [ 130 "proc-macro2", 131 "quote", 132 - "syn", 133 ] 134 135 [[package]] 136 - name = "atomic" 137 - version = "0.5.0" 138 source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "c3410529e8288c463bedb5930f82833bc0c90e5d2fe639a56582a4d09220b281" 140 dependencies = [ 141 - "autocfg", 142 ] 143 144 [[package]] 145 name = "atty" 146 version = "0.2.14" 147 source = "registry+https://github.com/rust-lang/crates.io-index" 148 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 149 dependencies = [ 150 - "hermit-abi", 151 "libc", 152 "winapi", 153 ] 154 155 [[package]] 156 name = "autocfg" 157 - version = "1.0.1" 158 source = "registry+https://github.com/rust-lang/crates.io-index" 159 - checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 160 161 [[package]] 162 - name = "base-x" 163 - version = "0.2.8" 164 source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b" 166 167 [[package]] 168 name = "base64" 169 - version = "0.13.0" 170 source = "registry+https://github.com/rust-lang/crates.io-index" 171 - checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 172 173 [[package]] 174 name = "binascii" ··· 177 checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72" 178 179 [[package]] 180 name = "bitflags" 181 - version = "1.2.1" 182 source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 184 185 [[package]] 186 name = "bitvec" 187 - version = "0.18.5" 188 source = "registry+https://github.com/rust-lang/crates.io-index" 189 - checksum = "98fcd36dda4e17b7d7abc64cb549bf0201f4ab71e00700c798ca7e62ed3761fa" 190 dependencies = [ 191 "funty", 192 "radium", 193 "wyz", 194 ] 195 ··· 206 ] 207 208 [[package]] 209 name = "blake3" 210 - version = "0.3.8" 211 source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3" 213 dependencies = [ 214 "arrayref", 215 "arrayvec", 216 "cc", 217 - "cfg-if 0.1.10", 218 "constant_time_eq", 219 - "crypto-mac 0.8.0", 220 - "digest 0.9.0", 221 ] 222 223 [[package]] 224 name = "block-buffer" 225 - version = "0.7.3" 226 source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 228 dependencies = [ 229 "block-padding", 230 - "byte-tools", 231 - "byteorder", 232 - "generic-array 0.12.4", 233 ] 234 235 [[package]] 236 name = "block-buffer" 237 - version = "0.9.0" 238 source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 240 dependencies = [ 241 - "generic-array 0.14.4", 242 ] 243 244 [[package]] 245 - name = "block-cipher-trait" 246 - version = "0.6.2" 247 source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" 249 - dependencies = [ 250 - "generic-array 0.12.4", 251 - ] 252 253 [[package]] 254 - name = "block-padding" 255 - version = "0.1.5" 256 source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 258 dependencies = [ 259 - "byte-tools", 260 ] 261 262 [[package]] 263 - name = "bs58" 264 - version = "0.3.1" 265 - source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "476e9cd489f9e121e02ffa6014a8ef220ecb15c05ed23fc34cca13925dc283fb" 267 268 [[package]] 269 name = "bs58" 270 version = "0.4.0" 271 source = "registry+https://github.com/rust-lang/crates.io-index" 272 checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" 273 274 [[package]] 275 name = "bumpalo" 276 - version = "3.7.0" 277 source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631" 279 280 [[package]] 281 name = "byte-tools" ··· 291 292 [[package]] 293 name = "bytes" 294 - version = "1.0.1" 295 source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" 297 298 [[package]] 299 name = "cc" 300 - version = "1.0.68" 301 source = "registry+https://github.com/rust-lang/crates.io-index" 302 - checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787" 303 304 [[package]] 305 - name = "cfg-if" 306 - version = "0.1.10" 307 source = "registry+https://github.com/rust-lang/crates.io-index" 308 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 309 310 [[package]] 311 name = "cfg-if" ··· 324 ] 325 326 [[package]] 327 name = "cipher" 328 - version = "0.2.5" 329 source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" 331 dependencies = [ 332 - "generic-array 0.14.4", 333 ] 334 335 [[package]] 336 name = "clap" 337 - version = "2.33.3" 338 source = "registry+https://github.com/rust-lang/crates.io-index" 339 - checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" 340 dependencies = [ 341 - "ansi_term", 342 - "atty", 343 "bitflags", 344 "strsim", 345 - "textwrap", 346 - "unicode-width", 347 - "vec_map", 348 ] 349 350 [[package]] 351 - name = "client-core" 352 - version = "0.11.0" 353 dependencies = [ 354 - "config", 355 - "crypto", 356 - "dirs", 357 - "futures", 358 - "gateway-client", 359 - "gateway-requests", 360 - "humantime-serde", 361 - "log", 362 - "nonexhaustive-delayqueue", 363 - "nymsphinx", 364 - "pemstore", 365 - "rand 0.7.3", 366 - "serde", 367 - "sled", 368 - "tempfile", 369 - "tokio", 370 - "topology", 371 - "validator-client", 372 ] 373 374 [[package]] 375 name = "colored" ··· 383 ] 384 385 [[package]] 386 - name = "config" 387 - version = "0.1.0" 388 dependencies = [ 389 - "handlebars", 390 - "humantime-serde", 391 - "serde", 392 - "toml", 393 ] 394 395 [[package]] 396 - name = "console_error_panic_hook" 397 - version = "0.1.6" 398 source = "registry+https://github.com/rust-lang/crates.io-index" 399 - checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211" 400 dependencies = [ 401 - "cfg-if 0.1.10", 402 - "wasm-bindgen", 403 ] 404 405 [[package]] 406 - name = "const-oid" 407 - version = "0.4.5" 408 source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "9f6b64db6932c7e49332728e3a6bd82c6b7e16016607d20923b537c3bc4c0d5f" 410 411 [[package]] 412 - name = "const_fn" 413 - version = "0.4.8" 414 source = "registry+https://github.com/rust-lang/crates.io-index" 415 - checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7" 416 417 [[package]] 418 - name = "constant_time_eq" 419 - version = "0.1.5" 420 source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 422 423 [[package]] 424 - name = "convert_case" 425 - version = "0.4.0" 426 source = "registry+https://github.com/rust-lang/crates.io-index" 427 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 428 429 [[package]] 430 name = "cookie" 431 - version = "0.15.0" 432 source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "ffdf8865bac3d9a3bde5bde9088ca431b11f5d37c7a578b8086af77248b76627" 434 dependencies = [ 435 "percent-encoding", 436 - "time", 437 "version_check", 438 ] 439 440 [[package]] 441 name = "core-foundation" 442 - version = "0.9.1" 443 source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62" 445 dependencies = [ 446 "core-foundation-sys", 447 "libc", ··· 449 450 [[package]] 451 name = "core-foundation-sys" 452 - version = "0.8.2" 453 source = "registry+https://github.com/rust-lang/crates.io-index" 454 - checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b" 455 456 [[package]] 457 name = "cosmwasm-crypto" 458 - version = "0.14.1" 459 source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "038089cdadfe61e4e85617d91cecec2c49f828db8e5986bb85e29d0b29c59b77" 461 dependencies = [ 462 "digest 0.9.0", 463 "ed25519-zebra", 464 "k256", 465 - "rand_core 0.5.1", 466 "thiserror", 467 ] 468 469 [[package]] 470 name = "cosmwasm-derive" 471 - version = "0.14.1" 472 source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "628bf3da935843795a7f52678262ef06398878b0cf4c89b69612d8525ea27b84" 474 dependencies = [ 475 - "syn", 476 ] 477 478 [[package]] 479 name = "cosmwasm-std" 480 - version = "0.14.1" 481 source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "22de097cf4f7e7f575f51a22de7260932756ccfe499e005f98244a3043470e48" 483 dependencies = [ 484 - "base64", 485 "cosmwasm-crypto", 486 "cosmwasm-derive", 487 "schemars", 488 "serde", 489 "serde-json-wasm", ··· 492 ] 493 494 [[package]] 495 name = "cpufeatures" 496 - version = "0.1.5" 497 source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "66c99696f6c9dd7f35d486b9d04d7e6e202aa3e8c40d553f2fdf5e7e0c6a71ef" 499 dependencies = [ 500 "libc", 501 ] 502 503 [[package]] 504 name = "crc32fast" 505 - version = "1.2.1" 506 source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" 508 dependencies = [ 509 - "cfg-if 1.0.0", 510 ] 511 512 [[package]] 513 name = "crossbeam-epoch" 514 - version = "0.9.5" 515 source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" 517 dependencies = [ 518 - "cfg-if 1.0.0", 519 "crossbeam-utils", 520 - "lazy_static", 521 "memoffset", 522 "scopeguard", 523 ] 524 525 [[package]] 526 name = "crossbeam-utils" 527 - version = "0.8.5" 528 source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" 530 dependencies = [ 531 - "cfg-if 1.0.0", 532 - "lazy_static", 533 ] 534 535 [[package]] ··· 539 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 540 541 [[package]] 542 - name = "crypto" 543 - version = "0.1.0" 544 dependencies = [ 545 - "aes-ctr 0.6.0", 546 - "blake3", 547 - "bs58 0.4.0", 548 - "cipher", 549 - "digest 0.9.0", 550 - "ed25519-dalek", 551 - "generic-array 0.14.4", 552 - "hkdf 0.10.0", 553 - "hmac 0.8.1", 554 - "log", 555 - "nymsphinx-types", 556 - "pemstore", 557 - "rand 0.7.3", 558 - "x25519-dalek", 559 ] 560 561 [[package]] ··· 570 571 [[package]] 572 name = "crypto-mac" 573 version = "0.8.0" 574 source = "registry+https://github.com/rust-lang/crates.io-index" 575 - checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" 576 dependencies = [ 577 - "generic-array 0.14.4", 578 - "subtle 2.4.0", 579 ] 580 581 [[package]] 582 - name = "crypto-mac" 583 - version = "0.10.0" 584 source = "registry+https://github.com/rust-lang/crates.io-index" 585 - checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6" 586 dependencies = [ 587 - "generic-array 0.14.4", 588 - "subtle 2.4.0", 589 ] 590 591 [[package]] 592 name = "ctr" 593 - version = "0.3.2" 594 source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" 596 dependencies = [ 597 - "block-cipher-trait", 598 - "stream-cipher", 599 ] 600 601 [[package]] 602 name = "ctr" 603 - version = "0.6.0" 604 source = "registry+https://github.com/rust-lang/crates.io-index" 605 - checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 606 dependencies = [ 607 - "cipher", 608 ] 609 610 [[package]] 611 name = "curve25519-dalek" 612 - version = "3.1.0" 613 source = "registry+https://github.com/rust-lang/crates.io-index" 614 - checksum = "639891fde0dbea823fc3d798a0fdf9d2f9440a42d64a78ab3488b0ca025117b3" 615 dependencies = [ 616 "byteorder", 617 "digest 0.9.0", 618 "rand_core 0.5.1", 619 - "subtle 2.4.0", 620 "zeroize", 621 ] 622 623 [[package]] 624 name = "dashmap" 625 version = "4.0.2" 626 source = "registry+https://github.com/rust-lang/crates.io-index" 627 checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" 628 dependencies = [ 629 - "cfg-if 1.0.0", 630 "num_cpus", 631 ] 632 633 [[package]] 634 - name = "der" 635 - version = "0.1.0" 636 source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "51f59c66c30bb7445c8320a5f9233e437e3572368099f25532a59054328899b4" 638 dependencies = [ 639 - "const-oid", 640 ] 641 642 [[package]] 643 - name = "derive_more" 644 - version = "0.99.14" 645 source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "5cc7b9cef1e351660e5443924e4f43ab25fbbed3e9a5f052df3677deb4d6b320" 647 dependencies = [ 648 - "convert_case", 649 - "proc-macro2", 650 - "quote", 651 - "syn", 652 ] 653 654 [[package]] 655 name = "devise" 656 - version = "0.3.0" 657 source = "registry+https://github.com/rust-lang/crates.io-index" 658 - checksum = "411cf45ac38f00df3679689616649dc12607b846db171780bb790b514a042832" 659 dependencies = [ 660 "devise_codegen", 661 "devise_core", ··· 663 664 [[package]] 665 name = "devise_codegen" 666 - version = "0.3.0" 667 source = "registry+https://github.com/rust-lang/crates.io-index" 668 - checksum = "2cf7081f06822f1787e29359354426132cf832cc977d7a8ff747848631462ad1" 669 dependencies = [ 670 "devise_core", 671 "quote", ··· 673 674 [[package]] 675 name = "devise_core" 676 - version = "0.3.0" 677 source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "80c23631758736875d7ce08f847f296b4001b72cf90878e85b47df7ac5442147" 679 dependencies = [ 680 "bitflags", 681 "proc-macro2", 682 - "proc-macro2-diagnostics", 683 "quote", 684 - "syn", 685 ] 686 687 [[package]] ··· 699 source = "registry+https://github.com/rust-lang/crates.io-index" 700 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 701 dependencies = [ 702 - "generic-array 0.14.4", 703 ] 704 705 [[package]] 706 name = "dirs" 707 - version = "3.0.2" 708 source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309" 710 dependencies = [ 711 "dirs-sys", 712 ] 713 714 [[package]] 715 name = "dirs-sys" 716 - version = "0.3.6" 717 source = "registry+https://github.com/rust-lang/crates.io-index" 718 - checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780" 719 dependencies = [ 720 "libc", 721 "redox_users", 722 "winapi", 723 ] 724 - 725 - [[package]] 726 - name = "discard" 727 - version = "1.0.4" 728 - source = "registry+https://github.com/rust-lang/crates.io-index" 729 - checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" 730 731 [[package]] 732 name = "doc-comment" ··· 741 checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 742 743 [[package]] 744 name = "dyn-clone" 745 - version = "1.0.4" 746 source = "registry+https://github.com/rust-lang/crates.io-index" 747 - checksum = "ee2626afccd7561a06cf1367e2950c4718ea04565e20fb5029b6c7d8ad09abcf" 748 749 [[package]] 750 name = "ecdsa" 751 - version = "0.10.2" 752 source = "registry+https://github.com/rust-lang/crates.io-index" 753 - checksum = "41fbdb4ff710acb4db8ca29f93b897529ea6d6a45626d5183b47e012aa6ae7e4" 754 dependencies = [ 755 "elliptic-curve", 756 - "hmac 0.10.1", 757 "signature", 758 ] 759 760 [[package]] 761 name = "ed25519" 762 - version = "1.1.1" 763 source = "registry+https://github.com/rust-lang/crates.io-index" 764 - checksum = "8d0860415b12243916284c67a9be413e044ee6668247b99ba26d94b2bc06c8f6" 765 dependencies = [ 766 "signature", 767 ] 768 ··· 776 "ed25519", 777 "rand 0.7.3", 778 "serde", 779 - "sha2 0.9.5", 780 "zeroize", 781 ] 782 783 [[package]] 784 name = "ed25519-zebra" 785 - version = "2.2.0" 786 source = "registry+https://github.com/rust-lang/crates.io-index" 787 - checksum = "0a128b76af6dd4b427e34a6fd43dc78dbfe73672ec41ff615a2414c1a0ad0409" 788 dependencies = [ 789 "curve25519-dalek", 790 "hex", 791 - "rand_core 0.5.1", 792 "serde", 793 - "sha2 0.9.5", 794 - "thiserror", 795 ] 796 797 [[package]] 798 name = "either" 799 - version = "1.6.1" 800 source = "registry+https://github.com/rust-lang/crates.io-index" 801 - checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 802 803 [[package]] 804 name = "elliptic-curve" 805 - version = "0.8.5" 806 source = "registry+https://github.com/rust-lang/crates.io-index" 807 - checksum = "f2db227e61a43a34915680bdda462ec0e212095518020a88a1f91acd16092c39" 808 dependencies = [ 809 - "bitvec", 810 - "digest 0.9.0", 811 - "ff", 812 - "funty", 813 - "generic-array 0.14.4", 814 - "group", 815 - "pkcs8", 816 - "rand_core 0.5.1", 817 - "subtle 2.4.0", 818 "zeroize", 819 ] 820 821 [[package]] 822 name = "encoding_rs" 823 - version = "0.8.28" 824 source = "registry+https://github.com/rust-lang/crates.io-index" 825 - checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065" 826 dependencies = [ 827 - "cfg-if 1.0.0", 828 ] 829 830 [[package]] ··· 841 ] 842 843 [[package]] 844 - name = "fake-simd" 845 version = "0.1.2" 846 source = "registry+https://github.com/rust-lang/crates.io-index" 847 - checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 848 849 [[package]] 850 name = "ff" 851 - version = "0.8.0" 852 source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "01646e077d4ebda82b73f1bca002ea1e91561a77df2431a9e79729bcc31950ef" 854 dependencies = [ 855 - "bitvec", 856 - "rand_core 0.5.1", 857 - "subtle 2.4.0", 858 ] 859 860 [[package]] 861 name = "figment" 862 - version = "0.10.6" 863 source = "registry+https://github.com/rust-lang/crates.io-index" 864 - checksum = "790b4292c72618abbab50f787a477014fe15634f96291de45672ce46afe122df" 865 dependencies = [ 866 "atomic", 867 "pear", ··· 872 ] 873 874 [[package]] 875 name = "fnv" 876 version = "1.0.7" 877 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 894 895 [[package]] 896 name = "form_urlencoded" 897 - version = "1.0.1" 898 source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 900 dependencies = [ 901 - "matches", 902 "percent-encoding", 903 ] 904 905 [[package]] 906 - name = "fs2" 907 - version = "0.4.3" 908 source = "registry+https://github.com/rust-lang/crates.io-index" 909 - checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 910 dependencies = [ 911 "libc", 912 - "winapi", 913 ] 914 915 [[package]] 916 name = "funty" 917 - version = "1.1.0" 918 source = "registry+https://github.com/rust-lang/crates.io-index" 919 - checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" 920 921 [[package]] 922 name = "futures" 923 - version = "0.3.15" 924 source = "registry+https://github.com/rust-lang/crates.io-index" 925 - checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27" 926 dependencies = [ 927 "futures-channel", 928 "futures-core", ··· 935 936 [[package]] 937 name = "futures-channel" 938 - version = "0.3.15" 939 source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2" 941 dependencies = [ 942 "futures-core", 943 "futures-sink", ··· 945 946 [[package]] 947 name = "futures-core" 948 - version = "0.3.15" 949 source = "registry+https://github.com/rust-lang/crates.io-index" 950 - checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1" 951 952 [[package]] 953 name = "futures-executor" 954 - version = "0.3.15" 955 source = "registry+https://github.com/rust-lang/crates.io-index" 956 - checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79" 957 dependencies = [ 958 "futures-core", 959 "futures-task", 960 "futures-util", 961 ] 962 963 [[package]] 964 name = "futures-io" 965 - version = "0.3.15" 966 source = "registry+https://github.com/rust-lang/crates.io-index" 967 - checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1" 968 969 [[package]] 970 name = "futures-macro" 971 - version = "0.3.15" 972 source = "registry+https://github.com/rust-lang/crates.io-index" 973 - checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121" 974 dependencies = [ 975 - "autocfg", 976 - "proc-macro-hack", 977 "proc-macro2", 978 "quote", 979 - "syn", 980 ] 981 982 [[package]] 983 name = "futures-sink" 984 - version = "0.3.15" 985 source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282" 987 988 [[package]] 989 name = "futures-task" 990 - version = "0.3.15" 991 source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae" 993 994 [[package]] 995 name = "futures-util" 996 - version = "0.3.15" 997 source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967" 999 dependencies = [ 1000 - "autocfg", 1001 "futures-channel", 1002 "futures-core", 1003 "futures-io", ··· 1007 "memchr", 1008 "pin-project-lite", 1009 "pin-utils", 1010 - "proc-macro-hack", 1011 - "proc-macro-nested", 1012 "slab", 1013 ] 1014 1015 [[package]] 1016 - name = "fxhash" 1017 - version = "0.2.1" 1018 source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1020 - dependencies = [ 1021 - "byteorder", 1022 - ] 1023 - 1024 - [[package]] 1025 - name = "gateway-client" 1026 - version = "0.1.0" 1027 - dependencies = [ 1028 - "crypto", 1029 - "futures", 1030 - "gateway-requests", 1031 - "getrandom 0.2.3", 1032 - "log", 1033 - "nymsphinx", 1034 - "rand 0.7.3", 1035 - "tokio", 1036 - "tokio-tungstenite", 1037 - "tungstenite", 1038 - "wasm-bindgen", 1039 - "wasm-bindgen-futures", 1040 - "wasm-timer", 1041 - "wasm-utils", 1042 - ] 1043 - 1044 - [[package]] 1045 - name = "gateway-requests" 1046 - version = "0.1.0" 1047 - dependencies = [ 1048 - "bs58 0.3.1", 1049 - "crypto", 1050 - "futures", 1051 - "log", 1052 - "nymsphinx", 1053 - "pemstore", 1054 - "rand 0.7.3", 1055 - "serde", 1056 - "serde_json", 1057 - "tungstenite", 1058 - ] 1059 1060 [[package]] 1061 name = "generator" 1062 - version = "0.7.0" 1063 source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee" 1065 dependencies = [ 1066 "cc", 1067 "libc", 1068 "log", 1069 "rustversion", 1070 - "winapi", 1071 ] 1072 1073 [[package]] ··· 1081 1082 [[package]] 1083 name = "generic-array" 1084 - version = "0.14.4" 1085 source = "registry+https://github.com/rust-lang/crates.io-index" 1086 - checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 1087 dependencies = [ 1088 "typenum", 1089 "version_check", 1090 ] 1091 1092 [[package]] ··· 1095 source = "registry+https://github.com/rust-lang/crates.io-index" 1096 checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1097 dependencies = [ 1098 - "cfg-if 1.0.0", 1099 "js-sys", 1100 "libc", 1101 "wasi 0.9.0+wasi-snapshot-preview1", ··· 1104 1105 [[package]] 1106 name = "getrandom" 1107 - version = "0.2.3" 1108 source = "registry+https://github.com/rust-lang/crates.io-index" 1109 - checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" 1110 dependencies = [ 1111 - "cfg-if 1.0.0", 1112 "js-sys", 1113 "libc", 1114 - "wasi 0.10.2+wasi-snapshot-preview1", 1115 "wasm-bindgen", 1116 ] 1117 1118 [[package]] 1119 name = "glob" 1120 - version = "0.3.0" 1121 source = "registry+https://github.com/rust-lang/crates.io-index" 1122 - checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 1123 1124 [[package]] 1125 name = "group" 1126 - version = "0.8.0" 1127 source = "registry+https://github.com/rust-lang/crates.io-index" 1128 - checksum = "cc11f9f5fbf1943b48ae7c2bf6846e7d827a512d1be4f23af708f5ca5d01dde1" 1129 dependencies = [ 1130 - "ff", 1131 - "rand_core 0.5.1", 1132 - "subtle 2.4.0", 1133 ] 1134 1135 [[package]] 1136 name = "h2" 1137 - version = "0.3.3" 1138 source = "registry+https://github.com/rust-lang/crates.io-index" 1139 - checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726" 1140 dependencies = [ 1141 "bytes", 1142 "fnv", ··· 1152 ] 1153 1154 [[package]] 1155 name = "handlebars" 1156 version = "3.5.5" 1157 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1170 version = "0.11.2" 1171 source = "registry+https://github.com/rust-lang/crates.io-index" 1172 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 1173 1174 [[package]] 1175 name = "hermit-abi" ··· 1181 ] 1182 1183 [[package]] 1184 name = "hex" 1185 version = "0.4.3" 1186 source = "registry+https://github.com/rust-lang/crates.io-index" 1187 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1188 1189 [[package]] 1190 - name = "hkdf" 1191 - version = "0.8.0" 1192 source = "registry+https://github.com/rust-lang/crates.io-index" 1193 - checksum = "3fa08a006102488bd9cd5b8013aabe84955cf5ae22e304c2caf655b633aefae3" 1194 dependencies = [ 1195 - "digest 0.8.1", 1196 - "hmac 0.7.1", 1197 ] 1198 1199 [[package]] 1200 name = "hkdf" 1201 - version = "0.10.0" 1202 source = "registry+https://github.com/rust-lang/crates.io-index" 1203 - checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" 1204 dependencies = [ 1205 "digest 0.9.0", 1206 - "hmac 0.10.1", 1207 ] 1208 1209 [[package]] 1210 - name = "hmac" 1211 - version = "0.7.1" 1212 source = "registry+https://github.com/rust-lang/crates.io-index" 1213 - checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" 1214 dependencies = [ 1215 - "crypto-mac 0.7.0", 1216 - "digest 0.8.1", 1217 ] 1218 1219 [[package]] 1220 name = "hmac" 1221 - version = "0.8.1" 1222 source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840" 1224 dependencies = [ 1225 - "crypto-mac 0.8.0", 1226 "digest 0.9.0", 1227 ] 1228 1229 [[package]] 1230 name = "hmac" 1231 - version = "0.10.1" 1232 source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" 1234 dependencies = [ 1235 - "crypto-mac 0.10.0", 1236 - "digest 0.9.0", 1237 ] 1238 1239 [[package]] 1240 name = "http" 1241 - version = "0.2.4" 1242 source = "registry+https://github.com/rust-lang/crates.io-index" 1243 - checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11" 1244 dependencies = [ 1245 "bytes", 1246 "fnv", ··· 1249 1250 [[package]] 1251 name = "http-body" 1252 - version = "0.4.2" 1253 source = "registry+https://github.com/rust-lang/crates.io-index" 1254 - checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9" 1255 dependencies = [ 1256 "bytes", 1257 "http", ··· 1260 1261 [[package]] 1262 name = "httparse" 1263 - version = "1.4.1" 1264 source = "registry+https://github.com/rust-lang/crates.io-index" 1265 - checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68" 1266 1267 [[package]] 1268 name = "httpdate" 1269 - version = "1.0.1" 1270 source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440" 1272 1273 [[package]] 1274 name = "humantime" ··· 1287 1288 [[package]] 1289 name = "humantime-serde" 1290 - version = "1.0.1" 1291 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "ac34a56cfd4acddb469cc7fff187ed5ac36f498ba085caf8bbc725e3ff474058" 1293 dependencies = [ 1294 "humantime 2.1.0", 1295 "serde", ··· 1297 1298 [[package]] 1299 name = "hyper" 1300 - version = "0.14.9" 1301 source = "registry+https://github.com/rust-lang/crates.io-index" 1302 - checksum = "07d6baa1b441335f3ce5098ac421fb6547c46dda735ca1bc6d0153c838f9dd83" 1303 dependencies = [ 1304 "bytes", 1305 "futures-channel", ··· 1320 ] 1321 1322 [[package]] 1323 name = "hyper-tls" 1324 version = "0.5.0" 1325 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1333 ] 1334 1335 [[package]] 1336 name = "idna" 1337 version = "0.2.3" 1338 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1344 ] 1345 1346 [[package]] 1347 name = "indexmap" 1348 - version = "1.7.0" 1349 source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" 1351 dependencies = [ 1352 - "autocfg", 1353 - "hashbrown", 1354 "serde", 1355 ] 1356 1357 [[package]] 1358 name = "inlinable_string" 1359 - version = "0.1.14" 1360 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "3094308123a0e9fd59659ce45e22de9f53fc1d2ac6e1feb9fef988e4f76cad77" 1362 1363 [[package]] 1364 name = "input_buffer" ··· 1371 1372 [[package]] 1373 name = "instant" 1374 - version = "0.1.9" 1375 source = "registry+https://github.com/rust-lang/crates.io-index" 1376 - checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" 1377 dependencies = [ 1378 - "cfg-if 1.0.0", 1379 ] 1380 1381 [[package]] 1382 name = "ipnet" 1383 - version = "2.3.1" 1384 source = "registry+https://github.com/rust-lang/crates.io-index" 1385 - checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9" 1386 1387 [[package]] 1388 name = "ipnetwork" 1389 - version = "0.17.0" 1390 source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "02c3eaab3ac0ede60ffa41add21970a7df7d91772c03383aac6c2c3d53cc716b" 1392 dependencies = [ 1393 "serde", 1394 ] 1395 1396 [[package]] 1397 - name = "itoa" 1398 version = "0.4.7" 1399 source = "registry+https://github.com/rust-lang/crates.io-index" 1400 - checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" 1401 1402 [[package]] 1403 name = "js-sys" 1404 - version = "0.3.51" 1405 source = "registry+https://github.com/rust-lang/crates.io-index" 1406 - checksum = "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062" 1407 dependencies = [ 1408 "wasm-bindgen", 1409 ] 1410 1411 [[package]] 1412 name = "k256" 1413 - version = "0.7.3" 1414 source = "registry+https://github.com/rust-lang/crates.io-index" 1415 - checksum = "4476a0808212a9e81ce802eb1a0cfc60e73aea296553bacc0fac7e1268bc572a" 1416 dependencies = [ 1417 - "cfg-if 1.0.0", 1418 "ecdsa", 1419 "elliptic-curve", 1420 - "sha2 0.9.5", 1421 ] 1422 1423 [[package]] ··· 1427 checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" 1428 1429 [[package]] 1430 name = "lazy_static" 1431 version = "1.4.0" 1432 source = "registry+https://github.com/rust-lang/crates.io-index" 1433 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1434 1435 [[package]] 1436 name = "libc" 1437 - version = "0.2.97" 1438 source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6" 1440 1441 [[package]] 1442 name = "libm" 1443 - version = "0.2.1" 1444 source = "registry+https://github.com/rust-lang/crates.io-index" 1445 - checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a" 1446 1447 [[package]] 1448 name = "lioness" ··· 1451 checksum = "4ae926706ba42c425c9457121178330d75e273df2e82e28b758faf3de3a9acb9" 1452 dependencies = [ 1453 "arrayref", 1454 - "blake2", 1455 "chacha", 1456 "keystream", 1457 ] 1458 1459 [[package]] 1460 name = "lock_api" 1461 - version = "0.4.4" 1462 source = "registry+https://github.com/rust-lang/crates.io-index" 1463 - checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb" 1464 dependencies = [ 1465 "scopeguard", 1466 ] 1467 1468 [[package]] 1469 name = "log" 1470 - version = "0.4.14" 1471 source = "registry+https://github.com/rust-lang/crates.io-index" 1472 - checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 1473 dependencies = [ 1474 - "cfg-if 1.0.0", 1475 ] 1476 1477 [[package]] 1478 name = "loom" 1479 - version = "0.5.1" 1480 source = "registry+https://github.com/rust-lang/crates.io-index" 1481 - checksum = "2111607c723d7857e0d8299d5ce7a0bf4b844d3e44f8de136b13da513eaf8fc4" 1482 dependencies = [ 1483 - "cfg-if 1.0.0", 1484 "generator", 1485 "scoped-tls", 1486 "serde", 1487 "serde_json", 1488 ] 1489 1490 [[package]] 1491 - name = "maplit" 1492 - version = "1.0.2" 1493 source = "registry+https://github.com/rust-lang/crates.io-index" 1494 - checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 1495 1496 [[package]] 1497 - name = "matches" 1498 - version = "0.1.8" 1499 source = "registry+https://github.com/rust-lang/crates.io-index" 1500 - checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 1501 1502 [[package]] 1503 - name = "memchr" 1504 - version = "2.4.0" 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" 1507 - 1508 - [[package]] 1509 - name = "memoffset" 1510 - version = "0.6.4" 1511 - source = "registry+https://github.com/rust-lang/crates.io-index" 1512 - checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" 1513 dependencies = [ 1514 - "autocfg", 1515 ] 1516 1517 [[package]] 1518 - name = "memory_units" 1519 - version = "0.4.0" 1520 source = "registry+https://github.com/rust-lang/crates.io-index" 1521 - checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3" 1522 1523 [[package]] 1524 - name = "mime" 1525 - version = "0.3.16" 1526 source = "registry+https://github.com/rust-lang/crates.io-index" 1527 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1528 1529 [[package]] 1530 - name = "mio" 1531 - version = "0.7.13" 1532 source = "registry+https://github.com/rust-lang/crates.io-index" 1533 - checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16" 1534 dependencies = [ 1535 - "libc", 1536 "log", 1537 - "miow", 1538 - "ntapi", 1539 - "winapi", 1540 ] 1541 1542 [[package]] 1543 - name = "miow" 1544 - version = "0.3.7" 1545 source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 1547 dependencies = [ 1548 - "winapi", 1549 ] 1550 1551 [[package]] 1552 - name = "mixnet-client" 1553 - version = "0.1.0" 1554 - dependencies = [ 1555 - "futures", 1556 - "log", 1557 - "nymsphinx", 1558 - "tokio", 1559 - "tokio-util", 1560 - ] 1561 1562 [[package]] 1563 - name = "mixnet-contract" 1564 - version = "0.1.0" 1565 dependencies = [ 1566 - "cosmwasm-std", 1567 - "schemars", 1568 - "serde", 1569 - "serde_repr", 1570 ] 1571 1572 [[package]] 1573 - name = "mixnode-common" 1574 - version = "0.1.0" 1575 dependencies = [ 1576 - "bytes", 1577 - "crypto", 1578 - "dashmap", 1579 - "futures", 1580 - "humantime-serde", 1581 "log", 1582 - "nonexhaustive-delayqueue", 1583 - "nymsphinx-acknowledgements", 1584 - "nymsphinx-addressing", 1585 - "nymsphinx-forwarding", 1586 - "nymsphinx-framing", 1587 - "nymsphinx-params", 1588 - "nymsphinx-types", 1589 - "rand 0.8.4", 1590 - "serde", 1591 - "tokio", 1592 - "tokio-util", 1593 - "validator-client", 1594 - "version-checker", 1595 ] 1596 1597 [[package]] 1598 name = "multer" 1599 - version = "2.0.0" 1600 source = "registry+https://github.com/rust-lang/crates.io-index" 1601 - checksum = "0fdd568fea4758b30d6423f013f7171e193c34aa97828d1bd9f924fb3af30a8c" 1602 dependencies = [ 1603 "bytes", 1604 - "derive_more", 1605 "encoding_rs", 1606 "futures-util", 1607 "http", 1608 "httparse", 1609 "log", 1610 "mime", 1611 - "spin", 1612 "tokio", 1613 "tokio-util", 1614 - "twoway", 1615 "version_check", 1616 ] 1617 1618 [[package]] 1619 name = "native-tls" 1620 - version = "0.2.7" 1621 source = "registry+https://github.com/rust-lang/crates.io-index" 1622 - checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4" 1623 dependencies = [ 1624 "lazy_static", 1625 "libc", ··· 1634 ] 1635 1636 [[package]] 1637 - name = "nonexhaustive-delayqueue" 1638 - version = "0.1.0" 1639 dependencies = [ 1640 - "tokio", 1641 - "tokio-stream", 1642 - "tokio-util", 1643 ] 1644 1645 [[package]] 1646 name = "ntapi" 1647 - version = "0.3.6" 1648 source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" 1650 dependencies = [ 1651 "winapi", 1652 ] 1653 1654 [[package]] 1655 name = "num-traits" 1656 - version = "0.2.14" 1657 source = "registry+https://github.com/rust-lang/crates.io-index" 1658 - checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 1659 dependencies = [ 1660 - "autocfg", 1661 "libm", 1662 ] 1663 1664 [[package]] 1665 name = "num_cpus" 1666 - version = "1.13.0" 1667 source = "registry+https://github.com/rust-lang/crates.io-index" 1668 - checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" 1669 dependencies = [ 1670 - "hermit-abi", 1671 "libc", 1672 ] 1673 1674 [[package]] 1675 name = "nym-client" 1676 - version = "0.11.0" 1677 dependencies = [ 1678 - "clap", 1679 - "client-core", 1680 - "config", 1681 - "crypto", 1682 "dirs", 1683 - "dotenv", 1684 "futures", 1685 - "gateway-client", 1686 - "gateway-requests", 1687 "log", 1688 - "nymsphinx", 1689 - "pemstore", 1690 "pretty_env_logger", 1691 "rand 0.7.3", 1692 "serde", 1693 "serde_json", 1694 - "sled", 1695 "tokio", 1696 - "tokio-tungstenite", 1697 - "topology", 1698 "url", 1699 - "validator-client", 1700 - "version-checker", 1701 - "websocket-requests", 1702 ] 1703 1704 [[package]] 1705 - name = "nym-client-wasm" 1706 - version = "0.11.0" 1707 dependencies = [ 1708 - "console_error_panic_hook", 1709 - "crypto", 1710 "futures", 1711 - "gateway-client", 1712 - "js-sys", 1713 - "nymsphinx", 1714 "rand 0.7.3", 1715 "serde", 1716 - "topology", 1717 - "validator-client", 1718 "wasm-bindgen", 1719 "wasm-bindgen-futures", 1720 - "wasm-bindgen-test", 1721 "wasm-utils", 1722 - "wee_alloc", 1723 ] 1724 1725 [[package]] 1726 name = "nym-gateway" 1727 - version = "0.11.0" 1728 dependencies = [ 1729 - "clap", 1730 - "config", 1731 - "crypto", 1732 - "dashmap", 1733 "dirs", 1734 - "dotenv", 1735 "futures", 1736 - "gateway-requests", 1737 "humantime-serde", 1738 "log", 1739 - "mixnet-client", 1740 - "mixnode-common", 1741 - "nymsphinx", 1742 - "pemstore", 1743 "pretty_env_logger", 1744 "rand 0.7.3", 1745 "serde", 1746 - "sled", 1747 "tokio", 1748 "tokio-stream", 1749 - "tokio-tungstenite", 1750 "tokio-util", 1751 - "validator-client", 1752 - "version-checker", 1753 ] 1754 1755 [[package]] 1756 name = "nym-mixnode" 1757 - version = "0.11.0" 1758 dependencies = [ 1759 - "bs58 0.4.0", 1760 - "clap", 1761 "colored", 1762 - "config", 1763 - "crypto", 1764 "dirs", 1765 - "dotenv", 1766 "futures", 1767 "humantime-serde", 1768 "log", 1769 - "mixnet-client", 1770 - "mixnode-common", 1771 - "nonexhaustive-delayqueue", 1772 - "nymsphinx", 1773 - "pemstore", 1774 "pretty_env_logger", 1775 "rand 0.7.3", 1776 "rocket", 1777 "serde", 1778 - "serial_test", 1779 "tokio", 1780 "tokio-util", 1781 "toml", 1782 - "topology", 1783 - "validator-client", 1784 - "version-checker", 1785 ] 1786 1787 [[package]] 1788 name = "nym-network-requester" 1789 - version = "0.11.0" 1790 dependencies = [ 1791 - "clap", 1792 "dirs", 1793 "futures", 1794 - "ipnetwork", 1795 "log", 1796 - "nymsphinx", 1797 - "ordered-buffer", 1798 "pretty_env_logger", 1799 - "proxy-helpers", 1800 "publicsuffix", 1801 "rand 0.7.3", 1802 - "socks5-requests", 1803 "tokio", 1804 - "tokio-tungstenite", 1805 - "websocket-requests", 1806 ] 1807 1808 [[package]] 1809 name = "nym-socks5-client" 1810 - version = "0.11.0" 1811 dependencies = [ 1812 - "clap", 1813 - "client-core", 1814 - "config", 1815 - "crypto", 1816 "dirs", 1817 - "dotenv", 1818 "futures", 1819 - "gateway-client", 1820 - "gateway-requests", 1821 "log", 1822 - "nymsphinx", 1823 - "ordered-buffer", 1824 - "pemstore", 1825 "pin-project", 1826 - "pretty_env_logger", 1827 - "proxy-helpers", 1828 "rand 0.7.3", 1829 "serde", 1830 - "snafu", 1831 - "socks5-requests", 1832 "tokio", 1833 - "topology", 1834 - "validator-client", 1835 - "version-checker", 1836 ] 1837 1838 [[package]] 1839 - name = "nymsphinx" 1840 version = "0.1.0" 1841 dependencies = [ 1842 - "crypto", 1843 - "mixnet-contract", 1844 - "nymsphinx-acknowledgements", 1845 - "nymsphinx-addressing", 1846 - "nymsphinx-anonymous-replies", 1847 - "nymsphinx-chunking", 1848 - "nymsphinx-cover", 1849 - "nymsphinx-forwarding", 1850 - "nymsphinx-framing", 1851 - "nymsphinx-params", 1852 - "nymsphinx-types", 1853 "rand 0.7.3", 1854 - "rand_distr 0.3.0", 1855 "tokio", 1856 - "topology", 1857 ] 1858 1859 [[package]] 1860 - name = "nymsphinx-acknowledgements" 1861 version = "0.1.0" 1862 dependencies = [ 1863 - "crypto", 1864 - "nymsphinx-addressing", 1865 - "nymsphinx-params", 1866 - "nymsphinx-types", 1867 - "pemstore", 1868 "rand 0.7.3", 1869 - "topology", 1870 ] 1871 1872 [[package]] 1873 - name = "nymsphinx-addressing" 1874 version = "0.1.0" 1875 dependencies = [ 1876 - "crypto", 1877 - "nymsphinx-types", 1878 "rand 0.7.3", 1879 "serde", 1880 ] 1881 1882 [[package]] 1883 - name = "nymsphinx-anonymous-replies" 1884 version = "0.1.0" 1885 dependencies = [ 1886 - "bs58 0.4.0", 1887 - "crypto", 1888 - "nymsphinx-addressing", 1889 - "nymsphinx-params", 1890 - "nymsphinx-types", 1891 "rand 0.7.3", 1892 "serde", 1893 - "topology", 1894 ] 1895 1896 [[package]] 1897 - name = "nymsphinx-chunking" 1898 version = "0.1.0" 1899 dependencies = [ 1900 "log", 1901 - "nymsphinx-addressing", 1902 - "nymsphinx-params", 1903 - "nymsphinx-types", 1904 "rand 0.7.3", 1905 ] 1906 1907 [[package]] 1908 - name = "nymsphinx-cover" 1909 version = "0.1.0" 1910 dependencies = [ 1911 - "crypto", 1912 - "nymsphinx-acknowledgements", 1913 - "nymsphinx-addressing", 1914 - "nymsphinx-chunking", 1915 - "nymsphinx-forwarding", 1916 - "nymsphinx-params", 1917 - "nymsphinx-types", 1918 "rand 0.7.3", 1919 - "topology", 1920 ] 1921 1922 [[package]] 1923 - name = "nymsphinx-forwarding" 1924 version = "0.1.0" 1925 dependencies = [ 1926 - "nymsphinx-addressing", 1927 - "nymsphinx-params", 1928 - "nymsphinx-types", 1929 ] 1930 1931 [[package]] 1932 - name = "nymsphinx-framing" 1933 version = "0.1.0" 1934 dependencies = [ 1935 "bytes", 1936 - "nymsphinx-params", 1937 - "nymsphinx-types", 1938 "tokio-util", 1939 ] 1940 1941 [[package]] 1942 - name = "nymsphinx-params" 1943 version = "0.1.0" 1944 dependencies = [ 1945 - "crypto", 1946 - "nymsphinx-types", 1947 ] 1948 1949 [[package]] 1950 - name = "nymsphinx-types" 1951 version = "0.1.0" 1952 dependencies = [ 1953 - "sphinx", 1954 ] 1955 1956 [[package]] 1957 name = "once_cell" 1958 - version = "1.8.0" 1959 source = "registry+https://github.com/rust-lang/crates.io-index" 1960 - checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" 1961 1962 [[package]] 1963 name = "opaque-debug" ··· 1973 1974 [[package]] 1975 name = "openssl" 1976 - version = "0.10.35" 1977 source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - checksum = "549430950c79ae24e6d02e0b7404534ecf311d94cc9f861e9e4020187d13d885" 1979 dependencies = [ 1980 "bitflags", 1981 - "cfg-if 1.0.0", 1982 "foreign-types", 1983 "libc", 1984 "once_cell", 1985 "openssl-sys", 1986 ] 1987 1988 [[package]] 1989 name = "openssl-probe" 1990 - version = "0.1.4" 1991 source = "registry+https://github.com/rust-lang/crates.io-index" 1992 - checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" 1993 1994 [[package]] 1995 name = "openssl-sys" 1996 - version = "0.9.65" 1997 source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "7a7907e3bfa08bb85105209cdfcb6c63d109f8f6c1ed6ca318fff5c1853fbc1d" 1999 dependencies = [ 2000 - "autocfg", 2001 "cc", 2002 "libc", 2003 "pkg-config", 2004 "vcpkg", 2005 ] 2006 2007 [[package]] 2008 - name = "ordered-buffer" 2009 - version = "0.1.0" 2010 dependencies = [ 2011 - "log", 2012 ] 2013 2014 [[package]] 2015 name = "parking_lot" 2016 - version = "0.11.1" 2017 source = "registry+https://github.com/rust-lang/crates.io-index" 2018 - checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" 2019 dependencies = [ 2020 "instant", 2021 "lock_api", 2022 - "parking_lot_core", 2023 ] 2024 2025 [[package]] 2026 name = "parking_lot_core" 2027 - version = "0.8.3" 2028 source = "registry+https://github.com/rust-lang/crates.io-index" 2029 - checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" 2030 dependencies = [ 2031 - "cfg-if 1.0.0", 2032 "instant", 2033 "libc", 2034 - "redox_syscall", 2035 "smallvec", 2036 "winapi", 2037 ] 2038 2039 [[package]] 2040 name = "pear" 2041 - version = "0.2.3" 2042 source = "registry+https://github.com/rust-lang/crates.io-index" 2043 - checksum = "15e44241c5e4c868e3eaa78b7c1848cadd6344ed4f54d029832d32b415a58702" 2044 dependencies = [ 2045 "inlinable_string", 2046 "pear_codegen", ··· 2049 2050 [[package]] 2051 name = "pear_codegen" 2052 - version = "0.2.3" 2053 source = "registry+https://github.com/rust-lang/crates.io-index" 2054 - checksum = "82a5ca643c2303ecb740d506539deba189e16f2754040a42901cd8105d0282d0" 2055 dependencies = [ 2056 "proc-macro2", 2057 - "proc-macro2-diagnostics", 2058 "quote", 2059 - "syn", 2060 ] 2061 2062 [[package]] 2063 name = "pem" 2064 version = "0.8.3" 2065 source = "registry+https://github.com/rust-lang/crates.io-index" 2066 checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb" 2067 dependencies = [ 2068 - "base64", 2069 "once_cell", 2070 "regex", 2071 ] 2072 2073 [[package]] 2074 - name = "pemstore" 2075 - version = "0.1.0" 2076 - dependencies = [ 2077 - "pem", 2078 - ] 2079 - 2080 - [[package]] 2081 name = "percent-encoding" 2082 - version = "2.1.0" 2083 source = "registry+https://github.com/rust-lang/crates.io-index" 2084 - checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 2085 2086 [[package]] 2087 name = "pest" 2088 - version = "2.1.3" 2089 source = "registry+https://github.com/rust-lang/crates.io-index" 2090 - checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" 2091 dependencies = [ 2092 "ucd-trie", 2093 ] 2094 2095 [[package]] 2096 name = "pest_derive" 2097 - version = "2.1.0" 2098 source = "registry+https://github.com/rust-lang/crates.io-index" 2099 - checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0" 2100 dependencies = [ 2101 "pest", 2102 "pest_generator", ··· 2104 2105 [[package]] 2106 name = "pest_generator" 2107 - version = "2.1.3" 2108 source = "registry+https://github.com/rust-lang/crates.io-index" 2109 - checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55" 2110 dependencies = [ 2111 "pest", 2112 "pest_meta", 2113 "proc-macro2", 2114 "quote", 2115 - "syn", 2116 ] 2117 2118 [[package]] 2119 name = "pest_meta" 2120 - version = "2.1.3" 2121 source = "registry+https://github.com/rust-lang/crates.io-index" 2122 - checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d" 2123 dependencies = [ 2124 - "maplit", 2125 "pest", 2126 - "sha-1 0.8.2", 2127 ] 2128 2129 [[package]] 2130 name = "pin-project" 2131 - version = "1.0.7" 2132 source = "registry+https://github.com/rust-lang/crates.io-index" 2133 - checksum = "c7509cc106041c40a4518d2af7a61530e1eed0e6285296a3d8c5472806ccc4a4" 2134 dependencies = [ 2135 "pin-project-internal", 2136 ] 2137 2138 [[package]] 2139 name = "pin-project-internal" 2140 - version = "1.0.7" 2141 source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "48c950132583b500556b1efd71d45b319029f2b71518d979fcc208e16b42426f" 2143 dependencies = [ 2144 "proc-macro2", 2145 "quote", 2146 - "syn", 2147 ] 2148 2149 [[package]] 2150 name = "pin-project-lite" 2151 - version = "0.2.7" 2152 source = "registry+https://github.com/rust-lang/crates.io-index" 2153 - checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" 2154 2155 [[package]] 2156 name = "pin-utils" ··· 2160 2161 [[package]] 2162 name = "pkcs8" 2163 - version = "0.3.3" 2164 source = "registry+https://github.com/rust-lang/crates.io-index" 2165 - checksum = "b4839a901843f3942576e65857f0ebf2e190ef7024d3c62a94099ba3f819ad1d" 2166 dependencies = [ 2167 "der", 2168 ] 2169 2170 [[package]] 2171 name = "pkg-config" 2172 - version = "0.3.19" 2173 source = "registry+https://github.com/rust-lang/crates.io-index" 2174 - checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" 2175 2176 [[package]] 2177 name = "ppv-lite86" 2178 - version = "0.2.10" 2179 source = "registry+https://github.com/rust-lang/crates.io-index" 2180 - checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" 2181 2182 [[package]] 2183 name = "pretty_env_logger" ··· 2185 source = "registry+https://github.com/rust-lang/crates.io-index" 2186 checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d" 2187 dependencies = [ 2188 - "env_logger", 2189 "log", 2190 ] 2191 2192 [[package]] 2193 - name = "proc-macro-hack" 2194 - version = "0.5.19" 2195 source = "registry+https://github.com/rust-lang/crates.io-index" 2196 - checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2197 2198 [[package]] 2199 - name = "proc-macro-nested" 2200 - version = "0.1.7" 2201 source = "registry+https://github.com/rust-lang/crates.io-index" 2202 - checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" 2203 2204 [[package]] 2205 name = "proc-macro2" 2206 - version = "1.0.27" 2207 source = "registry+https://github.com/rust-lang/crates.io-index" 2208 - checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038" 2209 dependencies = [ 2210 - "unicode-xid", 2211 ] 2212 2213 [[package]] ··· 2218 dependencies = [ 2219 "proc-macro2", 2220 "quote", 2221 - "syn", 2222 "version_check", 2223 "yansi", 2224 ] 2225 2226 [[package]] 2227 - name = "proxy-helpers" 2228 - version = "0.1.0" 2229 dependencies = [ 2230 "bytes", 2231 - "futures", 2232 - "log", 2233 - "ordered-buffer", 2234 - "socks5-requests", 2235 - "tokio", 2236 - "tokio-test", 2237 - "tokio-util", 2238 ] 2239 2240 [[package]] ··· 2243 source = "registry+https://github.com/rust-lang/crates.io-index" 2244 checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f" 2245 dependencies = [ 2246 - "idna", 2247 "native-tls", 2248 "url", 2249 ] ··· 2262 2263 [[package]] 2264 name = "quote" 2265 - version = "1.0.9" 2266 source = "registry+https://github.com/rust-lang/crates.io-index" 2267 - checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 2268 dependencies = [ 2269 "proc-macro2", 2270 ] 2271 2272 [[package]] 2273 name = "radium" 2274 - version = "0.3.0" 2275 source = "registry+https://github.com/rust-lang/crates.io-index" 2276 - checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac" 2277 2278 [[package]] 2279 name = "rand" ··· 2290 2291 [[package]] 2292 name = "rand" 2293 - version = "0.8.4" 2294 source = "registry+https://github.com/rust-lang/crates.io-index" 2295 - checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" 2296 dependencies = [ 2297 "libc", 2298 "rand_chacha 0.3.1", 2299 - "rand_core 0.6.3", 2300 - "rand_hc 0.3.1", 2301 ] 2302 2303 [[package]] ··· 2317 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2318 dependencies = [ 2319 "ppv-lite86", 2320 - "rand_core 0.6.3", 2321 ] 2322 2323 [[package]] 2324 name = "rand_core" 2325 version = "0.5.1" 2326 source = "registry+https://github.com/rust-lang/crates.io-index" 2327 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" ··· 2331 2332 [[package]] 2333 name = "rand_core" 2334 - version = "0.6.3" 2335 source = "registry+https://github.com/rust-lang/crates.io-index" 2336 - checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2337 dependencies = [ 2338 - "getrandom 0.2.3", 2339 ] 2340 2341 [[package]] 2342 name = "rand_distr" 2343 - version = "0.2.2" 2344 source = "registry+https://github.com/rust-lang/crates.io-index" 2345 - checksum = "96977acbdd3a6576fb1d27391900035bf3863d4a16422973a409b488cf29ffb2" 2346 dependencies = [ 2347 "rand 0.7.3", 2348 ] 2349 2350 [[package]] 2351 - name = "rand_distr" 2352 - version = "0.3.0" 2353 source = "registry+https://github.com/rust-lang/crates.io-index" 2354 - checksum = "c9e9532ada3929fb8b2e9dbe28d1e06c9b2cc65813f074fcb6bd5fbefeff9d56" 2355 dependencies = [ 2356 - "num-traits", 2357 - "rand 0.7.3", 2358 ] 2359 2360 [[package]] ··· 2367 ] 2368 2369 [[package]] 2370 - name = "rand_hc" 2371 version = "0.3.1" 2372 source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" 2374 dependencies = [ 2375 - "rand_core 0.6.3", 2376 ] 2377 2378 [[package]] 2379 name = "redox_syscall" 2380 - version = "0.2.9" 2381 source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee" 2383 dependencies = [ 2384 "bitflags", 2385 ] 2386 2387 [[package]] 2388 name = "redox_users" 2389 - version = "0.4.0" 2390 source = "registry+https://github.com/rust-lang/crates.io-index" 2391 - checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" 2392 dependencies = [ 2393 - "getrandom 0.2.3", 2394 - "redox_syscall", 2395 ] 2396 2397 [[package]] 2398 name = "ref-cast" 2399 - version = "1.0.6" 2400 source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - checksum = "300f2a835d808734ee295d45007adacb9ebb29dd3ae2424acfa17930cae541da" 2402 dependencies = [ 2403 "ref-cast-impl", 2404 ] 2405 2406 [[package]] 2407 name = "ref-cast-impl" 2408 - version = "1.0.6" 2409 source = "registry+https://github.com/rust-lang/crates.io-index" 2410 - checksum = "4c38e3aecd2b21cb3959637b883bb3714bc7e43f0268b9a29d3743ee3e55cdd2" 2411 dependencies = [ 2412 "proc-macro2", 2413 "quote", 2414 - "syn", 2415 ] 2416 2417 [[package]] 2418 name = "regex" 2419 - version = "1.5.4" 2420 source = "registry+https://github.com/rust-lang/crates.io-index" 2421 - checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" 2422 dependencies = [ 2423 "aho-corasick", 2424 "memchr", 2425 - "regex-syntax", 2426 ] 2427 2428 [[package]] 2429 name = "regex-syntax" 2430 - version = "0.6.25" 2431 source = "registry+https://github.com/rust-lang/crates.io-index" 2432 - checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 2433 2434 [[package]] 2435 - name = "remove_dir_all" 2436 - version = "0.5.3" 2437 source = "registry+https://github.com/rust-lang/crates.io-index" 2438 - checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2439 - dependencies = [ 2440 - "winapi", 2441 - ] 2442 2443 [[package]] 2444 name = "reqwest" 2445 - version = "0.11.4" 2446 source = "registry+https://github.com/rust-lang/crates.io-index" 2447 - checksum = "246e9f61b9bb77df069a947682be06e31ac43ea37862e244a69f177694ea6d22" 2448 dependencies = [ 2449 - "base64", 2450 "bytes", 2451 "encoding_rs", 2452 "futures-core", 2453 "futures-util", 2454 "http", 2455 "http-body", 2456 "hyper", 2457 "hyper-tls", 2458 "ipnet", 2459 "js-sys", 2460 - "lazy_static", 2461 "log", 2462 "mime", 2463 "native-tls", 2464 "percent-encoding", 2465 "pin-project-lite", 2466 "serde", ··· 2468 "serde_urlencoded", 2469 "tokio", 2470 "tokio-native-tls", 2471 "url", 2472 "wasm-bindgen", 2473 "wasm-bindgen-futures", ··· 2476 ] 2477 2478 [[package]] 2479 name = "rocket" 2480 - version = "0.5.0-rc.1" 2481 source = "registry+https://github.com/rust-lang/crates.io-index" 2482 - checksum = "0a71c18c42a0eb15bf3816831caf0dad11e7966f2a41aaf486a701979c4dd1f2" 2483 dependencies = [ 2484 "async-stream", 2485 "async-trait", ··· 2495 "memchr", 2496 "multer", 2497 "num_cpus", 2498 - "parking_lot", 2499 "pin-project-lite", 2500 - "rand 0.8.4", 2501 "ref-cast", 2502 "rocket_codegen", 2503 "rocket_http", ··· 2505 "serde_json", 2506 "state", 2507 "tempfile", 2508 - "time", 2509 "tokio", 2510 "tokio-stream", 2511 "tokio-util", ··· 2516 2517 [[package]] 2518 name = "rocket_codegen" 2519 - version = "0.5.0-rc.1" 2520 source = "registry+https://github.com/rust-lang/crates.io-index" 2521 - checksum = "66f5fa462f7eb958bba8710c17c5d774bbbd59809fa76fb1957af7e545aea8bb" 2522 dependencies = [ 2523 "devise", 2524 "glob", ··· 2526 "proc-macro2", 2527 "quote", 2528 "rocket_http", 2529 - "syn", 2530 "unicode-xid", 2531 ] 2532 2533 [[package]] 2534 name = "rocket_http" 2535 - version = "0.5.0-rc.1" 2536 source = "registry+https://github.com/rust-lang/crates.io-index" 2537 - checksum = "23c8b7d512d2fcac2316ebe590cde67573844b99e6cc9ee0f53375fa16e25ebd" 2538 dependencies = [ 2539 "cookie", 2540 "either", 2541 "http", 2542 "hyper", 2543 "indexmap", 2544 "log", 2545 "memchr", 2546 - "mime", 2547 - "parking_lot", 2548 "pear", 2549 "percent-encoding", 2550 "pin-project-lite", ··· 2553 "smallvec", 2554 "stable-pattern", 2555 "state", 2556 - "time", 2557 "tokio", 2558 "uncased", 2559 ] 2560 2561 [[package]] 2562 name = "rustc_version" 2563 version = "0.2.3" 2564 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2568 ] 2569 2570 [[package]] 2571 name = "rustversion" 2572 - version = "1.0.5" 2573 source = "registry+https://github.com/rust-lang/crates.io-index" 2574 - checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088" 2575 2576 [[package]] 2577 name = "ryu" 2578 - version = "1.0.5" 2579 source = "registry+https://github.com/rust-lang/crates.io-index" 2580 - checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 2581 2582 [[package]] 2583 name = "schannel" 2584 - version = "0.1.19" 2585 source = "registry+https://github.com/rust-lang/crates.io-index" 2586 - checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" 2587 dependencies = [ 2588 - "lazy_static", 2589 - "winapi", 2590 ] 2591 2592 [[package]] 2593 name = "schemars" 2594 - version = "0.8.3" 2595 source = "registry+https://github.com/rust-lang/crates.io-index" 2596 - checksum = "bc6ab463ae35acccb5cba66c0084c985257b797d288b6050cc2f6ac1b266cb78" 2597 dependencies = [ 2598 "dyn-clone", 2599 "schemars_derive", 2600 "serde", 2601 "serde_json", ··· 2603 2604 [[package]] 2605 name = "schemars_derive" 2606 - version = "0.8.3" 2607 source = "registry+https://github.com/rust-lang/crates.io-index" 2608 - checksum = "902fdfbcf871ae8f653bddf4b2c05905ddaabc08f69d32a915787e3be0d31356" 2609 dependencies = [ 2610 "proc-macro2", 2611 "quote", 2612 "serde_derive_internals", 2613 - "syn", 2614 ] 2615 2616 [[package]] 2617 name = "scoped-tls" 2618 - version = "1.0.0" 2619 source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2621 2622 [[package]] 2623 name = "scopeguard" ··· 2626 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2627 2628 [[package]] 2629 name = "security-framework" 2630 - version = "2.3.1" 2631 source = "registry+https://github.com/rust-lang/crates.io-index" 2632 - checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467" 2633 dependencies = [ 2634 "bitflags", 2635 "core-foundation", ··· 2640 2641 [[package]] 2642 name = "security-framework-sys" 2643 - version = "2.3.0" 2644 source = "registry+https://github.com/rust-lang/crates.io-index" 2645 - checksum = "7e4effb91b4b8b6fb7732e670b6cee160278ff8e6bf485c7805d9e319d76e284" 2646 dependencies = [ 2647 "core-foundation-sys", 2648 "libc", ··· 2667 ] 2668 2669 [[package]] 2670 name = "semver-parser" 2671 version = "0.7.0" 2672 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2683 2684 [[package]] 2685 name = "serde" 2686 - version = "1.0.126" 2687 source = "registry+https://github.com/rust-lang/crates.io-index" 2688 - checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03" 2689 dependencies = [ 2690 "serde_derive", 2691 ] 2692 2693 [[package]] 2694 name = "serde-json-wasm" 2695 - version = "0.3.1" 2696 source = "registry+https://github.com/rust-lang/crates.io-index" 2697 - checksum = "50eef3672ec8fa45f3457fd423ba131117786784a895548021976117c1ded449" 2698 dependencies = [ 2699 "serde", 2700 ] 2701 2702 [[package]] 2703 name = "serde_derive" 2704 - version = "1.0.126" 2705 source = "registry+https://github.com/rust-lang/crates.io-index" 2706 - checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43" 2707 dependencies = [ 2708 "proc-macro2", 2709 "quote", 2710 - "syn", 2711 ] 2712 2713 [[package]] 2714 name = "serde_derive_internals" 2715 - version = "0.25.0" 2716 source = "registry+https://github.com/rust-lang/crates.io-index" 2717 - checksum = "1dbab34ca63057a1f15280bdf3c39f2b1eb1b54c17e98360e511637aef7418c6" 2718 dependencies = [ 2719 "proc-macro2", 2720 "quote", 2721 - "syn", 2722 ] 2723 2724 [[package]] 2725 name = "serde_json" 2726 - version = "1.0.64" 2727 source = "registry+https://github.com/rust-lang/crates.io-index" 2728 - checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" 2729 dependencies = [ 2730 "itoa", 2731 "ryu", ··· 2734 2735 [[package]] 2736 name = "serde_repr" 2737 - version = "0.1.7" 2738 source = "registry+https://github.com/rust-lang/crates.io-index" 2739 - checksum = "98d0516900518c29efa217c298fa1f4e6c6ffc85ae29fd7f4ee48f176e1a9ed5" 2740 dependencies = [ 2741 "proc-macro2", 2742 "quote", 2743 - "syn", 2744 ] 2745 2746 [[package]] 2747 name = "serde_urlencoded" 2748 - version = "0.7.0" 2749 source = "registry+https://github.com/rust-lang/crates.io-index" 2750 - checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" 2751 dependencies = [ 2752 "form_urlencoded", 2753 "itoa", ··· 2756 ] 2757 2758 [[package]] 2759 - name = "serial_test" 2760 - version = "0.5.1" 2761 source = "registry+https://github.com/rust-lang/crates.io-index" 2762 - checksum = "e0bccbcf40c8938196944a3da0e133e031a33f4d6b72db3bda3cc556e361905d" 2763 dependencies = [ 2764 - "lazy_static", 2765 - "parking_lot", 2766 - "serial_test_derive", 2767 ] 2768 2769 [[package]] 2770 - name = "serial_test_derive" 2771 - version = "0.5.1" 2772 source = "registry+https://github.com/rust-lang/crates.io-index" 2773 - checksum = "b2acd6defeddb41eb60bb468f8825d0cfd0c2a76bc03bfd235b6a1dc4f6a1ad5" 2774 dependencies = [ 2775 - "proc-macro2", 2776 - "quote", 2777 - "syn", 2778 ] 2779 2780 [[package]] 2781 - name = "sha-1" 2782 - version = "0.8.2" 2783 source = "registry+https://github.com/rust-lang/crates.io-index" 2784 - checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" 2785 dependencies = [ 2786 - "block-buffer 0.7.3", 2787 - "digest 0.8.1", 2788 - "fake-simd", 2789 - "opaque-debug 0.2.3", 2790 ] 2791 2792 [[package]] 2793 - name = "sha-1" 2794 - version = "0.9.6" 2795 source = "registry+https://github.com/rust-lang/crates.io-index" 2796 - checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16" 2797 dependencies = [ 2798 "block-buffer 0.9.0", 2799 - "cfg-if 1.0.0", 2800 "cpufeatures", 2801 "digest 0.9.0", 2802 "opaque-debug 0.3.0", 2803 ] 2804 2805 [[package]] 2806 - name = "sha1" 2807 - version = "0.6.0" 2808 - source = "registry+https://github.com/rust-lang/crates.io-index" 2809 - checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" 2810 - 2811 - [[package]] 2812 name = "sha2" 2813 - version = "0.8.2" 2814 source = "registry+https://github.com/rust-lang/crates.io-index" 2815 - checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" 2816 dependencies = [ 2817 - "block-buffer 0.7.3", 2818 - "digest 0.8.1", 2819 - "fake-simd", 2820 - "opaque-debug 0.2.3", 2821 ] 2822 2823 [[package]] 2824 - name = "sha2" 2825 - version = "0.9.5" 2826 source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "b362ae5752fd2137731f9fa25fd4d9058af34666ca1966fb969119cc35719f12" 2828 dependencies = [ 2829 "block-buffer 0.9.0", 2830 - "cfg-if 1.0.0", 2831 - "cpufeatures", 2832 "digest 0.9.0", 2833 "opaque-debug 0.3.0", 2834 ] 2835 2836 [[package]] 2837 name = "signal-hook-registry" 2838 - version = "1.4.0" 2839 source = "registry+https://github.com/rust-lang/crates.io-index" 2840 - checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 2841 dependencies = [ 2842 "libc", 2843 ] 2844 2845 [[package]] 2846 name = "signature" 2847 - version = "1.2.2" 2848 source = "registry+https://github.com/rust-lang/crates.io-index" 2849 - checksum = "29f060a7d147e33490ec10da418795238fd7545bba241504d6b31a409f2e6210" 2850 dependencies = [ 2851 "digest 0.9.0", 2852 - "rand_core 0.5.1", 2853 ] 2854 2855 [[package]] 2856 name = "slab" 2857 - version = "0.4.3" 2858 - source = "registry+https://github.com/rust-lang/crates.io-index" 2859 - checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527" 2860 - 2861 - [[package]] 2862 - name = "sled" 2863 - version = "0.34.6" 2864 source = "registry+https://github.com/rust-lang/crates.io-index" 2865 - checksum = "1d0132f3e393bcb7390c60bb45769498cf4550bcb7a21d7f95c02b69f6362cdc" 2866 dependencies = [ 2867 - "crc32fast", 2868 - "crossbeam-epoch", 2869 - "crossbeam-utils", 2870 - "fs2", 2871 - "fxhash", 2872 - "libc", 2873 - "log", 2874 - "parking_lot", 2875 ] 2876 2877 [[package]] 2878 name = "smallvec" 2879 - version = "1.6.1" 2880 source = "registry+https://github.com/rust-lang/crates.io-index" 2881 - checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" 2882 2883 [[package]] 2884 name = "snafu" 2885 - version = "0.6.10" 2886 source = "registry+https://github.com/rust-lang/crates.io-index" 2887 - checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7" 2888 dependencies = [ 2889 "doc-comment", 2890 "snafu-derive", ··· 2892 2893 [[package]] 2894 name = "snafu-derive" 2895 - version = "0.6.10" 2896 source = "registry+https://github.com/rust-lang/crates.io-index" 2897 - checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b" 2898 dependencies = [ 2899 "proc-macro2", 2900 "quote", 2901 - "syn", 2902 ] 2903 2904 [[package]] 2905 name = "socket2" 2906 - version = "0.4.0" 2907 source = "registry+https://github.com/rust-lang/crates.io-index" 2908 - checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2" 2909 dependencies = [ 2910 "libc", 2911 "winapi", 2912 ] 2913 2914 [[package]] 2915 - name = "socks5-requests" 2916 - version = "0.1.0" 2917 - dependencies = [ 2918 - "nymsphinx-addressing", 2919 - "ordered-buffer", 2920 - ] 2921 - 2922 - [[package]] 2923 - name = "sphinx" 2924 version = "0.1.0" 2925 - source = "git+https://github.com/nymtech/sphinx?rev=283dcc77dec8ee9ed3bed58c2b878e9c18320723#283dcc77dec8ee9ed3bed58c2b878e9c18320723" 2926 dependencies = [ 2927 - "aes-ctr 0.3.0", 2928 "arrayref", 2929 - "blake2", 2930 - "bs58 0.3.1", 2931 "byteorder", 2932 "chacha", 2933 "curve25519-dalek", 2934 - "hkdf 0.8.0", 2935 - "hmac 0.7.1", 2936 "lioness", 2937 "log", 2938 "rand 0.7.3", 2939 - "rand_distr 0.2.2", 2940 - "sha2 0.8.2", 2941 ] 2942 2943 [[package]] 2944 name = "spin" 2945 - version = "0.9.1" 2946 source = "registry+https://github.com/rust-lang/crates.io-index" 2947 - checksum = "f5fdd7196b4ae35a111c6dc97f9cc152ca3ea8ad744f7cb46a9f27b3ef8f2f54" 2948 2949 [[package]] 2950 - name = "stable-pattern" 2951 - version = "0.1.0" 2952 source = "registry+https://github.com/rust-lang/crates.io-index" 2953 - checksum = "4564168c00635f88eaed410d5efa8131afa8d8699a612c80c455a0ba05c21045" 2954 dependencies = [ 2955 - "memchr", 2956 ] 2957 2958 [[package]] 2959 - name = "standback" 2960 - version = "0.2.17" 2961 source = "registry+https://github.com/rust-lang/crates.io-index" 2962 - checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" 2963 dependencies = [ 2964 - "version_check", 2965 ] 2966 2967 [[package]] 2968 - name = "state" 2969 - version = "0.5.2" 2970 source = "registry+https://github.com/rust-lang/crates.io-index" 2971 - checksum = "87cf4f5369e6d3044b5e365c9690f451516ac8f0954084622b49ea3fde2f6de5" 2972 dependencies = [ 2973 - "loom", 2974 ] 2975 2976 [[package]] 2977 - name = "static_assertions" 2978 - version = "1.1.0" 2979 source = "registry+https://github.com/rust-lang/crates.io-index" 2980 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2981 2982 [[package]] 2983 - name = "stdweb" 2984 - version = "0.4.20" 2985 source = "registry+https://github.com/rust-lang/crates.io-index" 2986 - checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" 2987 dependencies = [ 2988 - "discard", 2989 - "rustc_version", 2990 - "stdweb-derive", 2991 - "stdweb-internal-macros", 2992 - "stdweb-internal-runtime", 2993 - "wasm-bindgen", 2994 ] 2995 2996 [[package]] 2997 - name = "stdweb-derive" 2998 - version = "0.5.3" 2999 source = "registry+https://github.com/rust-lang/crates.io-index" 3000 - checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" 3001 dependencies = [ 3002 "proc-macro2", 3003 "quote", 3004 - "serde", 3005 - "serde_derive", 3006 - "syn", 3007 ] 3008 3009 [[package]] 3010 - name = "stdweb-internal-macros" 3011 - version = "0.2.9" 3012 source = "registry+https://github.com/rust-lang/crates.io-index" 3013 - checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" 3014 dependencies = [ 3015 - "base-x", 3016 "proc-macro2", 3017 "quote", 3018 - "serde", 3019 - "serde_derive", 3020 - "serde_json", 3021 - "sha1", 3022 - "syn", 3023 ] 3024 3025 [[package]] 3026 - name = "stdweb-internal-runtime" 3027 - version = "0.1.5" 3028 source = "registry+https://github.com/rust-lang/crates.io-index" 3029 - checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" 3030 3031 [[package]] 3032 - name = "stream-cipher" 3033 - version = "0.3.2" 3034 source = "registry+https://github.com/rust-lang/crates.io-index" 3035 - checksum = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" 3036 dependencies = [ 3037 - "generic-array 0.12.4", 3038 ] 3039 3040 [[package]] 3041 name = "strsim" 3042 - version = "0.8.0" 3043 source = "registry+https://github.com/rust-lang/crates.io-index" 3044 - checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 3045 3046 [[package]] 3047 name = "subtle" ··· 3051 3052 [[package]] 3053 name = "subtle" 3054 - version = "2.4.0" 3055 source = "registry+https://github.com/rust-lang/crates.io-index" 3056 - checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2" 3057 3058 [[package]] 3059 name = "syn" 3060 - version = "1.0.73" 3061 source = "registry+https://github.com/rust-lang/crates.io-index" 3062 - checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7" 3063 dependencies = [ 3064 "proc-macro2", 3065 "quote", 3066 - "unicode-xid", 3067 ] 3068 3069 [[package]] 3070 - name = "synstructure" 3071 - version = "0.12.4" 3072 source = "registry+https://github.com/rust-lang/crates.io-index" 3073 - checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701" 3074 dependencies = [ 3075 "proc-macro2", 3076 "quote", 3077 - "syn", 3078 - "unicode-xid", 3079 ] 3080 3081 [[package]] 3082 - name = "tempfile" 3083 - version = "3.2.0" 3084 source = "registry+https://github.com/rust-lang/crates.io-index" 3085 - checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" 3086 dependencies = [ 3087 - "cfg-if 1.0.0", 3088 "libc", 3089 - "rand 0.8.4", 3090 - "redox_syscall", 3091 - "remove_dir_all", 3092 "winapi", 3093 ] 3094 3095 [[package]] 3096 name = "termcolor" 3097 - version = "1.1.2" 3098 source = "registry+https://github.com/rust-lang/crates.io-index" 3099 - checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" 3100 dependencies = [ 3101 "winapi-util", 3102 ] 3103 3104 [[package]] 3105 name = "textwrap" 3106 - version = "0.11.0" 3107 source = "registry+https://github.com/rust-lang/crates.io-index" 3108 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 3109 - dependencies = [ 3110 - "unicode-width", 3111 - ] 3112 3113 [[package]] 3114 name = "thiserror" 3115 - version = "1.0.26" 3116 source = "registry+https://github.com/rust-lang/crates.io-index" 3117 - checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2" 3118 dependencies = [ 3119 "thiserror-impl", 3120 ] 3121 3122 [[package]] 3123 name = "thiserror-impl" 3124 - version = "1.0.26" 3125 source = "registry+https://github.com/rust-lang/crates.io-index" 3126 - checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745" 3127 dependencies = [ 3128 "proc-macro2", 3129 "quote", 3130 - "syn", 3131 ] 3132 3133 [[package]] 3134 name = "time" 3135 - version = "0.2.27" 3136 source = "registry+https://github.com/rust-lang/crates.io-index" 3137 - checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" 3138 dependencies = [ 3139 - "const_fn", 3140 "libc", 3141 - "standback", 3142 - "stdweb", 3143 - "time-macros", 3144 - "version_check", 3145 "winapi", 3146 ] 3147 3148 [[package]] 3149 - name = "time-macros" 3150 version = "0.1.1" 3151 source = "registry+https://github.com/rust-lang/crates.io-index" 3152 - checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" 3153 dependencies = [ 3154 - "proc-macro-hack", 3155 - "time-macros-impl", 3156 ] 3157 3158 [[package]] 3159 - name = "time-macros-impl" 3160 - version = "0.1.2" 3161 source = "registry+https://github.com/rust-lang/crates.io-index" 3162 - checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" 3163 dependencies = [ 3164 - "proc-macro-hack", 3165 - "proc-macro2", 3166 - "quote", 3167 - "standback", 3168 - "syn", 3169 ] 3170 3171 [[package]] 3172 name = "tinyvec" 3173 - version = "1.2.0" 3174 source = "registry+https://github.com/rust-lang/crates.io-index" 3175 - checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342" 3176 dependencies = [ 3177 "tinyvec_macros", 3178 ] 3179 3180 [[package]] 3181 name = "tinyvec_macros" 3182 - version = "0.1.0" 3183 source = "registry+https://github.com/rust-lang/crates.io-index" 3184 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3185 3186 [[package]] 3187 name = "tokio" 3188 - version = "1.8.0" 3189 source = "registry+https://github.com/rust-lang/crates.io-index" 3190 - checksum = "570c2eb13b3ab38208130eccd41be92520388791207fde783bda7c1e8ace28d4" 3191 dependencies = [ 3192 - "autocfg", 3193 "bytes", 3194 "libc", 3195 - "memchr", 3196 "mio", 3197 "num_cpus", 3198 - "once_cell", 3199 "pin-project-lite", 3200 "signal-hook-registry", 3201 "tokio-macros", 3202 - "winapi", 3203 ] 3204 3205 [[package]] 3206 - name = "tokio-macros" 3207 version = "1.2.0" 3208 source = "registry+https://github.com/rust-lang/crates.io-index" 3209 - checksum = "c49e3df43841dafb86046472506755d8501c5615673955f6aa17181125d13c37" 3210 dependencies = [ 3211 "proc-macro2", 3212 "quote", 3213 - "syn", 3214 ] 3215 3216 [[package]] 3217 name = "tokio-native-tls" 3218 - version = "0.3.0" 3219 source = "registry+https://github.com/rust-lang/crates.io-index" 3220 - checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 3221 dependencies = [ 3222 "native-tls", 3223 "tokio", 3224 ] 3225 3226 [[package]] 3227 name = "tokio-stream" 3228 - version = "0.1.6" 3229 source = "registry+https://github.com/rust-lang/crates.io-index" 3230 - checksum = "f8864d706fdb3cc0843a49647ac892720dac98a6eeb818b77190592cf4994066" 3231 dependencies = [ 3232 "futures-core", 3233 "pin-project-lite", 3234 "tokio", 3235 ] 3236 3237 [[package]] ··· 3257 "log", 3258 "pin-project", 3259 "tokio", 3260 - "tungstenite", 3261 ] 3262 3263 [[package]] 3264 name = "tokio-util" 3265 - version = "0.6.7" 3266 source = "registry+https://github.com/rust-lang/crates.io-index" 3267 - checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592" 3268 dependencies = [ 3269 "bytes", 3270 "futures-core", 3271 "futures-sink", 3272 - "log", 3273 "pin-project-lite", 3274 "slab", 3275 "tokio", 3276 ] 3277 3278 [[package]] 3279 name = "toml" 3280 - version = "0.5.8" 3281 source = "registry+https://github.com/rust-lang/crates.io-index" 3282 - checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" 3283 dependencies = [ 3284 "serde", 3285 ] 3286 3287 [[package]] 3288 - name = "topology" 3289 - version = "0.1.0" 3290 dependencies = [ 3291 - "bs58 0.4.0", 3292 - "crypto", 3293 - "log", 3294 - "mixnet-contract", 3295 - "nymsphinx-addressing", 3296 - "nymsphinx-types", 3297 - "rand 0.7.3", 3298 - "version-checker", 3299 ] 3300 3301 [[package]] 3302 name = "tower-service" 3303 - version = "0.3.1" 3304 source = "registry+https://github.com/rust-lang/crates.io-index" 3305 - checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" 3306 3307 [[package]] 3308 name = "tracing" 3309 - version = "0.1.26" 3310 source = "registry+https://github.com/rust-lang/crates.io-index" 3311 - checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d" 3312 dependencies = [ 3313 - "cfg-if 1.0.0", 3314 "pin-project-lite", 3315 "tracing-core", 3316 ] 3317 3318 [[package]] 3319 name = "tracing-core" 3320 - version = "0.1.18" 3321 source = "registry+https://github.com/rust-lang/crates.io-index" 3322 - checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052" 3323 dependencies = [ 3324 "lazy_static", 3325 ] 3326 3327 [[package]] 3328 name = "try-lock" 3329 - version = "0.2.3" 3330 source = "registry+https://github.com/rust-lang/crates.io-index" 3331 - checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 3332 3333 [[package]] 3334 name = "tungstenite" ··· 3336 source = "registry+https://github.com/rust-lang/crates.io-index" 3337 checksum = "5fe8dada8c1a3aeca77d6b51a4f1314e0f4b8e438b7b1b71e3ddaca8080e4093" 3338 dependencies = [ 3339 - "base64", 3340 "byteorder", 3341 "bytes", 3342 "http", 3343 "httparse", 3344 "input_buffer", 3345 "log", 3346 - "rand 0.8.4", 3347 - "sha-1 0.9.6", 3348 "thiserror", 3349 "url", 3350 "utf-8", 3351 ] 3352 3353 [[package]] 3354 - name = "twoway" 3355 - version = "0.2.2" 3356 source = "registry+https://github.com/rust-lang/crates.io-index" 3357 - checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47" 3358 dependencies = [ 3359 - "memchr", 3360 - "unchecked-index", 3361 ] 3362 3363 [[package]] 3364 name = "typenum" 3365 - version = "1.13.0" 3366 source = "registry+https://github.com/rust-lang/crates.io-index" 3367 - checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06" 3368 3369 [[package]] 3370 name = "ubyte" 3371 - version = "0.10.1" 3372 source = "registry+https://github.com/rust-lang/crates.io-index" 3373 - checksum = "42756bb9e708855de2f8a98195643dff31a97f0485d90d8467b39dc24be9e8fe" 3374 dependencies = [ 3375 "serde", 3376 ] 3377 3378 [[package]] 3379 name = "ucd-trie" 3380 - version = "0.1.3" 3381 source = "registry+https://github.com/rust-lang/crates.io-index" 3382 - checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" 3383 3384 [[package]] 3385 name = "uint" 3386 - version = "0.9.1" 3387 source = "registry+https://github.com/rust-lang/crates.io-index" 3388 - checksum = "6470ab50f482bde894a037a57064480a246dbfdd5960bd65a44824693f08da5f" 3389 dependencies = [ 3390 "byteorder", 3391 "crunchy", ··· 3395 3396 [[package]] 3397 name = "uncased" 3398 - version = "0.9.6" 3399 source = "registry+https://github.com/rust-lang/crates.io-index" 3400 - checksum = "5baeed7327e25054889b9bd4f975f32e5f4c5d434042d59ab6cd4142c0a76ed0" 3401 dependencies = [ 3402 "serde", 3403 "version_check", 3404 ] 3405 3406 [[package]] 3407 - name = "unchecked-index" 3408 - version = "0.2.2" 3409 source = "registry+https://github.com/rust-lang/crates.io-index" 3410 - checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c" 3411 3412 [[package]] 3413 - name = "unicode-bidi" 3414 - version = "0.3.5" 3415 source = "registry+https://github.com/rust-lang/crates.io-index" 3416 - checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0" 3417 dependencies = [ 3418 - "matches", 3419 ] 3420 3421 [[package]] 3422 name = "unicode-normalization" 3423 - version = "0.1.19" 3424 source = "registry+https://github.com/rust-lang/crates.io-index" 3425 - checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 3426 dependencies = [ 3427 "tinyvec", 3428 ] 3429 3430 [[package]] 3431 name = "unicode-width" 3432 - version = "0.1.8" 3433 source = "registry+https://github.com/rust-lang/crates.io-index" 3434 - checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" 3435 3436 [[package]] 3437 name = "unicode-xid" 3438 - version = "0.2.2" 3439 source = "registry+https://github.com/rust-lang/crates.io-index" 3440 - checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 3441 3442 [[package]] 3443 name = "url" 3444 - version = "2.2.2" 3445 source = "registry+https://github.com/rust-lang/crates.io-index" 3446 - checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 3447 dependencies = [ 3448 "form_urlencoded", 3449 - "idna", 3450 - "matches", 3451 "percent-encoding", 3452 ] 3453 3454 [[package]] 3455 name = "utf-8" 3456 version = "0.7.6" 3457 source = "registry+https://github.com/rust-lang/crates.io-index" 3458 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3459 3460 [[package]] 3461 - name = "validator-client" 3462 - version = "0.1.0" 3463 dependencies = [ 3464 - "base64", 3465 - "getrandom 0.2.3", 3466 - "log", 3467 - "mixnet-contract", 3468 - "rand 0.8.4", 3469 - "reqwest", 3470 - "serde", 3471 - "serde_json", 3472 - "thiserror", 3473 - "url", 3474 - "wasm-timer", 3475 ] 3476 3477 [[package]] 3478 name = "vcpkg" ··· 3481 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3482 3483 [[package]] 3484 - name = "vec_map" 3485 - version = "0.8.2" 3486 source = "registry+https://github.com/rust-lang/crates.io-index" 3487 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 3488 - 3489 - [[package]] 3490 - name = "version-checker" 3491 - version = "0.1.0" 3492 dependencies = [ 3493 - "semver 0.11.0", 3494 ] 3495 3496 [[package]] 3497 name = "version_check" 3498 - version = "0.9.3" 3499 source = "registry+https://github.com/rust-lang/crates.io-index" 3500 - checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 3501 3502 [[package]] 3503 name = "want" ··· 3517 3518 [[package]] 3519 name = "wasi" 3520 - version = "0.10.2+wasi-snapshot-preview1" 3521 source = "registry+https://github.com/rust-lang/crates.io-index" 3522 - checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 3523 3524 [[package]] 3525 name = "wasm-bindgen" 3526 - version = "0.2.74" 3527 source = "registry+https://github.com/rust-lang/crates.io-index" 3528 - checksum = "d54ee1d4ed486f78874278e63e4069fc1ab9f6a18ca492076ffb90c5eb2997fd" 3529 dependencies = [ 3530 - "cfg-if 1.0.0", 3531 - "serde", 3532 - "serde_json", 3533 "wasm-bindgen-macro", 3534 ] 3535 3536 [[package]] 3537 name = "wasm-bindgen-backend" 3538 - version = "0.2.74" 3539 source = "registry+https://github.com/rust-lang/crates.io-index" 3540 - checksum = "3b33f6a0694ccfea53d94db8b2ed1c3a8a4c86dd936b13b9f0a15ec4a451b900" 3541 dependencies = [ 3542 "bumpalo", 3543 - "lazy_static", 3544 "log", 3545 "proc-macro2", 3546 "quote", 3547 - "syn", 3548 "wasm-bindgen-shared", 3549 ] 3550 3551 [[package]] 3552 name = "wasm-bindgen-futures" 3553 - version = "0.4.24" 3554 source = "registry+https://github.com/rust-lang/crates.io-index" 3555 - checksum = "5fba7978c679d53ce2d0ac80c8c175840feb849a161664365d1287b41f2e67f1" 3556 dependencies = [ 3557 - "cfg-if 1.0.0", 3558 "js-sys", 3559 "wasm-bindgen", 3560 "web-sys", ··· 3562 3563 [[package]] 3564 name = "wasm-bindgen-macro" 3565 - version = "0.2.74" 3566 source = "registry+https://github.com/rust-lang/crates.io-index" 3567 - checksum = "088169ca61430fe1e58b8096c24975251700e7b1f6fd91cc9d59b04fb9b18bd4" 3568 dependencies = [ 3569 "quote", 3570 "wasm-bindgen-macro-support", ··· 3572 3573 [[package]] 3574 name = "wasm-bindgen-macro-support" 3575 - version = "0.2.74" 3576 source = "registry+https://github.com/rust-lang/crates.io-index" 3577 - checksum = "be2241542ff3d9f241f5e2cb6dd09b37efe786df8851c54957683a49f0987a97" 3578 dependencies = [ 3579 "proc-macro2", 3580 "quote", 3581 - "syn", 3582 "wasm-bindgen-backend", 3583 "wasm-bindgen-shared", 3584 ] 3585 3586 [[package]] 3587 name = "wasm-bindgen-shared" 3588 - version = "0.2.74" 3589 - source = "registry+https://github.com/rust-lang/crates.io-index" 3590 - checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f" 3591 - 3592 - [[package]] 3593 - name = "wasm-bindgen-test" 3594 - version = "0.3.24" 3595 - source = "registry+https://github.com/rust-lang/crates.io-index" 3596 - checksum = "8cab416a9b970464c2882ed92d55b0c33046b08e0bdc9d59b3b718acd4e1bae8" 3597 - dependencies = [ 3598 - "console_error_panic_hook", 3599 - "js-sys", 3600 - "scoped-tls", 3601 - "wasm-bindgen", 3602 - "wasm-bindgen-futures", 3603 - "wasm-bindgen-test-macro", 3604 - ] 3605 - 3606 - [[package]] 3607 - name = "wasm-bindgen-test-macro" 3608 - version = "0.3.24" 3609 source = "registry+https://github.com/rust-lang/crates.io-index" 3610 - checksum = "dd4543fc6cf3541ef0d98bf720104cc6bd856d7eba449fd2aa365ef4fed0e782" 3611 - dependencies = [ 3612 - "proc-macro2", 3613 - "quote", 3614 - ] 3615 3616 [[package]] 3617 name = "wasm-timer" 3618 version = "0.2.5" 3619 - source = "registry+https://github.com/rust-lang/crates.io-index" 3620 - checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" 3621 dependencies = [ 3622 "futures", 3623 "js-sys", 3624 - "parking_lot", 3625 "pin-utils", 3626 "wasm-bindgen", 3627 "wasm-bindgen-futures", ··· 3633 version = "0.1.0" 3634 dependencies = [ 3635 "futures", 3636 "js-sys", 3637 - "tungstenite", 3638 "wasm-bindgen", 3639 "wasm-bindgen-futures", 3640 "web-sys", ··· 3642 3643 [[package]] 3644 name = "web-sys" 3645 - version = "0.3.51" 3646 source = "registry+https://github.com/rust-lang/crates.io-index" 3647 - checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582" 3648 dependencies = [ 3649 "js-sys", 3650 "wasm-bindgen", 3651 ] 3652 3653 [[package]] 3654 - name = "websocket-requests" 3655 - version = "0.1.0" 3656 dependencies = [ 3657 - "nymsphinx", 3658 - "serde", 3659 - "serde_json", 3660 ] 3661 3662 [[package]] 3663 - name = "wee_alloc" 3664 - version = "0.4.5" 3665 source = "registry+https://github.com/rust-lang/crates.io-index" 3666 - checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e" 3667 dependencies = [ 3668 - "cfg-if 0.1.10", 3669 - "libc", 3670 - "memory_units", 3671 - "winapi", 3672 ] 3673 3674 [[package]] ··· 3703 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3704 3705 [[package]] 3706 name = "winreg" 3707 - version = "0.7.0" 3708 source = "registry+https://github.com/rust-lang/crates.io-index" 3709 - checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" 3710 dependencies = [ 3711 "winapi", 3712 ] 3713 3714 [[package]] 3715 name = "wyz" 3716 - version = "0.2.0" 3717 source = "registry+https://github.com/rust-lang/crates.io-index" 3718 - checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" 3719 3720 [[package]] 3721 name = "x25519-dalek" ··· 3725 dependencies = [ 3726 "curve25519-dalek", 3727 "rand_core 0.5.1", 3728 "zeroize", 3729 ] 3730 3731 [[package]] 3732 name = "yansi" 3733 - version = "0.5.0" 3734 source = "registry+https://github.com/rust-lang/crates.io-index" 3735 - checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71" 3736 3737 [[package]] 3738 name = "zeroize" 3739 - version = "1.3.0" 3740 source = "registry+https://github.com/rust-lang/crates.io-index" 3741 - checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd" 3742 dependencies = [ 3743 "zeroize_derive", 3744 ] 3745 3746 [[package]] 3747 name = "zeroize_derive" 3748 - version = "1.1.0" 3749 source = "registry+https://github.com/rust-lang/crates.io-index" 3750 - checksum = "a2c1e130bebaeab2f23886bf9acbaca14b092408c452543c857f66399cd6dab1" 3751 dependencies = [ 3752 "proc-macro2", 3753 "quote", 3754 - "syn", 3755 - "synstructure", 3756 ]
··· 1 # This file is automatically @generated by Cargo. 2 # It is not intended for manual editing. 3 version = 3 4 5 [[package]] 6 + name = "Inflector" 7 + version = "0.11.4" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 + 11 + [[package]] 12 + name = "adler" 13 + version = "1.0.2" 14 source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 16 + 17 + [[package]] 18 + name = "aead" 19 + version = "0.5.2" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 22 dependencies = [ 23 + "crypto-common", 24 + "generic-array 0.14.7", 25 ] 26 27 [[package]] 28 + name = "aes" 29 + version = "0.7.5" 30 source = "registry+https://github.com/rust-lang/crates.io-index" 31 + checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 32 dependencies = [ 33 + "cfg-if", 34 + "cipher 0.3.0", 35 + "cpufeatures", 36 + "ctr 0.8.0", 37 + "opaque-debug 0.3.0", 38 ] 39 40 [[package]] 41 + name = "aes" 42 + version = "0.8.2" 43 source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 45 dependencies = [ 46 + "cfg-if", 47 + "cipher 0.4.4", 48 + "cpufeatures", 49 ] 50 51 [[package]] 52 + name = "aes-gcm" 53 + version = "0.10.1" 54 source = "registry+https://github.com/rust-lang/crates.io-index" 55 + checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" 56 dependencies = [ 57 + "aead", 58 + "aes 0.8.2", 59 + "cipher 0.4.4", 60 + "ctr 0.9.2", 61 + "ghash", 62 + "subtle 2.4.1", 63 ] 64 65 [[package]] 66 + name = "ahash" 67 + version = "0.7.6" 68 source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 70 dependencies = [ 71 + "getrandom 0.2.9", 72 + "once_cell", 73 + "version_check", 74 ] 75 76 [[package]] 77 + name = "ahash" 78 + version = "0.8.3" 79 source = "registry+https://github.com/rust-lang/crates.io-index" 80 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 81 dependencies = [ 82 + "cfg-if", 83 + "once_cell", 84 + "version_check", 85 ] 86 87 [[package]] 88 name = "aho-corasick" 89 + version = "1.0.1" 90 source = "registry+https://github.com/rust-lang/crates.io-index" 91 + checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 92 dependencies = [ 93 "memchr", 94 ] 95 96 [[package]] 97 + name = "android_log-sys" 98 + version = "0.3.0" 99 source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "27f0fc03f560e1aebde41c2398b691cb98b5ea5996a6184a7a67bbbb77448969" 101 + 102 + [[package]] 103 + name = "android_logger" 104 + version = "0.13.1" 105 + source = "registry+https://github.com/rust-lang/crates.io-index" 106 + checksum = "3fa490e751f3878eb9accb9f18988eca52c2337ce000a8bf31ef50d4c723ca9e" 107 dependencies = [ 108 + "android_log-sys", 109 + "env_logger 0.10.0", 110 + "log", 111 + "once_cell", 112 + ] 113 + 114 + [[package]] 115 + name = "android_system_properties" 116 + version = "0.1.5" 117 + source = "registry+https://github.com/rust-lang/crates.io-index" 118 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 119 + dependencies = [ 120 + "libc", 121 + ] 122 + 123 + [[package]] 124 + name = "anes" 125 + version = "0.1.6" 126 + source = "registry+https://github.com/rust-lang/crates.io-index" 127 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 128 + 129 + [[package]] 130 + name = "anstream" 131 + version = "0.3.2" 132 + source = "registry+https://github.com/rust-lang/crates.io-index" 133 + checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 134 + dependencies = [ 135 + "anstyle", 136 + "anstyle-parse", 137 + "anstyle-query", 138 + "anstyle-wincon", 139 + "colorchoice", 140 + "is-terminal", 141 + "utf8parse", 142 + ] 143 + 144 + [[package]] 145 + name = "anstyle" 146 + version = "1.0.0" 147 + source = "registry+https://github.com/rust-lang/crates.io-index" 148 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 149 + 150 + [[package]] 151 + name = "anstyle-parse" 152 + version = "0.2.0" 153 + source = "registry+https://github.com/rust-lang/crates.io-index" 154 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 155 + dependencies = [ 156 + "utf8parse", 157 + ] 158 + 159 + [[package]] 160 + name = "anstyle-query" 161 + version = "1.0.0" 162 + source = "registry+https://github.com/rust-lang/crates.io-index" 163 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 164 + dependencies = [ 165 + "windows-sys 0.48.0", 166 + ] 167 + 168 + [[package]] 169 + name = "anstyle-wincon" 170 + version = "1.0.1" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 173 + dependencies = [ 174 + "anstyle", 175 + "windows-sys 0.48.0", 176 + ] 177 + 178 + [[package]] 179 + name = "anyhow" 180 + version = "1.0.71" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 183 + 184 + [[package]] 185 + name = "argon2" 186 + version = "0.5.0" 187 + source = "registry+https://github.com/rust-lang/crates.io-index" 188 + checksum = "95c2fcf79ad1932ac6269a738109997a83c227c09b75842ae564dc8ede6a861c" 189 + dependencies = [ 190 + "base64ct", 191 + "blake2 0.10.6", 192 + "password-hash", 193 ] 194 195 [[package]] 196 name = "arrayref" 197 + version = "0.3.7" 198 source = "registry+https://github.com/rust-lang/crates.io-index" 199 + checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 200 201 [[package]] 202 name = "arrayvec" 203 + version = "0.7.2" 204 source = "registry+https://github.com/rust-lang/crates.io-index" 205 + checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 206 + 207 + [[package]] 208 + name = "async-file-watcher" 209 + version = "0.1.0" 210 + dependencies = [ 211 + "futures", 212 + "log", 213 + "notify", 214 + "tokio", 215 + ] 216 217 [[package]] 218 name = "async-stream" 219 + version = "0.3.5" 220 source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 222 dependencies = [ 223 "async-stream-impl", 224 "futures-core", 225 + "pin-project-lite", 226 ] 227 228 [[package]] 229 name = "async-stream-impl" 230 + version = "0.3.5" 231 source = "registry+https://github.com/rust-lang/crates.io-index" 232 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 233 dependencies = [ 234 "proc-macro2", 235 "quote", 236 + "syn 2.0.16", 237 ] 238 239 [[package]] 240 name = "async-trait" 241 + version = "0.1.68" 242 source = "registry+https://github.com/rust-lang/crates.io-index" 243 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 244 dependencies = [ 245 "proc-macro2", 246 "quote", 247 + "syn 2.0.16", 248 ] 249 250 [[package]] 251 + name = "atoi" 252 + version = "0.4.0" 253 source = "registry+https://github.com/rust-lang/crates.io-index" 254 + checksum = "616896e05fc0e2649463a93a15183c6a16bf03413a7af88ef1285ddedfa9cda5" 255 dependencies = [ 256 + "num-traits", 257 + ] 258 + 259 + [[package]] 260 + name = "atoi" 261 + version = "1.0.0" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e" 264 + dependencies = [ 265 + "num-traits", 266 ] 267 268 [[package]] 269 + name = "atomic" 270 + version = "0.5.3" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba" 273 + 274 + [[package]] 275 name = "atty" 276 version = "0.2.14" 277 source = "registry+https://github.com/rust-lang/crates.io-index" 278 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 279 dependencies = [ 280 + "hermit-abi 0.1.19", 281 "libc", 282 "winapi", 283 ] 284 285 [[package]] 286 name = "autocfg" 287 + version = "0.1.8" 288 + source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" 290 + dependencies = [ 291 + "autocfg 1.1.0", 292 + ] 293 + 294 + [[package]] 295 + name = "autocfg" 296 + version = "1.1.0" 297 source = "registry+https://github.com/rust-lang/crates.io-index" 298 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 299 300 [[package]] 301 + name = "axum" 302 + version = "0.6.18" 303 source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39" 305 + dependencies = [ 306 + "async-trait", 307 + "axum-core", 308 + "bitflags", 309 + "bytes", 310 + "futures-util", 311 + "http", 312 + "http-body", 313 + "hyper", 314 + "itoa", 315 + "matchit", 316 + "memchr", 317 + "mime", 318 + "percent-encoding", 319 + "pin-project-lite", 320 + "rustversion", 321 + "serde", 322 + "sync_wrapper", 323 + "tower", 324 + "tower-layer", 325 + "tower-service", 326 + ] 327 + 328 + [[package]] 329 + name = "axum-core" 330 + version = "0.3.4" 331 + source = "registry+https://github.com/rust-lang/crates.io-index" 332 + checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 333 + dependencies = [ 334 + "async-trait", 335 + "bytes", 336 + "futures-util", 337 + "http", 338 + "http-body", 339 + "mime", 340 + "rustversion", 341 + "tower-layer", 342 + "tower-service", 343 + ] 344 + 345 + [[package]] 346 + name = "base16ct" 347 + version = "0.1.1" 348 + source = "registry+https://github.com/rust-lang/crates.io-index" 349 + checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 350 351 [[package]] 352 name = "base64" 353 + version = "0.13.1" 354 source = "registry+https://github.com/rust-lang/crates.io-index" 355 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 356 + 357 + [[package]] 358 + name = "base64" 359 + version = "0.20.0" 360 + source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" 362 + 363 + [[package]] 364 + name = "base64" 365 + version = "0.21.0" 366 + source = "registry+https://github.com/rust-lang/crates.io-index" 367 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 368 + 369 + [[package]] 370 + name = "base64ct" 371 + version = "1.6.0" 372 + source = "registry+https://github.com/rust-lang/crates.io-index" 373 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 374 375 [[package]] 376 name = "binascii" ··· 379 checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72" 380 381 [[package]] 382 + name = "bincode" 383 + version = "1.3.3" 384 + source = "registry+https://github.com/rust-lang/crates.io-index" 385 + checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 386 + dependencies = [ 387 + "serde", 388 + ] 389 + 390 + [[package]] 391 + name = "bip32" 392 + version = "0.3.0" 393 + source = "registry+https://github.com/rust-lang/crates.io-index" 394 + checksum = "873faa4363bfc54c36a48321da034c92a0645a363eed34d948683ffc1706e37f" 395 + dependencies = [ 396 + "bs58", 397 + "hmac 0.11.0", 398 + "k256", 399 + "once_cell", 400 + "pbkdf2", 401 + "rand_core 0.6.4", 402 + "ripemd160", 403 + "sha2 0.9.9", 404 + "subtle 2.4.1", 405 + "zeroize", 406 + ] 407 + 408 + [[package]] 409 + name = "bip39" 410 + version = "2.0.0" 411 + source = "registry+https://github.com/rust-lang/crates.io-index" 412 + checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f" 413 + dependencies = [ 414 + "bitcoin_hashes", 415 + "rand 0.8.5", 416 + "rand_core 0.6.4", 417 + "serde", 418 + "unicode-normalization", 419 + "zeroize", 420 + ] 421 + 422 + [[package]] 423 + name = "bitcoin_hashes" 424 + version = "0.11.0" 425 + source = "registry+https://github.com/rust-lang/crates.io-index" 426 + checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4" 427 + 428 + [[package]] 429 name = "bitflags" 430 + version = "1.3.2" 431 source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 433 434 [[package]] 435 name = "bitvec" 436 + version = "1.0.1" 437 source = "registry+https://github.com/rust-lang/crates.io-index" 438 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 439 dependencies = [ 440 "funty", 441 "radium", 442 + "tap", 443 "wyz", 444 ] 445 ··· 456 ] 457 458 [[package]] 459 + name = "blake2" 460 + version = "0.10.6" 461 + source = "registry+https://github.com/rust-lang/crates.io-index" 462 + checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 463 + dependencies = [ 464 + "digest 0.10.6", 465 + ] 466 + 467 + [[package]] 468 name = "blake3" 469 + version = "1.3.3" 470 source = "registry+https://github.com/rust-lang/crates.io-index" 471 + checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" 472 dependencies = [ 473 "arrayref", 474 "arrayvec", 475 "cc", 476 + "cfg-if", 477 "constant_time_eq", 478 + "digest 0.10.6", 479 ] 480 481 [[package]] 482 name = "block-buffer" 483 + version = "0.9.0" 484 source = "registry+https://github.com/rust-lang/crates.io-index" 485 + checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 486 dependencies = [ 487 "block-padding", 488 + "generic-array 0.14.7", 489 ] 490 491 [[package]] 492 name = "block-buffer" 493 + version = "0.10.4" 494 source = "registry+https://github.com/rust-lang/crates.io-index" 495 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 496 dependencies = [ 497 + "generic-array 0.14.7", 498 ] 499 500 [[package]] 501 + name = "block-padding" 502 + version = "0.2.1" 503 source = "registry+https://github.com/rust-lang/crates.io-index" 504 + checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" 505 506 [[package]] 507 + name = "bls12_381" 508 + version = "0.5.0" 509 source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "54757888b09a69be70b5ec303e382a74227392086ba808cb01eeca29233a2397" 511 dependencies = [ 512 + "digest 0.9.0", 513 + "ff 0.10.1", 514 + "group 0.10.0", 515 + "pairing 0.20.0", 516 + "rand_core 0.6.4", 517 + "subtle 2.4.1", 518 ] 519 520 [[package]] 521 + name = "bls12_381" 522 + version = "0.6.0" 523 + source = "git+https://github.com/jstuczyn/bls12_381?branch=gt-serialisation#10fb6f700bfda17c8475af3bfd31e3fec15f2278" 524 + dependencies = [ 525 + "digest 0.9.0", 526 + "ff 0.11.1", 527 + "group 0.11.0", 528 + "pairing 0.21.0", 529 + "rand_core 0.6.4", 530 + "subtle 2.4.1", 531 + "zeroize", 532 + ] 533 534 [[package]] 535 name = "bs58" 536 version = "0.4.0" 537 source = "registry+https://github.com/rust-lang/crates.io-index" 538 checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" 539 + dependencies = [ 540 + "sha2 0.9.9", 541 + ] 542 543 [[package]] 544 name = "bumpalo" 545 + version = "3.12.2" 546 source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 548 549 [[package]] 550 name = "byte-tools" ··· 560 561 [[package]] 562 name = "bytes" 563 + version = "1.4.0" 564 source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 566 + 567 + [[package]] 568 + name = "cast" 569 + version = "0.3.0" 570 + source = "registry+https://github.com/rust-lang/crates.io-index" 571 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 572 573 [[package]] 574 name = "cc" 575 + version = "1.0.79" 576 source = "registry+https://github.com/rust-lang/crates.io-index" 577 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 578 + dependencies = [ 579 + "jobserver", 580 + ] 581 582 [[package]] 583 + name = "cesu8" 584 + version = "1.1.0" 585 source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 587 588 [[package]] 589 name = "cfg-if" ··· 602 ] 603 604 [[package]] 605 + name = "chacha20" 606 + version = "0.9.1" 607 + source = "registry+https://github.com/rust-lang/crates.io-index" 608 + checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 609 + dependencies = [ 610 + "cfg-if", 611 + "cipher 0.4.4", 612 + "cpufeatures", 613 + ] 614 + 615 + [[package]] 616 + name = "chacha20poly1305" 617 + version = "0.10.1" 618 + source = "registry+https://github.com/rust-lang/crates.io-index" 619 + checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 620 + dependencies = [ 621 + "aead", 622 + "chacha20", 623 + "cipher 0.4.4", 624 + "poly1305", 625 + "zeroize", 626 + ] 627 + 628 + [[package]] 629 + name = "chrono" 630 + version = "0.4.24" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 633 + dependencies = [ 634 + "iana-time-zone", 635 + "js-sys", 636 + "num-integer", 637 + "num-traits", 638 + "serde", 639 + "time 0.1.45", 640 + "wasm-bindgen", 641 + "winapi", 642 + ] 643 + 644 + [[package]] 645 + name = "ciborium" 646 + version = "0.2.1" 647 + source = "registry+https://github.com/rust-lang/crates.io-index" 648 + checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 649 + dependencies = [ 650 + "ciborium-io", 651 + "ciborium-ll", 652 + "serde", 653 + ] 654 + 655 + [[package]] 656 + name = "ciborium-io" 657 + version = "0.2.1" 658 + source = "registry+https://github.com/rust-lang/crates.io-index" 659 + checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 660 + 661 + [[package]] 662 + name = "ciborium-ll" 663 + version = "0.2.1" 664 + source = "registry+https://github.com/rust-lang/crates.io-index" 665 + checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 666 + dependencies = [ 667 + "ciborium-io", 668 + "half", 669 + ] 670 + 671 + [[package]] 672 name = "cipher" 673 + version = "0.3.0" 674 + source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 676 + dependencies = [ 677 + "generic-array 0.14.7", 678 + ] 679 + 680 + [[package]] 681 + name = "cipher" 682 + version = "0.4.4" 683 source = "registry+https://github.com/rust-lang/crates.io-index" 684 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 685 dependencies = [ 686 + "crypto-common", 687 + "inout", 688 + "zeroize", 689 ] 690 691 [[package]] 692 name = "clap" 693 + version = "3.2.25" 694 + source = "registry+https://github.com/rust-lang/crates.io-index" 695 + checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 696 + dependencies = [ 697 + "bitflags", 698 + "clap_lex 0.2.4", 699 + "indexmap", 700 + "textwrap", 701 + ] 702 + 703 + [[package]] 704 + name = "clap" 705 + version = "4.2.7" 706 + source = "registry+https://github.com/rust-lang/crates.io-index" 707 + checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938" 708 + dependencies = [ 709 + "clap_builder", 710 + "clap_derive", 711 + "once_cell", 712 + ] 713 + 714 + [[package]] 715 + name = "clap_builder" 716 + version = "4.2.7" 717 source = "registry+https://github.com/rust-lang/crates.io-index" 718 + checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd" 719 dependencies = [ 720 + "anstream", 721 + "anstyle", 722 "bitflags", 723 + "clap_lex 0.4.1", 724 + "once_cell", 725 "strsim", 726 + ] 727 + 728 + [[package]] 729 + name = "clap_complete" 730 + version = "4.2.3" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "1594fe2312ec4abf402076e407628f5c313e54c32ade058521df4ee34ecac8a8" 733 + dependencies = [ 734 + "clap 4.2.7", 735 ] 736 737 [[package]] 738 + name = "clap_complete_fig" 739 + version = "4.2.0" 740 + source = "registry+https://github.com/rust-lang/crates.io-index" 741 + checksum = "f3af28956330989baa428ed4d3471b853715d445c62de21b67292e22cf8a41fa" 742 dependencies = [ 743 + "clap 4.2.7", 744 + "clap_complete", 745 + ] 746 + 747 + [[package]] 748 + name = "clap_derive" 749 + version = "4.2.0" 750 + source = "registry+https://github.com/rust-lang/crates.io-index" 751 + checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" 752 + dependencies = [ 753 + "heck 0.4.1", 754 + "proc-macro2", 755 + "quote", 756 + "syn 2.0.16", 757 + ] 758 + 759 + [[package]] 760 + name = "clap_lex" 761 + version = "0.2.4" 762 + source = "registry+https://github.com/rust-lang/crates.io-index" 763 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 764 + dependencies = [ 765 + "os_str_bytes", 766 + ] 767 + 768 + [[package]] 769 + name = "clap_lex" 770 + version = "0.4.1" 771 + source = "registry+https://github.com/rust-lang/crates.io-index" 772 + checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" 773 + 774 + [[package]] 775 + name = "cloudabi" 776 + version = "0.0.3" 777 + source = "registry+https://github.com/rust-lang/crates.io-index" 778 + checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 779 + dependencies = [ 780 + "bitflags", 781 ] 782 + 783 + [[package]] 784 + name = "colorchoice" 785 + version = "1.0.0" 786 + source = "registry+https://github.com/rust-lang/crates.io-index" 787 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 788 789 [[package]] 790 name = "colored" ··· 798 ] 799 800 [[package]] 801 + name = "combine" 802 + version = "4.6.6" 803 + source = "registry+https://github.com/rust-lang/crates.io-index" 804 + checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 805 dependencies = [ 806 + "bytes", 807 + "memchr", 808 ] 809 810 [[package]] 811 + name = "comfy-table" 812 + version = "6.1.4" 813 source = "registry+https://github.com/rust-lang/crates.io-index" 814 + checksum = "6e7b787b0dc42e8111badfdbe4c3059158ccb2db8780352fa1b01e8ccf45cc4d" 815 dependencies = [ 816 + "crossterm", 817 + "strum 0.24.1", 818 + "strum_macros 0.24.3", 819 + "unicode-width", 820 ] 821 822 [[package]] 823 + name = "console-api" 824 + version = "0.5.0" 825 source = "registry+https://github.com/rust-lang/crates.io-index" 826 + checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e" 827 + dependencies = [ 828 + "prost 0.11.9", 829 + "prost-types 0.11.9", 830 + "tonic", 831 + "tracing-core", 832 + ] 833 834 [[package]] 835 + name = "console-subscriber" 836 + version = "0.1.9" 837 source = "registry+https://github.com/rust-lang/crates.io-index" 838 + checksum = "57ab2224a0311582eb03adba4caaf18644f7b1f10a760803a803b9b605187fc7" 839 + dependencies = [ 840 + "console-api", 841 + "crossbeam-channel", 842 + "crossbeam-utils", 843 + "futures", 844 + "hdrhistogram", 845 + "humantime 2.1.0", 846 + "prost-types 0.11.9", 847 + "serde", 848 + "serde_json", 849 + "thread_local", 850 + "tokio", 851 + "tokio-stream", 852 + "tonic", 853 + "tracing", 854 + "tracing-core", 855 + "tracing-subscriber", 856 + ] 857 858 [[package]] 859 + name = "const-oid" 860 + version = "0.7.1" 861 source = "registry+https://github.com/rust-lang/crates.io-index" 862 + checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" 863 864 [[package]] 865 + name = "constant_time_eq" 866 + version = "0.2.5" 867 source = "registry+https://github.com/rust-lang/crates.io-index" 868 + checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b" 869 870 [[package]] 871 name = "cookie" 872 + version = "0.16.2" 873 source = "registry+https://github.com/rust-lang/crates.io-index" 874 + checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 875 dependencies = [ 876 + "aes-gcm", 877 + "base64 0.20.0", 878 + "hkdf 0.12.3", 879 + "hmac 0.12.1", 880 "percent-encoding", 881 + "rand 0.8.5", 882 + "sha2 0.10.6", 883 + "subtle 2.4.1", 884 + "time 0.3.21", 885 "version_check", 886 ] 887 888 [[package]] 889 name = "core-foundation" 890 + version = "0.9.3" 891 source = "registry+https://github.com/rust-lang/crates.io-index" 892 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 893 dependencies = [ 894 "core-foundation-sys", 895 "libc", ··· 897 898 [[package]] 899 name = "core-foundation-sys" 900 + version = "0.8.4" 901 source = "registry+https://github.com/rust-lang/crates.io-index" 902 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 903 + 904 + [[package]] 905 + name = "cosmos-sdk-proto" 906 + version = "0.12.3" 907 + source = "git+https://github.com/neacsu/cosmos-rust?branch=neacsu/feegrant_support#f63ded63ec13e753ebe8bdafe9dc503df265d67d" 908 + dependencies = [ 909 + "prost 0.10.4", 910 + "prost-types 0.10.1", 911 + "tendermint-proto", 912 + ] 913 + 914 + [[package]] 915 + name = "cosmrs" 916 + version = "0.7.1" 917 + source = "git+https://github.com/neacsu/cosmos-rust?branch=neacsu/feegrant_support#f63ded63ec13e753ebe8bdafe9dc503df265d67d" 918 + dependencies = [ 919 + "bip32", 920 + "cosmos-sdk-proto", 921 + "ecdsa", 922 + "eyre", 923 + "getrandom 0.2.9", 924 + "k256", 925 + "prost 0.10.4", 926 + "prost-types 0.10.1", 927 + "rand_core 0.6.4", 928 + "serde", 929 + "serde_json", 930 + "subtle-encoding", 931 + "tendermint", 932 + "tendermint-rpc", 933 + "thiserror", 934 + ] 935 936 [[package]] 937 name = "cosmwasm-crypto" 938 + version = "1.0.1" 939 source = "registry+https://github.com/rust-lang/crates.io-index" 940 + checksum = "970d1d705862179b5d7a233ae36f02f21c4ec1b8075fe60c77fc5b43471331fa" 941 dependencies = [ 942 "digest 0.9.0", 943 "ed25519-zebra", 944 "k256", 945 + "rand_core 0.6.4", 946 "thiserror", 947 ] 948 949 [[package]] 950 name = "cosmwasm-derive" 951 + version = "1.0.0" 952 source = "registry+https://github.com/rust-lang/crates.io-index" 953 + checksum = "4b36e527620a2a3e00e46b6e731ab6c9b68d11069c986f7d7be8eba79ef081a4" 954 dependencies = [ 955 + "syn 1.0.109", 956 ] 957 958 [[package]] 959 name = "cosmwasm-std" 960 + version = "1.0.0" 961 source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "875994993c2082a6fcd406937bf0fca21c349e4a624f3810253a14fa83a3a195" 963 dependencies = [ 964 + "base64 0.13.1", 965 "cosmwasm-crypto", 966 "cosmwasm-derive", 967 + "forward_ref", 968 "schemars", 969 "serde", 970 "serde-json-wasm", ··· 973 ] 974 975 [[package]] 976 + name = "cpu-cycles" 977 + version = "0.1.0" 978 + dependencies = [ 979 + "cfg-if", 980 + "libc", 981 + ] 982 + 983 + [[package]] 984 name = "cpufeatures" 985 + version = "0.2.7" 986 source = "registry+https://github.com/rust-lang/crates.io-index" 987 + checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 988 dependencies = [ 989 "libc", 990 ] 991 992 [[package]] 993 + name = "crc" 994 + version = "2.1.0" 995 + source = "registry+https://github.com/rust-lang/crates.io-index" 996 + checksum = "49fc9a695bca7f35f5f4c15cddc84415f66a74ea78eef08e90c5024f2b540e23" 997 + dependencies = [ 998 + "crc-catalog 1.1.1", 999 + ] 1000 + 1001 + [[package]] 1002 + name = "crc" 1003 + version = "3.0.1" 1004 + source = "registry+https://github.com/rust-lang/crates.io-index" 1005 + checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" 1006 + dependencies = [ 1007 + "crc-catalog 2.2.0", 1008 + ] 1009 + 1010 + [[package]] 1011 + name = "crc-catalog" 1012 + version = "1.1.1" 1013 + source = "registry+https://github.com/rust-lang/crates.io-index" 1014 + checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403" 1015 + 1016 + [[package]] 1017 + name = "crc-catalog" 1018 + version = "2.2.0" 1019 + source = "registry+https://github.com/rust-lang/crates.io-index" 1020 + checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" 1021 + 1022 + [[package]] 1023 name = "crc32fast" 1024 + version = "1.3.2" 1025 + source = "registry+https://github.com/rust-lang/crates.io-index" 1026 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1027 + dependencies = [ 1028 + "cfg-if", 1029 + ] 1030 + 1031 + [[package]] 1032 + name = "criterion" 1033 + version = "0.4.0" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 1036 + dependencies = [ 1037 + "anes", 1038 + "atty", 1039 + "cast", 1040 + "ciborium", 1041 + "clap 3.2.25", 1042 + "criterion-plot", 1043 + "itertools", 1044 + "lazy_static", 1045 + "num-traits", 1046 + "oorandom", 1047 + "plotters", 1048 + "rayon", 1049 + "regex", 1050 + "serde", 1051 + "serde_derive", 1052 + "serde_json", 1053 + "tinytemplate", 1054 + "walkdir", 1055 + ] 1056 + 1057 + [[package]] 1058 + name = "criterion-plot" 1059 + version = "0.5.0" 1060 source = "registry+https://github.com/rust-lang/crates.io-index" 1061 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1062 dependencies = [ 1063 + "cast", 1064 + "itertools", 1065 + ] 1066 + 1067 + [[package]] 1068 + name = "crossbeam-channel" 1069 + version = "0.5.8" 1070 + source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1072 + dependencies = [ 1073 + "cfg-if", 1074 + "crossbeam-utils", 1075 + ] 1076 + 1077 + [[package]] 1078 + name = "crossbeam-deque" 1079 + version = "0.8.3" 1080 + source = "registry+https://github.com/rust-lang/crates.io-index" 1081 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1082 + dependencies = [ 1083 + "cfg-if", 1084 + "crossbeam-epoch", 1085 + "crossbeam-utils", 1086 ] 1087 1088 [[package]] 1089 name = "crossbeam-epoch" 1090 + version = "0.9.14" 1091 source = "registry+https://github.com/rust-lang/crates.io-index" 1092 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 1093 dependencies = [ 1094 + "autocfg 1.1.0", 1095 + "cfg-if", 1096 "crossbeam-utils", 1097 "memoffset", 1098 "scopeguard", 1099 ] 1100 1101 [[package]] 1102 + name = "crossbeam-queue" 1103 + version = "0.3.8" 1104 + source = "registry+https://github.com/rust-lang/crates.io-index" 1105 + checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 1106 + dependencies = [ 1107 + "cfg-if", 1108 + "crossbeam-utils", 1109 + ] 1110 + 1111 + [[package]] 1112 name = "crossbeam-utils" 1113 + version = "0.8.15" 1114 + source = "registry+https://github.com/rust-lang/crates.io-index" 1115 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 1116 + dependencies = [ 1117 + "cfg-if", 1118 + ] 1119 + 1120 + [[package]] 1121 + name = "crossterm" 1122 + version = "0.25.0" 1123 + source = "registry+https://github.com/rust-lang/crates.io-index" 1124 + checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67" 1125 + dependencies = [ 1126 + "bitflags", 1127 + "crossterm_winapi", 1128 + "libc", 1129 + "mio", 1130 + "parking_lot 0.12.1", 1131 + "signal-hook", 1132 + "signal-hook-mio", 1133 + "winapi", 1134 + ] 1135 + 1136 + [[package]] 1137 + name = "crossterm_winapi" 1138 + version = "0.9.0" 1139 source = "registry+https://github.com/rust-lang/crates.io-index" 1140 + checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" 1141 dependencies = [ 1142 + "winapi", 1143 ] 1144 1145 [[package]] ··· 1149 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1150 1151 [[package]] 1152 + name = "crypto-bigint" 1153 + version = "0.3.2" 1154 + source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + checksum = "03c6a1d5fa1de37e071642dfa44ec552ca5b299adb128fab16138e24b548fd21" 1156 + dependencies = [ 1157 + "generic-array 0.14.7", 1158 + "rand_core 0.6.4", 1159 + "subtle 2.4.1", 1160 + "zeroize", 1161 + ] 1162 + 1163 + [[package]] 1164 + name = "crypto-common" 1165 + version = "0.1.6" 1166 + source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1168 dependencies = [ 1169 + "generic-array 0.14.7", 1170 + "rand_core 0.6.4", 1171 + "typenum", 1172 ] 1173 1174 [[package]] ··· 1183 1184 [[package]] 1185 name = "crypto-mac" 1186 + version = "0.11.1" 1187 + source = "registry+https://github.com/rust-lang/crates.io-index" 1188 + checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" 1189 + dependencies = [ 1190 + "generic-array 0.14.7", 1191 + "subtle 2.4.1", 1192 + ] 1193 + 1194 + [[package]] 1195 + name = "ct-logs" 1196 version = "0.8.0" 1197 source = "registry+https://github.com/rust-lang/crates.io-index" 1198 + checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8" 1199 dependencies = [ 1200 + "sct 0.6.1", 1201 ] 1202 1203 [[package]] 1204 + name = "ctor" 1205 + version = "0.1.26" 1206 source = "registry+https://github.com/rust-lang/crates.io-index" 1207 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 1208 dependencies = [ 1209 + "quote", 1210 + "syn 1.0.109", 1211 ] 1212 1213 [[package]] 1214 name = "ctr" 1215 + version = "0.8.0" 1216 source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" 1218 dependencies = [ 1219 + "cipher 0.3.0", 1220 ] 1221 1222 [[package]] 1223 name = "ctr" 1224 + version = "0.9.2" 1225 source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1227 dependencies = [ 1228 + "cipher 0.4.4", 1229 + ] 1230 + 1231 + [[package]] 1232 + name = "cupid" 1233 + version = "0.6.1" 1234 + source = "registry+https://github.com/rust-lang/crates.io-index" 1235 + checksum = "8bad352a84b567cc38a5854e3aa8ee903cb8519a25d0b799b739bafffd1f91a1" 1236 + dependencies = [ 1237 + "gcc", 1238 + "rustc_version 0.2.3", 1239 ] 1240 1241 [[package]] 1242 name = "curve25519-dalek" 1243 + version = "3.2.0" 1244 source = "registry+https://github.com/rust-lang/crates.io-index" 1245 + checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" 1246 dependencies = [ 1247 "byteorder", 1248 "digest 0.9.0", 1249 "rand_core 0.5.1", 1250 + "serde", 1251 + "subtle 2.4.1", 1252 "zeroize", 1253 ] 1254 1255 [[package]] 1256 + name = "cw-controllers" 1257 + version = "0.13.4" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "4f0bc6019b4d3d81e11f5c384bcce7173e2210bd654d75c6c9668e12cca05dfa" 1260 + dependencies = [ 1261 + "cosmwasm-std", 1262 + "cw-storage-plus", 1263 + "cw-utils", 1264 + "schemars", 1265 + "serde", 1266 + "thiserror", 1267 + ] 1268 + 1269 + [[package]] 1270 + name = "cw-storage-plus" 1271 + version = "0.13.4" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "648b1507290bbc03a8d88463d7cd9b04b1fa0155e5eef366c4fa052b9caaac7a" 1274 + dependencies = [ 1275 + "cosmwasm-std", 1276 + "schemars", 1277 + "serde", 1278 + ] 1279 + 1280 + [[package]] 1281 + name = "cw-utils" 1282 + version = "0.13.4" 1283 + source = "registry+https://github.com/rust-lang/crates.io-index" 1284 + checksum = "9dbaecb78c8e8abfd6b4258c7f4fbeb5c49a5e45ee4d910d3240ee8e1d714e1b" 1285 + dependencies = [ 1286 + "cosmwasm-std", 1287 + "schemars", 1288 + "serde", 1289 + "thiserror", 1290 + ] 1291 + 1292 + [[package]] 1293 + name = "cw2" 1294 + version = "0.13.4" 1295 + source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "04cf4639517490dd36b333bbd6c4fbd92e325fd0acf4683b41753bc5eb63bfc1" 1297 + dependencies = [ 1298 + "cosmwasm-std", 1299 + "cw-storage-plus", 1300 + "schemars", 1301 + "serde", 1302 + ] 1303 + 1304 + [[package]] 1305 + name = "cw3" 1306 + version = "0.13.4" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "fe19462a7f644ba60c19d3443cb90d00c50d9b6b3b0a3a7fca93df8261af979b" 1309 + dependencies = [ 1310 + "cosmwasm-std", 1311 + "cw-utils", 1312 + "schemars", 1313 + "serde", 1314 + ] 1315 + 1316 + [[package]] 1317 + name = "cw4" 1318 + version = "0.13.4" 1319 + source = "registry+https://github.com/rust-lang/crates.io-index" 1320 + checksum = "0acc3549d5ce11c6901b3a676f2e2628684722197054d97cd0101ea174ed5cbd" 1321 + dependencies = [ 1322 + "cosmwasm-std", 1323 + "cw-storage-plus", 1324 + "schemars", 1325 + "serde", 1326 + ] 1327 + 1328 + [[package]] 1329 + name = "darling" 1330 + version = "0.13.4" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 1333 + dependencies = [ 1334 + "darling_core", 1335 + "darling_macro", 1336 + ] 1337 + 1338 + [[package]] 1339 + name = "darling_core" 1340 + version = "0.13.4" 1341 + source = "registry+https://github.com/rust-lang/crates.io-index" 1342 + checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 1343 + dependencies = [ 1344 + "fnv", 1345 + "ident_case", 1346 + "proc-macro2", 1347 + "quote", 1348 + "strsim", 1349 + "syn 1.0.109", 1350 + ] 1351 + 1352 + [[package]] 1353 + name = "darling_macro" 1354 + version = "0.13.4" 1355 + source = "registry+https://github.com/rust-lang/crates.io-index" 1356 + checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 1357 + dependencies = [ 1358 + "darling_core", 1359 + "quote", 1360 + "syn 1.0.109", 1361 + ] 1362 + 1363 + [[package]] 1364 name = "dashmap" 1365 version = "4.0.2" 1366 source = "registry+https://github.com/rust-lang/crates.io-index" 1367 checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" 1368 dependencies = [ 1369 + "cfg-if", 1370 "num_cpus", 1371 ] 1372 1373 [[package]] 1374 + name = "dashmap" 1375 + version = "5.4.0" 1376 source = "registry+https://github.com/rust-lang/crates.io-index" 1377 + checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 1378 dependencies = [ 1379 + "cfg-if", 1380 + "hashbrown 0.12.3", 1381 + "lock_api", 1382 + "once_cell", 1383 + "parking_lot_core 0.9.7", 1384 ] 1385 1386 [[package]] 1387 + name = "der" 1388 + version = "0.5.1" 1389 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" 1391 dependencies = [ 1392 + "const-oid", 1393 ] 1394 1395 [[package]] 1396 name = "devise" 1397 + version = "0.3.1" 1398 source = "registry+https://github.com/rust-lang/crates.io-index" 1399 + checksum = "50c7580b072f1c8476148f16e0a0d5dedddab787da98d86c5082c5e9ed8ab595" 1400 dependencies = [ 1401 "devise_codegen", 1402 "devise_core", ··· 1404 1405 [[package]] 1406 name = "devise_codegen" 1407 + version = "0.3.1" 1408 source = "registry+https://github.com/rust-lang/crates.io-index" 1409 + checksum = "123c73e7a6e51b05c75fe1a1b2f4e241399ea5740ed810b0e3e6cacd9db5e7b2" 1410 dependencies = [ 1411 "devise_core", 1412 "quote", ··· 1414 1415 [[package]] 1416 name = "devise_core" 1417 + version = "0.3.1" 1418 source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "841ef46f4787d9097405cac4e70fb8644fc037b526e8c14054247c0263c400d0" 1420 dependencies = [ 1421 "bitflags", 1422 "proc-macro2", 1423 + "proc-macro2-diagnostics 0.9.1", 1424 "quote", 1425 + "syn 1.0.109", 1426 ] 1427 1428 [[package]] ··· 1440 source = "registry+https://github.com/rust-lang/crates.io-index" 1441 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 1442 dependencies = [ 1443 + "generic-array 0.14.7", 1444 + ] 1445 + 1446 + [[package]] 1447 + name = "digest" 1448 + version = "0.10.6" 1449 + source = "registry+https://github.com/rust-lang/crates.io-index" 1450 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1451 + dependencies = [ 1452 + "block-buffer 0.10.4", 1453 + "crypto-common", 1454 + "subtle 2.4.1", 1455 ] 1456 1457 [[package]] 1458 name = "dirs" 1459 + version = "4.0.0" 1460 source = "registry+https://github.com/rust-lang/crates.io-index" 1461 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1462 dependencies = [ 1463 "dirs-sys", 1464 ] 1465 1466 [[package]] 1467 name = "dirs-sys" 1468 + version = "0.3.7" 1469 source = "registry+https://github.com/rust-lang/crates.io-index" 1470 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1471 dependencies = [ 1472 "libc", 1473 "redox_users", 1474 "winapi", 1475 ] 1476 1477 [[package]] 1478 name = "doc-comment" ··· 1487 checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 1488 1489 [[package]] 1490 + name = "dotenvy" 1491 + version = "0.15.7" 1492 + source = "registry+https://github.com/rust-lang/crates.io-index" 1493 + checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1494 + 1495 + [[package]] 1496 name = "dyn-clone" 1497 + version = "1.0.11" 1498 source = "registry+https://github.com/rust-lang/crates.io-index" 1499 + checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" 1500 1501 [[package]] 1502 name = "ecdsa" 1503 + version = "0.13.4" 1504 source = "registry+https://github.com/rust-lang/crates.io-index" 1505 + checksum = "d0d69ae62e0ce582d56380743515fefaf1a8c70cec685d9677636d7e30ae9dc9" 1506 dependencies = [ 1507 + "der", 1508 "elliptic-curve", 1509 + "rfc6979", 1510 "signature", 1511 ] 1512 1513 [[package]] 1514 name = "ed25519" 1515 + version = "1.5.3" 1516 source = "registry+https://github.com/rust-lang/crates.io-index" 1517 + checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" 1518 dependencies = [ 1519 + "serde", 1520 "signature", 1521 ] 1522 ··· 1530 "ed25519", 1531 "rand 0.7.3", 1532 "serde", 1533 + "serde_bytes", 1534 + "sha2 0.9.9", 1535 "zeroize", 1536 ] 1537 1538 [[package]] 1539 name = "ed25519-zebra" 1540 + version = "3.1.0" 1541 source = "registry+https://github.com/rust-lang/crates.io-index" 1542 + checksum = "7c24f403d068ad0b359e577a77f92392118be3f3c927538f2bb544a5ecd828c6" 1543 dependencies = [ 1544 "curve25519-dalek", 1545 + "hashbrown 0.12.3", 1546 "hex", 1547 + "rand_core 0.6.4", 1548 "serde", 1549 + "sha2 0.9.9", 1550 + "zeroize", 1551 ] 1552 1553 [[package]] 1554 name = "either" 1555 + version = "1.8.1" 1556 source = "registry+https://github.com/rust-lang/crates.io-index" 1557 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1558 1559 [[package]] 1560 name = "elliptic-curve" 1561 + version = "0.11.12" 1562 source = "registry+https://github.com/rust-lang/crates.io-index" 1563 + checksum = "25b477563c2bfed38a3b7a60964c49e058b2510ad3f12ba3483fd8f62c2306d6" 1564 dependencies = [ 1565 + "base16ct", 1566 + "crypto-bigint", 1567 + "der", 1568 + "ff 0.11.1", 1569 + "generic-array 0.14.7", 1570 + "group 0.11.0", 1571 + "rand_core 0.6.4", 1572 + "sec1", 1573 + "subtle 2.4.1", 1574 "zeroize", 1575 ] 1576 1577 [[package]] 1578 name = "encoding_rs" 1579 + version = "0.8.32" 1580 + source = "registry+https://github.com/rust-lang/crates.io-index" 1581 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1582 + dependencies = [ 1583 + "cfg-if", 1584 + ] 1585 + 1586 + [[package]] 1587 + name = "enum-iterator" 1588 + version = "1.1.3" 1589 source = "registry+https://github.com/rust-lang/crates.io-index" 1590 + checksum = "45a0ac4aeb3a18f92eaf09c6bb9b3ac30ff61ca95514fc58cbead1c9a6bf5401" 1591 dependencies = [ 1592 + "enum-iterator-derive", 1593 + ] 1594 + 1595 + [[package]] 1596 + name = "enum-iterator-derive" 1597 + version = "1.2.1" 1598 + source = "registry+https://github.com/rust-lang/crates.io-index" 1599 + checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb" 1600 + dependencies = [ 1601 + "proc-macro2", 1602 + "quote", 1603 + "syn 2.0.16", 1604 ] 1605 1606 [[package]] ··· 1617 ] 1618 1619 [[package]] 1620 + name = "env_logger" 1621 + version = "0.10.0" 1622 + source = "registry+https://github.com/rust-lang/crates.io-index" 1623 + checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1624 + dependencies = [ 1625 + "log", 1626 + "regex", 1627 + ] 1628 + 1629 + [[package]] 1630 + name = "errno" 1631 + version = "0.3.1" 1632 + source = "registry+https://github.com/rust-lang/crates.io-index" 1633 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1634 + dependencies = [ 1635 + "errno-dragonfly", 1636 + "libc", 1637 + "windows-sys 0.48.0", 1638 + ] 1639 + 1640 + [[package]] 1641 + name = "errno-dragonfly" 1642 version = "0.1.2" 1643 source = "registry+https://github.com/rust-lang/crates.io-index" 1644 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1645 + dependencies = [ 1646 + "cc", 1647 + "libc", 1648 + ] 1649 + 1650 + [[package]] 1651 + name = "event-listener" 1652 + version = "2.5.3" 1653 + source = "registry+https://github.com/rust-lang/crates.io-index" 1654 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1655 + 1656 + [[package]] 1657 + name = "explorer-api" 1658 + version = "1.1.21" 1659 + dependencies = [ 1660 + "chrono", 1661 + "clap 4.2.7", 1662 + "dotenvy", 1663 + "humantime-serde", 1664 + "isocountry", 1665 + "itertools", 1666 + "log", 1667 + "maxminddb", 1668 + "nym-bin-common", 1669 + "nym-contracts-common", 1670 + "nym-mixnet-contract-common", 1671 + "nym-network-defaults", 1672 + "nym-task", 1673 + "nym-validator-client", 1674 + "okapi", 1675 + "pretty_env_logger", 1676 + "rand 0.8.5", 1677 + "rand_pcg 0.3.1", 1678 + "rand_seeder", 1679 + "reqwest", 1680 + "rocket", 1681 + "rocket_cors", 1682 + "rocket_okapi", 1683 + "schemars", 1684 + "serde", 1685 + "serde_json", 1686 + "thiserror", 1687 + "tokio", 1688 + ] 1689 + 1690 + [[package]] 1691 + name = "ext-trait" 1692 + version = "1.0.1" 1693 + source = "registry+https://github.com/rust-lang/crates.io-index" 1694 + checksum = "d772df1c1a777963712fb68e014235e80863d6a91a85c4e06ba2d16243a310e5" 1695 + dependencies = [ 1696 + "ext-trait-proc_macros", 1697 + ] 1698 + 1699 + [[package]] 1700 + name = "ext-trait-proc_macros" 1701 + version = "1.0.1" 1702 + source = "registry+https://github.com/rust-lang/crates.io-index" 1703 + checksum = "1ab7934152eaf26aa5aa9f7371408ad5af4c31357073c9e84c3b9d7f11ad639a" 1704 + dependencies = [ 1705 + "proc-macro2", 1706 + "quote", 1707 + "syn 1.0.109", 1708 + ] 1709 + 1710 + [[package]] 1711 + name = "extension-traits" 1712 + version = "1.0.1" 1713 + source = "registry+https://github.com/rust-lang/crates.io-index" 1714 + checksum = "a296e5a895621edf9fa8329c83aa1cb69a964643e36cf54d8d7a69b789089537" 1715 + dependencies = [ 1716 + "ext-trait", 1717 + ] 1718 + 1719 + [[package]] 1720 + name = "eyre" 1721 + version = "0.6.8" 1722 + source = "registry+https://github.com/rust-lang/crates.io-index" 1723 + checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" 1724 + dependencies = [ 1725 + "indenter", 1726 + "once_cell", 1727 + ] 1728 + 1729 + [[package]] 1730 + name = "fastrand" 1731 + version = "1.9.0" 1732 + source = "registry+https://github.com/rust-lang/crates.io-index" 1733 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1734 + dependencies = [ 1735 + "instant", 1736 + ] 1737 1738 [[package]] 1739 name = "ff" 1740 + version = "0.10.1" 1741 source = "registry+https://github.com/rust-lang/crates.io-index" 1742 + checksum = "d0f40b2dcd8bc322217a5f6559ae5f9e9d1de202a2ecee2e9eafcbece7562a4f" 1743 dependencies = [ 1744 + "rand_core 0.6.4", 1745 + "subtle 2.4.1", 1746 + ] 1747 + 1748 + [[package]] 1749 + name = "ff" 1750 + version = "0.11.1" 1751 + source = "registry+https://github.com/rust-lang/crates.io-index" 1752 + checksum = "131655483be284720a17d74ff97592b8e76576dc25563148601df2d7c9080924" 1753 + dependencies = [ 1754 + "rand_core 0.6.4", 1755 + "subtle 2.4.1", 1756 ] 1757 1758 [[package]] 1759 name = "figment" 1760 + version = "0.10.8" 1761 source = "registry+https://github.com/rust-lang/crates.io-index" 1762 + checksum = "4e56602b469b2201400dec66a66aec5a9b8761ee97cd1b8c96ab2483fcc16cc9" 1763 dependencies = [ 1764 "atomic", 1765 "pear", ··· 1770 ] 1771 1772 [[package]] 1773 + name = "filetime" 1774 + version = "0.2.21" 1775 + source = "registry+https://github.com/rust-lang/crates.io-index" 1776 + checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" 1777 + dependencies = [ 1778 + "cfg-if", 1779 + "libc", 1780 + "redox_syscall 0.2.16", 1781 + "windows-sys 0.48.0", 1782 + ] 1783 + 1784 + [[package]] 1785 + name = "flate2" 1786 + version = "1.0.26" 1787 + source = "registry+https://github.com/rust-lang/crates.io-index" 1788 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 1789 + dependencies = [ 1790 + "crc32fast", 1791 + "miniz_oxide", 1792 + ] 1793 + 1794 + [[package]] 1795 + name = "flex-error" 1796 + version = "0.4.4" 1797 + source = "registry+https://github.com/rust-lang/crates.io-index" 1798 + checksum = "c606d892c9de11507fa0dcffc116434f94e105d0bbdc4e405b61519464c49d7b" 1799 + dependencies = [ 1800 + "eyre", 1801 + "paste", 1802 + ] 1803 + 1804 + [[package]] 1805 + name = "flume" 1806 + version = "0.10.14" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1809 + dependencies = [ 1810 + "futures-core", 1811 + "futures-sink", 1812 + "pin-project", 1813 + "spin 0.9.8", 1814 + ] 1815 + 1816 + [[package]] 1817 name = "fnv" 1818 version = "1.0.7" 1819 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1836 1837 [[package]] 1838 name = "form_urlencoded" 1839 + version = "1.1.0" 1840 source = "registry+https://github.com/rust-lang/crates.io-index" 1841 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1842 dependencies = [ 1843 "percent-encoding", 1844 ] 1845 1846 [[package]] 1847 + name = "forward_ref" 1848 + version = "1.0.0" 1849 source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "c8cbd1169bd7b4a0a20d92b9af7a7e0422888bd38a6f5ec29c1fd8c1558a272e" 1851 + 1852 + [[package]] 1853 + name = "fsevent-sys" 1854 + version = "4.1.0" 1855 + source = "registry+https://github.com/rust-lang/crates.io-index" 1856 + checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 1857 dependencies = [ 1858 "libc", 1859 ] 1860 1861 [[package]] 1862 + name = "fuchsia-cprng" 1863 + version = "0.1.1" 1864 + source = "registry+https://github.com/rust-lang/crates.io-index" 1865 + checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 1866 + 1867 + [[package]] 1868 name = "funty" 1869 + version = "2.0.0" 1870 source = "registry+https://github.com/rust-lang/crates.io-index" 1871 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1872 1873 [[package]] 1874 name = "futures" 1875 + version = "0.3.28" 1876 source = "registry+https://github.com/rust-lang/crates.io-index" 1877 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1878 dependencies = [ 1879 "futures-channel", 1880 "futures-core", ··· 1887 1888 [[package]] 1889 name = "futures-channel" 1890 + version = "0.3.28" 1891 source = "registry+https://github.com/rust-lang/crates.io-index" 1892 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1893 dependencies = [ 1894 "futures-core", 1895 "futures-sink", ··· 1897 1898 [[package]] 1899 name = "futures-core" 1900 + version = "0.3.28" 1901 source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1903 1904 [[package]] 1905 name = "futures-executor" 1906 + version = "0.3.28" 1907 source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1909 dependencies = [ 1910 "futures-core", 1911 "futures-task", 1912 "futures-util", 1913 + ] 1914 + 1915 + [[package]] 1916 + name = "futures-intrusive" 1917 + version = "0.4.2" 1918 + source = "registry+https://github.com/rust-lang/crates.io-index" 1919 + checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5" 1920 + dependencies = [ 1921 + "futures-core", 1922 + "lock_api", 1923 + "parking_lot 0.11.2", 1924 ] 1925 1926 [[package]] 1927 name = "futures-io" 1928 + version = "0.3.28" 1929 source = "registry+https://github.com/rust-lang/crates.io-index" 1930 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1931 1932 [[package]] 1933 name = "futures-macro" 1934 + version = "0.3.28" 1935 source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1937 dependencies = [ 1938 "proc-macro2", 1939 "quote", 1940 + "syn 2.0.16", 1941 ] 1942 1943 [[package]] 1944 name = "futures-sink" 1945 + version = "0.3.28" 1946 source = "registry+https://github.com/rust-lang/crates.io-index" 1947 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1948 1949 [[package]] 1950 name = "futures-task" 1951 + version = "0.3.28" 1952 source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1954 1955 [[package]] 1956 name = "futures-util" 1957 + version = "0.3.28" 1958 source = "registry+https://github.com/rust-lang/crates.io-index" 1959 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1960 dependencies = [ 1961 "futures-channel", 1962 "futures-core", 1963 "futures-io", ··· 1967 "memchr", 1968 "pin-project-lite", 1969 "pin-utils", 1970 "slab", 1971 ] 1972 1973 [[package]] 1974 + name = "gcc" 1975 + version = "0.3.55" 1976 source = "registry+https://github.com/rust-lang/crates.io-index" 1977 + checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" 1978 1979 [[package]] 1980 name = "generator" 1981 + version = "0.7.4" 1982 source = "registry+https://github.com/rust-lang/crates.io-index" 1983 + checksum = "f3e123d9ae7c02966b4d892e550bdc32164f05853cd40ab570650ad600596a8a" 1984 dependencies = [ 1985 "cc", 1986 "libc", 1987 "log", 1988 "rustversion", 1989 + "windows", 1990 ] 1991 1992 [[package]] ··· 2000 2001 [[package]] 2002 name = "generic-array" 2003 + version = "0.14.7" 2004 source = "registry+https://github.com/rust-lang/crates.io-index" 2005 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2006 dependencies = [ 2007 + "serde", 2008 "typenum", 2009 "version_check", 2010 + "zeroize", 2011 ] 2012 2013 [[package]] ··· 2016 source = "registry+https://github.com/rust-lang/crates.io-index" 2017 checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 2018 dependencies = [ 2019 + "cfg-if", 2020 "js-sys", 2021 "libc", 2022 "wasi 0.9.0+wasi-snapshot-preview1", ··· 2025 2026 [[package]] 2027 name = "getrandom" 2028 + version = "0.2.9" 2029 source = "registry+https://github.com/rust-lang/crates.io-index" 2030 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 2031 dependencies = [ 2032 + "cfg-if", 2033 "js-sys", 2034 "libc", 2035 + "wasi 0.11.0+wasi-snapshot-preview1", 2036 "wasm-bindgen", 2037 ] 2038 2039 [[package]] 2040 + name = "getset" 2041 + version = "0.1.2" 2042 + source = "registry+https://github.com/rust-lang/crates.io-index" 2043 + checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9" 2044 + dependencies = [ 2045 + "proc-macro-error", 2046 + "proc-macro2", 2047 + "quote", 2048 + "syn 1.0.109", 2049 + ] 2050 + 2051 + [[package]] 2052 + name = "ghash" 2053 + version = "0.5.0" 2054 + source = "registry+https://github.com/rust-lang/crates.io-index" 2055 + checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" 2056 + dependencies = [ 2057 + "opaque-debug 0.3.0", 2058 + "polyval", 2059 + ] 2060 + 2061 + [[package]] 2062 + name = "ghost" 2063 + version = "0.1.9" 2064 + source = "registry+https://github.com/rust-lang/crates.io-index" 2065 + checksum = "e77ac7b51b8e6313251737fcef4b1c01a2ea102bde68415b62c0ee9268fec357" 2066 + dependencies = [ 2067 + "proc-macro2", 2068 + "quote", 2069 + "syn 2.0.16", 2070 + ] 2071 + 2072 + [[package]] 2073 + name = "git2" 2074 + version = "0.14.4" 2075 + source = "registry+https://github.com/rust-lang/crates.io-index" 2076 + checksum = "d0155506aab710a86160ddb504a480d2964d7ab5b9e62419be69e0032bc5931c" 2077 + dependencies = [ 2078 + "bitflags", 2079 + "libc", 2080 + "libgit2-sys", 2081 + "log", 2082 + "url", 2083 + ] 2084 + 2085 + [[package]] 2086 name = "glob" 2087 + version = "0.3.1" 2088 + source = "registry+https://github.com/rust-lang/crates.io-index" 2089 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2090 + 2091 + [[package]] 2092 + name = "gloo-timers" 2093 + version = "0.2.6" 2094 source = "registry+https://github.com/rust-lang/crates.io-index" 2095 + checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 2096 + dependencies = [ 2097 + "futures-channel", 2098 + "futures-core", 2099 + "js-sys", 2100 + "wasm-bindgen", 2101 + ] 2102 2103 [[package]] 2104 name = "group" 2105 + version = "0.10.0" 2106 source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "1c363a5301b8f153d80747126a04b3c82073b9fe3130571a9d170cacdeaf7912" 2108 dependencies = [ 2109 + "byteorder", 2110 + "ff 0.10.1", 2111 + "rand_core 0.6.4", 2112 + "subtle 2.4.1", 2113 + ] 2114 + 2115 + [[package]] 2116 + name = "group" 2117 + version = "0.11.0" 2118 + source = "registry+https://github.com/rust-lang/crates.io-index" 2119 + checksum = "bc5ac374b108929de78460075f3dc439fa66df9d8fc77e8f12caa5165fcf0c89" 2120 + dependencies = [ 2121 + "byteorder", 2122 + "ff 0.11.1", 2123 + "rand_core 0.6.4", 2124 + "subtle 2.4.1", 2125 ] 2126 2127 [[package]] 2128 name = "h2" 2129 + version = "0.3.19" 2130 source = "registry+https://github.com/rust-lang/crates.io-index" 2131 + checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 2132 dependencies = [ 2133 "bytes", 2134 "fnv", ··· 2144 ] 2145 2146 [[package]] 2147 + name = "half" 2148 + version = "1.8.2" 2149 + source = "registry+https://github.com/rust-lang/crates.io-index" 2150 + checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 2151 + 2152 + [[package]] 2153 name = "handlebars" 2154 version = "3.5.5" 2155 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2168 version = "0.11.2" 2169 source = "registry+https://github.com/rust-lang/crates.io-index" 2170 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 2171 + dependencies = [ 2172 + "ahash 0.7.6", 2173 + ] 2174 + 2175 + [[package]] 2176 + name = "hashbrown" 2177 + version = "0.12.3" 2178 + source = "registry+https://github.com/rust-lang/crates.io-index" 2179 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2180 + dependencies = [ 2181 + "ahash 0.7.6", 2182 + ] 2183 + 2184 + [[package]] 2185 + name = "hashbrown" 2186 + version = "0.13.2" 2187 + source = "registry+https://github.com/rust-lang/crates.io-index" 2188 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2189 + dependencies = [ 2190 + "ahash 0.8.3", 2191 + ] 2192 + 2193 + [[package]] 2194 + name = "hashlink" 2195 + version = "0.7.0" 2196 + source = "registry+https://github.com/rust-lang/crates.io-index" 2197 + checksum = "7249a3129cbc1ffccd74857f81464a323a152173cdb134e0fd81bc803b29facf" 2198 + dependencies = [ 2199 + "hashbrown 0.11.2", 2200 + ] 2201 + 2202 + [[package]] 2203 + name = "hashlink" 2204 + version = "0.8.2" 2205 + source = "registry+https://github.com/rust-lang/crates.io-index" 2206 + checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" 2207 + dependencies = [ 2208 + "hashbrown 0.13.2", 2209 + ] 2210 + 2211 + [[package]] 2212 + name = "hdrhistogram" 2213 + version = "7.5.2" 2214 + source = "registry+https://github.com/rust-lang/crates.io-index" 2215 + checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" 2216 + dependencies = [ 2217 + "base64 0.13.1", 2218 + "byteorder", 2219 + "flate2", 2220 + "nom", 2221 + "num-traits", 2222 + ] 2223 + 2224 + [[package]] 2225 + name = "headers" 2226 + version = "0.3.8" 2227 + source = "registry+https://github.com/rust-lang/crates.io-index" 2228 + checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 2229 + dependencies = [ 2230 + "base64 0.13.1", 2231 + "bitflags", 2232 + "bytes", 2233 + "headers-core", 2234 + "http", 2235 + "httpdate", 2236 + "mime", 2237 + "sha1", 2238 + ] 2239 + 2240 + [[package]] 2241 + name = "headers-core" 2242 + version = "0.2.0" 2243 + source = "registry+https://github.com/rust-lang/crates.io-index" 2244 + checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 2245 + dependencies = [ 2246 + "http", 2247 + ] 2248 + 2249 + [[package]] 2250 + name = "heck" 2251 + version = "0.3.3" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 2254 + dependencies = [ 2255 + "unicode-segmentation", 2256 + ] 2257 + 2258 + [[package]] 2259 + name = "heck" 2260 + version = "0.4.1" 2261 + source = "registry+https://github.com/rust-lang/crates.io-index" 2262 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2263 + dependencies = [ 2264 + "unicode-segmentation", 2265 + ] 2266 2267 [[package]] 2268 name = "hermit-abi" ··· 2274 ] 2275 2276 [[package]] 2277 + name = "hermit-abi" 2278 + version = "0.2.6" 2279 + source = "registry+https://github.com/rust-lang/crates.io-index" 2280 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 2281 + dependencies = [ 2282 + "libc", 2283 + ] 2284 + 2285 + [[package]] 2286 + name = "hermit-abi" 2287 + version = "0.3.1" 2288 + source = "registry+https://github.com/rust-lang/crates.io-index" 2289 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 2290 + 2291 + [[package]] 2292 name = "hex" 2293 version = "0.4.3" 2294 source = "registry+https://github.com/rust-lang/crates.io-index" 2295 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2296 2297 [[package]] 2298 + name = "hex-literal" 2299 + version = "0.3.4" 2300 source = "registry+https://github.com/rust-lang/crates.io-index" 2301 + checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" 2302 + 2303 + [[package]] 2304 + name = "hidapi" 2305 + version = "1.5.0" 2306 + source = "registry+https://github.com/rust-lang/crates.io-index" 2307 + checksum = "798154e4b6570af74899d71155fb0072d5b17e6aa12f39c8ef22c60fb8ec99e7" 2308 dependencies = [ 2309 + "cc", 2310 + "libc", 2311 + "pkg-config", 2312 + "winapi", 2313 ] 2314 2315 [[package]] 2316 name = "hkdf" 2317 + version = "0.11.0" 2318 source = "registry+https://github.com/rust-lang/crates.io-index" 2319 + checksum = "01706d578d5c281058480e673ae4086a9f4710d8df1ad80a5b03e39ece5f886b" 2320 dependencies = [ 2321 "digest 0.9.0", 2322 + "hmac 0.11.0", 2323 ] 2324 2325 [[package]] 2326 + name = "hkdf" 2327 + version = "0.12.3" 2328 source = "registry+https://github.com/rust-lang/crates.io-index" 2329 + checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 2330 dependencies = [ 2331 + "hmac 0.12.1", 2332 ] 2333 2334 [[package]] 2335 name = "hmac" 2336 + version = "0.11.0" 2337 source = "registry+https://github.com/rust-lang/crates.io-index" 2338 + checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" 2339 dependencies = [ 2340 + "crypto-mac 0.11.1", 2341 "digest 0.9.0", 2342 ] 2343 2344 [[package]] 2345 name = "hmac" 2346 + version = "0.12.1" 2347 source = "registry+https://github.com/rust-lang/crates.io-index" 2348 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2349 dependencies = [ 2350 + "digest 0.10.6", 2351 ] 2352 2353 [[package]] 2354 name = "http" 2355 + version = "0.2.9" 2356 source = "registry+https://github.com/rust-lang/crates.io-index" 2357 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2358 dependencies = [ 2359 "bytes", 2360 "fnv", ··· 2363 2364 [[package]] 2365 name = "http-body" 2366 + version = "0.4.5" 2367 source = "registry+https://github.com/rust-lang/crates.io-index" 2368 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2369 dependencies = [ 2370 "bytes", 2371 "http", ··· 2374 2375 [[package]] 2376 name = "httparse" 2377 + version = "1.8.0" 2378 source = "registry+https://github.com/rust-lang/crates.io-index" 2379 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2380 2381 [[package]] 2382 name = "httpdate" 2383 + version = "1.0.2" 2384 source = "registry+https://github.com/rust-lang/crates.io-index" 2385 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2386 2387 [[package]] 2388 name = "humantime" ··· 2401 2402 [[package]] 2403 name = "humantime-serde" 2404 + version = "1.1.1" 2405 source = "registry+https://github.com/rust-lang/crates.io-index" 2406 + checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" 2407 dependencies = [ 2408 "humantime 2.1.0", 2409 "serde", ··· 2411 2412 [[package]] 2413 name = "hyper" 2414 + version = "0.14.26" 2415 source = "registry+https://github.com/rust-lang/crates.io-index" 2416 + checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" 2417 dependencies = [ 2418 "bytes", 2419 "futures-channel", ··· 2434 ] 2435 2436 [[package]] 2437 + name = "hyper-proxy" 2438 + version = "0.9.1" 2439 + source = "registry+https://github.com/rust-lang/crates.io-index" 2440 + checksum = "ca815a891b24fdfb243fa3239c86154392b0953ee584aa1a2a1f66d20cbe75cc" 2441 + dependencies = [ 2442 + "bytes", 2443 + "futures", 2444 + "headers", 2445 + "http", 2446 + "hyper", 2447 + "hyper-rustls", 2448 + "rustls-native-certs", 2449 + "tokio", 2450 + "tokio-rustls 0.22.0", 2451 + "tower-service", 2452 + "webpki 0.21.4", 2453 + ] 2454 + 2455 + [[package]] 2456 + name = "hyper-rustls" 2457 + version = "0.22.1" 2458 + source = "registry+https://github.com/rust-lang/crates.io-index" 2459 + checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64" 2460 + dependencies = [ 2461 + "ct-logs", 2462 + "futures-util", 2463 + "hyper", 2464 + "log", 2465 + "rustls 0.19.1", 2466 + "rustls-native-certs", 2467 + "tokio", 2468 + "tokio-rustls 0.22.0", 2469 + "webpki 0.21.4", 2470 + "webpki-roots 0.21.1", 2471 + ] 2472 + 2473 + [[package]] 2474 + name = "hyper-timeout" 2475 + version = "0.4.1" 2476 + source = "registry+https://github.com/rust-lang/crates.io-index" 2477 + checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 2478 + dependencies = [ 2479 + "hyper", 2480 + "pin-project-lite", 2481 + "tokio", 2482 + "tokio-io-timeout", 2483 + ] 2484 + 2485 + [[package]] 2486 name = "hyper-tls" 2487 version = "0.5.0" 2488 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2496 ] 2497 2498 [[package]] 2499 + name = "iana-time-zone" 2500 + version = "0.1.56" 2501 + source = "registry+https://github.com/rust-lang/crates.io-index" 2502 + checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 2503 + dependencies = [ 2504 + "android_system_properties", 2505 + "core-foundation-sys", 2506 + "iana-time-zone-haiku", 2507 + "js-sys", 2508 + "wasm-bindgen", 2509 + "windows", 2510 + ] 2511 + 2512 + [[package]] 2513 + name = "iana-time-zone-haiku" 2514 + version = "0.1.2" 2515 + source = "registry+https://github.com/rust-lang/crates.io-index" 2516 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2517 + dependencies = [ 2518 + "cc", 2519 + ] 2520 + 2521 + [[package]] 2522 + name = "ident_case" 2523 + version = "1.0.1" 2524 + source = "registry+https://github.com/rust-lang/crates.io-index" 2525 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2526 + 2527 + [[package]] 2528 name = "idna" 2529 version = "0.2.3" 2530 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2536 ] 2537 2538 [[package]] 2539 + name = "idna" 2540 + version = "0.3.0" 2541 + source = "registry+https://github.com/rust-lang/crates.io-index" 2542 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2543 + dependencies = [ 2544 + "unicode-bidi", 2545 + "unicode-normalization", 2546 + ] 2547 + 2548 + [[package]] 2549 + name = "indenter" 2550 + version = "0.3.3" 2551 + source = "registry+https://github.com/rust-lang/crates.io-index" 2552 + checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" 2553 + 2554 + [[package]] 2555 + name = "indexed_db_futures" 2556 + version = "0.3.0" 2557 + source = "registry+https://github.com/rust-lang/crates.io-index" 2558 + checksum = "bfbcff6ae46750b15cc594bfd277b188cbddcfdc1817848f97f03f26f8625b9e" 2559 + dependencies = [ 2560 + "cfg-if", 2561 + "js-sys", 2562 + "uuid 1.3.3", 2563 + "wasm-bindgen", 2564 + "wasm-bindgen-futures", 2565 + "web-sys", 2566 + ] 2567 + 2568 + [[package]] 2569 name = "indexmap" 2570 + version = "1.9.3" 2571 source = "registry+https://github.com/rust-lang/crates.io-index" 2572 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2573 dependencies = [ 2574 + "autocfg 1.1.0", 2575 + "hashbrown 0.12.3", 2576 "serde", 2577 ] 2578 2579 [[package]] 2580 name = "inlinable_string" 2581 + version = "0.1.15" 2582 source = "registry+https://github.com/rust-lang/crates.io-index" 2583 + checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb" 2584 + 2585 + [[package]] 2586 + name = "inotify" 2587 + version = "0.9.6" 2588 + source = "registry+https://github.com/rust-lang/crates.io-index" 2589 + checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 2590 + dependencies = [ 2591 + "bitflags", 2592 + "inotify-sys", 2593 + "libc", 2594 + ] 2595 + 2596 + [[package]] 2597 + name = "inotify-sys" 2598 + version = "0.1.5" 2599 + source = "registry+https://github.com/rust-lang/crates.io-index" 2600 + checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 2601 + dependencies = [ 2602 + "libc", 2603 + ] 2604 + 2605 + [[package]] 2606 + name = "inout" 2607 + version = "0.1.3" 2608 + source = "registry+https://github.com/rust-lang/crates.io-index" 2609 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2610 + dependencies = [ 2611 + "generic-array 0.14.7", 2612 + ] 2613 2614 [[package]] 2615 name = "input_buffer" ··· 2622 2623 [[package]] 2624 name = "instant" 2625 + version = "0.1.12" 2626 + source = "registry+https://github.com/rust-lang/crates.io-index" 2627 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2628 + dependencies = [ 2629 + "cfg-if", 2630 + "js-sys", 2631 + "wasm-bindgen", 2632 + "web-sys", 2633 + ] 2634 + 2635 + [[package]] 2636 + name = "inventory" 2637 + version = "0.1.11" 2638 + source = "registry+https://github.com/rust-lang/crates.io-index" 2639 + checksum = "f0eb5160c60ba1e809707918ee329adb99d222888155835c6feedba19f6c3fd4" 2640 + dependencies = [ 2641 + "ctor", 2642 + "ghost", 2643 + "inventory-impl", 2644 + ] 2645 + 2646 + [[package]] 2647 + name = "inventory-impl" 2648 + version = "0.1.11" 2649 + source = "registry+https://github.com/rust-lang/crates.io-index" 2650 + checksum = "7e41b53715c6f0c4be49510bb82dee2c1e51c8586d885abe65396e82ed518548" 2651 + dependencies = [ 2652 + "proc-macro2", 2653 + "quote", 2654 + "syn 1.0.109", 2655 + ] 2656 + 2657 + [[package]] 2658 + name = "io-lifetimes" 2659 + version = "1.0.10" 2660 source = "registry+https://github.com/rust-lang/crates.io-index" 2661 + checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 2662 dependencies = [ 2663 + "hermit-abi 0.3.1", 2664 + "libc", 2665 + "windows-sys 0.48.0", 2666 ] 2667 2668 [[package]] 2669 name = "ipnet" 2670 + version = "2.7.2" 2671 + source = "registry+https://github.com/rust-lang/crates.io-index" 2672 + checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 2673 + 2674 + [[package]] 2675 + name = "ipnetwork" 2676 + version = "0.18.0" 2677 source = "registry+https://github.com/rust-lang/crates.io-index" 2678 + checksum = "4088d739b183546b239688ddbc79891831df421773df95e236daf7867866d355" 2679 + dependencies = [ 2680 + "serde", 2681 + ] 2682 2683 [[package]] 2684 name = "ipnetwork" 2685 + version = "0.20.0" 2686 source = "registry+https://github.com/rust-lang/crates.io-index" 2687 + checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" 2688 dependencies = [ 2689 "serde", 2690 ] 2691 2692 [[package]] 2693 + name = "is-terminal" 2694 version = "0.4.7" 2695 source = "registry+https://github.com/rust-lang/crates.io-index" 2696 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 2697 + dependencies = [ 2698 + "hermit-abi 0.3.1", 2699 + "io-lifetimes", 2700 + "rustix", 2701 + "windows-sys 0.48.0", 2702 + ] 2703 + 2704 + [[package]] 2705 + name = "isocountry" 2706 + version = "0.3.2" 2707 + source = "registry+https://github.com/rust-lang/crates.io-index" 2708 + checksum = "1ea1dc4bf0fb4904ba83ffdb98af3d9c325274e92e6e295e4151e86c96363e04" 2709 + dependencies = [ 2710 + "serde", 2711 + "thiserror", 2712 + ] 2713 + 2714 + [[package]] 2715 + name = "itertools" 2716 + version = "0.10.5" 2717 + source = "registry+https://github.com/rust-lang/crates.io-index" 2718 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2719 + dependencies = [ 2720 + "either", 2721 + ] 2722 + 2723 + [[package]] 2724 + name = "itoa" 2725 + version = "1.0.6" 2726 + source = "registry+https://github.com/rust-lang/crates.io-index" 2727 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 2728 + 2729 + [[package]] 2730 + name = "jni" 2731 + version = "0.21.1" 2732 + source = "registry+https://github.com/rust-lang/crates.io-index" 2733 + checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 2734 + dependencies = [ 2735 + "cesu8", 2736 + "cfg-if", 2737 + "combine", 2738 + "jni-sys", 2739 + "log", 2740 + "thiserror", 2741 + "walkdir", 2742 + "windows-sys 0.45.0", 2743 + ] 2744 + 2745 + [[package]] 2746 + name = "jni-sys" 2747 + version = "0.3.0" 2748 + source = "registry+https://github.com/rust-lang/crates.io-index" 2749 + checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 2750 + 2751 + [[package]] 2752 + name = "jobserver" 2753 + version = "0.1.26" 2754 + source = "registry+https://github.com/rust-lang/crates.io-index" 2755 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 2756 + dependencies = [ 2757 + "libc", 2758 + ] 2759 2760 [[package]] 2761 name = "js-sys" 2762 + version = "0.3.60" 2763 source = "registry+https://github.com/rust-lang/crates.io-index" 2764 + checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 2765 dependencies = [ 2766 "wasm-bindgen", 2767 ] 2768 2769 [[package]] 2770 name = "k256" 2771 + version = "0.10.4" 2772 source = "registry+https://github.com/rust-lang/crates.io-index" 2773 + checksum = "19c3a5e0a0b8450278feda242592512e09f61c72e018b8cd5c859482802daf2d" 2774 dependencies = [ 2775 + "cfg-if", 2776 "ecdsa", 2777 "elliptic-curve", 2778 + "sec1", 2779 + "sha2 0.9.9", 2780 + "sha3", 2781 + ] 2782 + 2783 + [[package]] 2784 + name = "keccak" 2785 + version = "0.1.4" 2786 + source = "registry+https://github.com/rust-lang/crates.io-index" 2787 + checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" 2788 + dependencies = [ 2789 + "cpufeatures", 2790 ] 2791 2792 [[package]] ··· 2796 checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" 2797 2798 [[package]] 2799 + name = "kqueue" 2800 + version = "1.0.7" 2801 + source = "registry+https://github.com/rust-lang/crates.io-index" 2802 + checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98" 2803 + dependencies = [ 2804 + "kqueue-sys", 2805 + "libc", 2806 + ] 2807 + 2808 + [[package]] 2809 + name = "kqueue-sys" 2810 + version = "1.0.3" 2811 + source = "registry+https://github.com/rust-lang/crates.io-index" 2812 + checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" 2813 + dependencies = [ 2814 + "bitflags", 2815 + "libc", 2816 + ] 2817 + 2818 + [[package]] 2819 name = "lazy_static" 2820 version = "1.4.0" 2821 source = "registry+https://github.com/rust-lang/crates.io-index" 2822 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2823 2824 [[package]] 2825 + name = "ledger" 2826 + version = "0.1.0" 2827 + dependencies = [ 2828 + "bip32", 2829 + "k256", 2830 + "ledger-transport", 2831 + "ledger-transport-hid", 2832 + "thiserror", 2833 + ] 2834 + 2835 + [[package]] 2836 + name = "ledger-apdu" 2837 + version = "0.10.0" 2838 + source = "registry+https://github.com/rust-lang/crates.io-index" 2839 + checksum = "fe435806c197dfeaa5efcded5e623c4b8230fd28fdf1e91e7a86e40ef2acbf90" 2840 + dependencies = [ 2841 + "arrayref", 2842 + "no-std-compat", 2843 + "snafu", 2844 + ] 2845 + 2846 + [[package]] 2847 + name = "ledger-transport" 2848 + version = "0.10.0" 2849 + source = "registry+https://github.com/rust-lang/crates.io-index" 2850 + checksum = "1117f2143d92c157197785bf57711d7b02f2cfa101e162f8ca7900fb7f976321" 2851 + dependencies = [ 2852 + "async-trait", 2853 + "ledger-apdu", 2854 + ] 2855 + 2856 + [[package]] 2857 + name = "ledger-transport-hid" 2858 + version = "0.10.0" 2859 + source = "registry+https://github.com/rust-lang/crates.io-index" 2860 + checksum = "45ba81a1f5f24396b37211478aff7fbcd605dd4544df8dbed07b9da3c2057aee" 2861 + dependencies = [ 2862 + "byteorder", 2863 + "cfg-if", 2864 + "hex", 2865 + "hidapi", 2866 + "ledger-transport", 2867 + "libc", 2868 + "log", 2869 + "thiserror", 2870 + ] 2871 + 2872 + [[package]] 2873 name = "libc" 2874 + version = "0.2.144" 2875 source = "registry+https://github.com/rust-lang/crates.io-index" 2876 + checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 2877 + 2878 + [[package]] 2879 + name = "libgit2-sys" 2880 + version = "0.13.5+1.4.5" 2881 + source = "registry+https://github.com/rust-lang/crates.io-index" 2882 + checksum = "51e5ea06c26926f1002dd553fded6cfcdc9784c1f60feeb58368b4d9b07b6dba" 2883 + dependencies = [ 2884 + "cc", 2885 + "libc", 2886 + "libz-sys", 2887 + "pkg-config", 2888 + ] 2889 2890 [[package]] 2891 name = "libm" 2892 + version = "0.2.7" 2893 + source = "registry+https://github.com/rust-lang/crates.io-index" 2894 + checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 2895 + 2896 + [[package]] 2897 + name = "libsqlite3-sys" 2898 + version = "0.24.2" 2899 + source = "registry+https://github.com/rust-lang/crates.io-index" 2900 + checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14" 2901 + dependencies = [ 2902 + "cc", 2903 + "pkg-config", 2904 + "vcpkg", 2905 + ] 2906 + 2907 + [[package]] 2908 + name = "libz-sys" 2909 + version = "1.1.9" 2910 + source = "registry+https://github.com/rust-lang/crates.io-index" 2911 + checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 2912 + dependencies = [ 2913 + "cc", 2914 + "libc", 2915 + "pkg-config", 2916 + "vcpkg", 2917 + ] 2918 + 2919 + [[package]] 2920 + name = "linux-raw-sys" 2921 + version = "0.3.7" 2922 source = "registry+https://github.com/rust-lang/crates.io-index" 2923 + checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 2924 2925 [[package]] 2926 name = "lioness" ··· 2929 checksum = "4ae926706ba42c425c9457121178330d75e273df2e82e28b758faf3de3a9acb9" 2930 dependencies = [ 2931 "arrayref", 2932 + "blake2 0.8.1", 2933 "chacha", 2934 "keystream", 2935 ] 2936 2937 [[package]] 2938 name = "lock_api" 2939 + version = "0.4.9" 2940 source = "registry+https://github.com/rust-lang/crates.io-index" 2941 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2942 dependencies = [ 2943 + "autocfg 1.1.0", 2944 "scopeguard", 2945 ] 2946 2947 [[package]] 2948 name = "log" 2949 + version = "0.4.17" 2950 source = "registry+https://github.com/rust-lang/crates.io-index" 2951 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 2952 dependencies = [ 2953 + "cfg-if", 2954 ] 2955 2956 [[package]] 2957 name = "loom" 2958 + version = "0.5.6" 2959 source = "registry+https://github.com/rust-lang/crates.io-index" 2960 + checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 2961 dependencies = [ 2962 + "cfg-if", 2963 "generator", 2964 "scoped-tls", 2965 "serde", 2966 "serde_json", 2967 + "tracing", 2968 + "tracing-subscriber", 2969 ] 2970 2971 [[package]] 2972 + name = "macro_rules_attribute" 2973 + version = "0.1.3" 2974 source = "registry+https://github.com/rust-lang/crates.io-index" 2975 + checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862" 2976 + dependencies = [ 2977 + "macro_rules_attribute-proc_macro", 2978 + "paste", 2979 + ] 2980 2981 [[package]] 2982 + name = "macro_rules_attribute-proc_macro" 2983 + version = "0.1.3" 2984 source = "registry+https://github.com/rust-lang/crates.io-index" 2985 + checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d" 2986 2987 [[package]] 2988 + name = "matchers" 2989 + version = "0.1.0" 2990 source = "registry+https://github.com/rust-lang/crates.io-index" 2991 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2992 dependencies = [ 2993 + "regex-automata", 2994 ] 2995 2996 [[package]] 2997 + name = "matches" 2998 + version = "0.1.10" 2999 source = "registry+https://github.com/rust-lang/crates.io-index" 3000 + checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 3001 3002 [[package]] 3003 + name = "matchit" 3004 + version = "0.7.0" 3005 source = "registry+https://github.com/rust-lang/crates.io-index" 3006 + checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 3007 3008 [[package]] 3009 + name = "maxminddb" 3010 + version = "0.23.0" 3011 source = "registry+https://github.com/rust-lang/crates.io-index" 3012 + checksum = "fe2ba61113f9f7a9f0e87c519682d39c43a6f3f79c2cc42c3ba3dda83b1fa334" 3013 dependencies = [ 3014 + "ipnetwork 0.18.0", 3015 "log", 3016 + "memchr", 3017 + "serde", 3018 ] 3019 3020 [[package]] 3021 + name = "memchr" 3022 + version = "2.5.0" 3023 + source = "registry+https://github.com/rust-lang/crates.io-index" 3024 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 3025 + 3026 + [[package]] 3027 + name = "memoffset" 3028 + version = "0.8.0" 3029 source = "registry+https://github.com/rust-lang/crates.io-index" 3030 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 3031 dependencies = [ 3032 + "autocfg 1.1.0", 3033 ] 3034 3035 [[package]] 3036 + name = "mime" 3037 + version = "0.3.17" 3038 + source = "registry+https://github.com/rust-lang/crates.io-index" 3039 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3040 + 3041 + [[package]] 3042 + name = "minimal-lexical" 3043 + version = "0.2.1" 3044 + source = "registry+https://github.com/rust-lang/crates.io-index" 3045 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3046 3047 [[package]] 3048 + name = "miniz_oxide" 3049 + version = "0.7.1" 3050 + source = "registry+https://github.com/rust-lang/crates.io-index" 3051 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 3052 dependencies = [ 3053 + "adler", 3054 ] 3055 3056 [[package]] 3057 + name = "mio" 3058 + version = "0.8.6" 3059 + source = "registry+https://github.com/rust-lang/crates.io-index" 3060 + checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 3061 dependencies = [ 3062 + "libc", 3063 "log", 3064 + "wasi 0.11.0+wasi-snapshot-preview1", 3065 + "windows-sys 0.45.0", 3066 ] 3067 3068 [[package]] 3069 name = "multer" 3070 + version = "2.1.0" 3071 source = "registry+https://github.com/rust-lang/crates.io-index" 3072 + checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2" 3073 dependencies = [ 3074 "bytes", 3075 "encoding_rs", 3076 "futures-util", 3077 "http", 3078 "httparse", 3079 "log", 3080 + "memchr", 3081 "mime", 3082 + "spin 0.9.8", 3083 "tokio", 3084 "tokio-util", 3085 "version_check", 3086 ] 3087 3088 [[package]] 3089 name = "native-tls" 3090 + version = "0.2.11" 3091 source = "registry+https://github.com/rust-lang/crates.io-index" 3092 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 3093 dependencies = [ 3094 "lazy_static", 3095 "libc", ··· 3104 ] 3105 3106 [[package]] 3107 + name = "no-std-compat" 3108 + version = "0.4.1" 3109 + source = "registry+https://github.com/rust-lang/crates.io-index" 3110 + checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" 3111 + 3112 + [[package]] 3113 + name = "nom" 3114 + version = "7.1.3" 3115 + source = "registry+https://github.com/rust-lang/crates.io-index" 3116 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3117 + dependencies = [ 3118 + "memchr", 3119 + "minimal-lexical", 3120 + ] 3121 + 3122 + [[package]] 3123 + name = "notify" 3124 + version = "5.2.0" 3125 + source = "registry+https://github.com/rust-lang/crates.io-index" 3126 + checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" 3127 dependencies = [ 3128 + "bitflags", 3129 + "crossbeam-channel", 3130 + "filetime", 3131 + "fsevent-sys", 3132 + "inotify", 3133 + "kqueue", 3134 + "libc", 3135 + "mio", 3136 + "walkdir", 3137 + "windows-sys 0.45.0", 3138 ] 3139 3140 [[package]] 3141 name = "ntapi" 3142 + version = "0.4.1" 3143 source = "registry+https://github.com/rust-lang/crates.io-index" 3144 + checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 3145 dependencies = [ 3146 "winapi", 3147 ] 3148 3149 [[package]] 3150 + name = "nu-ansi-term" 3151 + version = "0.46.0" 3152 + source = "registry+https://github.com/rust-lang/crates.io-index" 3153 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 3154 + dependencies = [ 3155 + "overload", 3156 + "winapi", 3157 + ] 3158 + 3159 + [[package]] 3160 + name = "num-derive" 3161 + version = "0.3.3" 3162 + source = "registry+https://github.com/rust-lang/crates.io-index" 3163 + checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 3164 + dependencies = [ 3165 + "proc-macro2", 3166 + "quote", 3167 + "syn 1.0.109", 3168 + ] 3169 + 3170 + [[package]] 3171 + name = "num-integer" 3172 + version = "0.1.45" 3173 + source = "registry+https://github.com/rust-lang/crates.io-index" 3174 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3175 + dependencies = [ 3176 + "autocfg 1.1.0", 3177 + "num-traits", 3178 + ] 3179 + 3180 + [[package]] 3181 name = "num-traits" 3182 + version = "0.2.15" 3183 source = "registry+https://github.com/rust-lang/crates.io-index" 3184 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 3185 dependencies = [ 3186 + "autocfg 1.1.0", 3187 "libm", 3188 ] 3189 3190 [[package]] 3191 name = "num_cpus" 3192 + version = "1.15.0" 3193 source = "registry+https://github.com/rust-lang/crates.io-index" 3194 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 3195 dependencies = [ 3196 + "hermit-abi 0.2.6", 3197 "libc", 3198 ] 3199 3200 [[package]] 3201 + name = "nym-api" 3202 + version = "1.1.22" 3203 + dependencies = [ 3204 + "anyhow", 3205 + "async-trait", 3206 + "bip39", 3207 + "bs58", 3208 + "cfg-if", 3209 + "clap 4.2.7", 3210 + "console-subscriber", 3211 + "cosmwasm-std", 3212 + "cw-utils", 3213 + "cw3", 3214 + "cw4", 3215 + "dirs", 3216 + "futures", 3217 + "getset", 3218 + "humantime-serde", 3219 + "lazy_static", 3220 + "log", 3221 + "nym-api-requests", 3222 + "nym-bandwidth-controller", 3223 + "nym-bin-common", 3224 + "nym-coconut", 3225 + "nym-coconut-bandwidth-contract-common", 3226 + "nym-coconut-dkg-common", 3227 + "nym-coconut-interface", 3228 + "nym-config", 3229 + "nym-contracts-common", 3230 + "nym-credential-storage", 3231 + "nym-credentials", 3232 + "nym-crypto", 3233 + "nym-dkg", 3234 + "nym-gateway-client", 3235 + "nym-inclusion-probability", 3236 + "nym-mixnet-contract-common", 3237 + "nym-multisig-contract-common", 3238 + "nym-name-service-common", 3239 + "nym-node-tester-utils", 3240 + "nym-pemstore", 3241 + "nym-service-provider-directory-common", 3242 + "nym-sphinx", 3243 + "nym-task", 3244 + "nym-topology", 3245 + "nym-validator-client", 3246 + "nym-vesting-contract-common", 3247 + "okapi", 3248 + "pin-project", 3249 + "pretty_env_logger", 3250 + "rand 0.7.3", 3251 + "rand 0.8.5", 3252 + "reqwest", 3253 + "rocket", 3254 + "rocket_cors", 3255 + "rocket_okapi", 3256 + "schemars", 3257 + "serde", 3258 + "serde_json", 3259 + "sqlx 0.6.3", 3260 + "tap", 3261 + "thiserror", 3262 + "time 0.3.21", 3263 + "tokio", 3264 + "tokio-stream", 3265 + "ts-rs", 3266 + "url", 3267 + ] 3268 + 3269 + [[package]] 3270 + name = "nym-api-requests" 3271 + version = "0.1.0" 3272 + dependencies = [ 3273 + "bs58", 3274 + "cosmrs", 3275 + "cosmwasm-std", 3276 + "getset", 3277 + "nym-coconut-interface", 3278 + "nym-mixnet-contract-common", 3279 + "schemars", 3280 + "serde", 3281 + "ts-rs", 3282 + ] 3283 + 3284 + [[package]] 3285 + name = "nym-bandwidth-controller" 3286 + version = "0.1.0" 3287 + dependencies = [ 3288 + "bip39", 3289 + "nym-coconut-interface", 3290 + "nym-credential-storage", 3291 + "nym-credentials", 3292 + "nym-crypto", 3293 + "nym-network-defaults", 3294 + "nym-validator-client", 3295 + "rand 0.7.3", 3296 + "thiserror", 3297 + "url", 3298 + ] 3299 + 3300 + [[package]] 3301 + name = "nym-bin-common" 3302 + version = "0.5.0" 3303 + dependencies = [ 3304 + "atty", 3305 + "clap 4.2.7", 3306 + "clap_complete", 3307 + "clap_complete_fig", 3308 + "log", 3309 + "pretty_env_logger", 3310 + "semver 0.11.0", 3311 + "serde", 3312 + "serde_json", 3313 + "tracing-appender", 3314 + "tracing-subscriber", 3315 + "tracing-tree", 3316 + "vergen", 3317 + ] 3318 + 3319 + [[package]] 3320 + name = "nym-bity-integration" 3321 + version = "0.1.0" 3322 + dependencies = [ 3323 + "anyhow", 3324 + "cosmrs", 3325 + "eyre", 3326 + "k256", 3327 + "nym-cli-commands", 3328 + "nym-validator-client", 3329 + "serde", 3330 + "serde_json", 3331 + "thiserror", 3332 + ] 3333 + 3334 + [[package]] 3335 + name = "nym-cli" 3336 + version = "1.1.21" 3337 + dependencies = [ 3338 + "anyhow", 3339 + "base64 0.13.1", 3340 + "bip39", 3341 + "bs58", 3342 + "clap 4.2.7", 3343 + "clap_complete", 3344 + "clap_complete_fig", 3345 + "dotenvy", 3346 + "log", 3347 + "nym-bin-common", 3348 + "nym-cli-commands", 3349 + "nym-network-defaults", 3350 + "nym-validator-client", 3351 + "pretty_env_logger", 3352 + "serde", 3353 + "serde_json", 3354 + "tap", 3355 + "tokio", 3356 + ] 3357 + 3358 + [[package]] 3359 + name = "nym-cli-commands" 3360 + version = "1.0.0" 3361 + dependencies = [ 3362 + "base64 0.13.1", 3363 + "bip39", 3364 + "bs58", 3365 + "cfg-if", 3366 + "clap 4.2.7", 3367 + "comfy-table", 3368 + "cosmrs", 3369 + "cosmwasm-std", 3370 + "cw-utils", 3371 + "handlebars", 3372 + "humantime-serde", 3373 + "k256", 3374 + "log", 3375 + "nym-bin-common", 3376 + "nym-coconut-bandwidth-contract-common", 3377 + "nym-coconut-dkg-common", 3378 + "nym-contracts-common", 3379 + "nym-crypto", 3380 + "nym-mixnet-contract-common", 3381 + "nym-multisig-contract-common", 3382 + "nym-name-service-common", 3383 + "nym-network-defaults", 3384 + "nym-service-provider-directory-common", 3385 + "nym-sphinx", 3386 + "nym-validator-client", 3387 + "nym-vesting-contract-common", 3388 + "rand 0.6.5", 3389 + "serde", 3390 + "serde_json", 3391 + "tap", 3392 + "thiserror", 3393 + "time 0.3.21", 3394 + "toml", 3395 + "url", 3396 + ] 3397 + 3398 + [[package]] 3399 name = "nym-client" 3400 + version = "1.1.21" 3401 dependencies = [ 3402 + "clap 4.2.7", 3403 "dirs", 3404 "futures", 3405 + "lazy_static", 3406 "log", 3407 + "nym-bandwidth-controller", 3408 + "nym-bin-common", 3409 + "nym-client-core", 3410 + "nym-client-websocket-requests", 3411 + "nym-coconut-interface", 3412 + "nym-config", 3413 + "nym-credential-storage", 3414 + "nym-credentials", 3415 + "nym-crypto", 3416 + "nym-gateway-requests", 3417 + "nym-network-defaults", 3418 + "nym-pemstore", 3419 + "nym-sphinx", 3420 + "nym-task", 3421 + "nym-topology", 3422 + "nym-validator-client", 3423 "pretty_env_logger", 3424 "rand 0.7.3", 3425 "serde", 3426 "serde_json", 3427 + "tap", 3428 + "thiserror", 3429 "tokio", 3430 + "tokio-tungstenite 0.14.0", 3431 "url", 3432 ] 3433 3434 [[package]] 3435 + name = "nym-client-core" 3436 + version = "1.1.14" 3437 dependencies = [ 3438 + "async-trait", 3439 + "dashmap 5.4.0", 3440 + "dirs", 3441 "futures", 3442 + "gloo-timers", 3443 + "humantime-serde", 3444 + "log", 3445 + "nym-bandwidth-controller", 3446 + "nym-config", 3447 + "nym-credential-storage", 3448 + "nym-crypto", 3449 + "nym-gateway-client", 3450 + "nym-gateway-requests", 3451 + "nym-network-defaults", 3452 + "nym-nonexhaustive-delayqueue", 3453 + "nym-pemstore", 3454 + "nym-sphinx", 3455 + "nym-task", 3456 + "nym-topology", 3457 + "nym-validator-client", 3458 "rand 0.7.3", 3459 "serde", 3460 + "serde_json", 3461 + "sqlx 0.6.3", 3462 + "tap", 3463 + "tempfile", 3464 + "thiserror", 3465 + "time 0.3.21", 3466 + "tokio", 3467 + "tokio-stream", 3468 + "tokio-tungstenite 0.14.0", 3469 + "tungstenite 0.13.0", 3470 + "url", 3471 "wasm-bindgen", 3472 "wasm-bindgen-futures", 3473 + "wasm-timer", 3474 "wasm-utils", 3475 + "zeroize", 3476 + ] 3477 + 3478 + [[package]] 3479 + name = "nym-client-websocket-requests" 3480 + version = "0.1.0" 3481 + dependencies = [ 3482 + "nym-sphinx", 3483 + "serde", 3484 + "serde_json", 3485 + ] 3486 + 3487 + [[package]] 3488 + name = "nym-coconut" 3489 + version = "0.5.0" 3490 + dependencies = [ 3491 + "bls12_381 0.6.0", 3492 + "bs58", 3493 + "criterion", 3494 + "digest 0.9.0", 3495 + "doc-comment", 3496 + "ff 0.11.1", 3497 + "getrandom 0.2.9", 3498 + "group 0.11.0", 3499 + "itertools", 3500 + "nym-dkg", 3501 + "nym-pemstore", 3502 + "rand 0.8.5", 3503 + "rand_chacha 0.3.1", 3504 + "serde", 3505 + "serde_derive", 3506 + "sha2 0.9.9", 3507 + "thiserror", 3508 + ] 3509 + 3510 + [[package]] 3511 + name = "nym-coconut-bandwidth-contract-common" 3512 + version = "0.1.0" 3513 + dependencies = [ 3514 + "cosmwasm-std", 3515 + "nym-multisig-contract-common", 3516 + "schemars", 3517 + "serde", 3518 + ] 3519 + 3520 + [[package]] 3521 + name = "nym-coconut-dkg-common" 3522 + version = "0.1.0" 3523 + dependencies = [ 3524 + "cosmwasm-std", 3525 + "cw-utils", 3526 + "nym-contracts-common", 3527 + "nym-multisig-contract-common", 3528 + "schemars", 3529 + "serde", 3530 + ] 3531 + 3532 + [[package]] 3533 + name = "nym-coconut-interface" 3534 + version = "0.1.0" 3535 + dependencies = [ 3536 + "bs58", 3537 + "getset", 3538 + "nym-coconut", 3539 + "serde", 3540 + "thiserror", 3541 + ] 3542 + 3543 + [[package]] 3544 + name = "nym-config" 3545 + version = "0.1.0" 3546 + dependencies = [ 3547 + "cfg-if", 3548 + "handlebars", 3549 + "log", 3550 + "nym-network-defaults", 3551 + "serde", 3552 + "toml", 3553 + "url", 3554 + ] 3555 + 3556 + [[package]] 3557 + name = "nym-contracts-common" 3558 + version = "0.5.0" 3559 + dependencies = [ 3560 + "bs58", 3561 + "cosmwasm-std", 3562 + "schemars", 3563 + "serde", 3564 + "serde_json", 3565 + "thiserror", 3566 + ] 3567 + 3568 + [[package]] 3569 + name = "nym-credential-client" 3570 + version = "0.1.0" 3571 + dependencies = [ 3572 + "clap 4.2.7", 3573 + "log", 3574 + "nym-bandwidth-controller", 3575 + "nym-bin-common", 3576 + "nym-config", 3577 + "nym-credential-storage", 3578 + "nym-credentials", 3579 + "nym-network-defaults", 3580 + "nym-pemstore", 3581 + "nym-validator-client", 3582 + "serde", 3583 + "thiserror", 3584 + "tokio", 3585 + ] 3586 + 3587 + [[package]] 3588 + name = "nym-credential-storage" 3589 + version = "0.1.0" 3590 + dependencies = [ 3591 + "async-trait", 3592 + "log", 3593 + "sqlx 0.5.13", 3594 + "thiserror", 3595 + "tokio", 3596 + ] 3597 + 3598 + [[package]] 3599 + name = "nym-credentials" 3600 + version = "0.1.0" 3601 + dependencies = [ 3602 + "bls12_381 0.5.0", 3603 + "cosmrs", 3604 + "nym-api-requests", 3605 + "nym-coconut-interface", 3606 + "nym-crypto", 3607 + "nym-validator-client", 3608 + "rand 0.7.3", 3609 + "thiserror", 3610 + ] 3611 + 3612 + [[package]] 3613 + name = "nym-crypto" 3614 + version = "0.4.0" 3615 + dependencies = [ 3616 + "aes 0.8.2", 3617 + "blake3", 3618 + "bs58", 3619 + "cipher 0.4.4", 3620 + "ctr 0.9.2", 3621 + "digest 0.10.6", 3622 + "ed25519-dalek", 3623 + "generic-array 0.14.7", 3624 + "hkdf 0.12.3", 3625 + "hmac 0.12.1", 3626 + "nym-pemstore", 3627 + "nym-sphinx-types", 3628 + "rand 0.7.3", 3629 + "rand_chacha 0.2.2", 3630 + "serde", 3631 + "serde_bytes", 3632 + "subtle-encoding", 3633 + "thiserror", 3634 + "x25519-dalek", 3635 + "zeroize", 3636 + ] 3637 + 3638 + [[package]] 3639 + name = "nym-dkg" 3640 + version = "0.1.0" 3641 + dependencies = [ 3642 + "bitvec", 3643 + "bls12_381 0.6.0", 3644 + "bs58", 3645 + "criterion", 3646 + "ff 0.11.1", 3647 + "group 0.11.0", 3648 + "lazy_static", 3649 + "nym-contracts-common", 3650 + "nym-pemstore", 3651 + "rand 0.8.5", 3652 + "rand_chacha 0.3.1", 3653 + "rand_core 0.6.4", 3654 + "serde", 3655 + "serde_derive", 3656 + "sha2 0.9.9", 3657 + "thiserror", 3658 + "zeroize", 3659 + ] 3660 + 3661 + [[package]] 3662 + name = "nym-execute" 3663 + version = "0.1.0" 3664 + dependencies = [ 3665 + "quote", 3666 + "syn 1.0.109", 3667 ] 3668 3669 [[package]] 3670 name = "nym-gateway" 3671 + version = "1.1.21" 3672 dependencies = [ 3673 + "anyhow", 3674 + "async-trait", 3675 + "atty", 3676 + "bip39", 3677 + "bs58", 3678 + "clap 4.2.7", 3679 + "colored", 3680 + "dashmap 4.0.2", 3681 "dirs", 3682 + "dotenvy", 3683 "futures", 3684 "humantime-serde", 3685 + "lazy_static", 3686 "log", 3687 + "nym-api-requests", 3688 + "nym-bin-common", 3689 + "nym-coconut-interface", 3690 + "nym-config", 3691 + "nym-credentials", 3692 + "nym-crypto", 3693 + "nym-gateway-requests", 3694 + "nym-mixnet-client", 3695 + "nym-mixnode-common", 3696 + "nym-network-defaults", 3697 + "nym-pemstore", 3698 + "nym-sphinx", 3699 + "nym-statistics-common", 3700 + "nym-task", 3701 + "nym-types", 3702 + "nym-validator-client", 3703 + "once_cell", 3704 "pretty_env_logger", 3705 "rand 0.7.3", 3706 "serde", 3707 + "serde_json", 3708 + "sqlx 0.5.13", 3709 + "subtle-encoding", 3710 + "thiserror", 3711 + "tokio", 3712 + "tokio-stream", 3713 + "tokio-tungstenite 0.14.0", 3714 + "tokio-util", 3715 + "url", 3716 + "zeroize", 3717 + ] 3718 + 3719 + [[package]] 3720 + name = "nym-gateway-client" 3721 + version = "0.1.0" 3722 + dependencies = [ 3723 + "futures", 3724 + "getrandom 0.2.9", 3725 + "log", 3726 + "nym-bandwidth-controller", 3727 + "nym-coconut-interface", 3728 + "nym-credential-storage", 3729 + "nym-crypto", 3730 + "nym-gateway-requests", 3731 + "nym-network-defaults", 3732 + "nym-pemstore", 3733 + "nym-sphinx", 3734 + "nym-task", 3735 + "nym-validator-client", 3736 + "rand 0.7.3", 3737 + "serde", 3738 + "thiserror", 3739 "tokio", 3740 "tokio-stream", 3741 + "tokio-tungstenite 0.14.0", 3742 + "tungstenite 0.13.0", 3743 + "url", 3744 + "wasm-bindgen", 3745 + "wasm-bindgen-futures", 3746 + "wasm-timer", 3747 + "wasm-utils", 3748 + ] 3749 + 3750 + [[package]] 3751 + name = "nym-gateway-requests" 3752 + version = "0.1.0" 3753 + dependencies = [ 3754 + "bs58", 3755 + "futures", 3756 + "generic-array 0.14.7", 3757 + "log", 3758 + "nym-coconut-interface", 3759 + "nym-credentials", 3760 + "nym-crypto", 3761 + "nym-pemstore", 3762 + "nym-sphinx", 3763 + "rand 0.7.3", 3764 + "serde", 3765 + "serde_json", 3766 + "thiserror", 3767 + "tungstenite 0.13.0", 3768 + "zeroize", 3769 + ] 3770 + 3771 + [[package]] 3772 + name = "nym-group-contract-common" 3773 + version = "0.1.0" 3774 + dependencies = [ 3775 + "cw4", 3776 + "schemars", 3777 + "serde", 3778 + ] 3779 + 3780 + [[package]] 3781 + name = "nym-inclusion-probability" 3782 + version = "0.1.0" 3783 + dependencies = [ 3784 + "log", 3785 + "rand 0.8.5", 3786 + "thiserror", 3787 + ] 3788 + 3789 + [[package]] 3790 + name = "nym-mixnet-client" 3791 + version = "0.1.0" 3792 + dependencies = [ 3793 + "futures", 3794 + "log", 3795 + "nym-sphinx", 3796 + "nym-task", 3797 + "tokio", 3798 "tokio-util", 3799 + ] 3800 + 3801 + [[package]] 3802 + name = "nym-mixnet-contract-common" 3803 + version = "0.6.0" 3804 + dependencies = [ 3805 + "bs58", 3806 + "cosmwasm-std", 3807 + "humantime-serde", 3808 + "log", 3809 + "nym-contracts-common", 3810 + "rand_chacha 0.3.1", 3811 + "schemars", 3812 + "serde", 3813 + "serde-json-wasm", 3814 + "serde_repr", 3815 + "thiserror", 3816 + "time 0.3.21", 3817 + "ts-rs", 3818 ] 3819 3820 [[package]] 3821 name = "nym-mixnode" 3822 + version = "1.1.22" 3823 dependencies = [ 3824 + "anyhow", 3825 + "bs58", 3826 + "cfg-if", 3827 + "clap 4.2.7", 3828 "colored", 3829 + "cpu-cycles", 3830 + "cupid", 3831 "dirs", 3832 "futures", 3833 "humantime-serde", 3834 + "lazy_static", 3835 "log", 3836 + "nym-bin-common", 3837 + "nym-config", 3838 + "nym-contracts-common", 3839 + "nym-crypto", 3840 + "nym-mixnet-client", 3841 + "nym-mixnode-common", 3842 + "nym-nonexhaustive-delayqueue", 3843 + "nym-pemstore", 3844 + "nym-sphinx", 3845 + "nym-sphinx-params", 3846 + "nym-sphinx-types", 3847 + "nym-task", 3848 + "nym-topology", 3849 + "nym-types", 3850 + "nym-validator-client", 3851 + "opentelemetry", 3852 "pretty_env_logger", 3853 "rand 0.7.3", 3854 "rocket", 3855 "serde", 3856 + "serde_json", 3857 + "sysinfo", 3858 "tokio", 3859 "tokio-util", 3860 "toml", 3861 + "tracing", 3862 + "url", 3863 + ] 3864 + 3865 + [[package]] 3866 + name = "nym-mixnode-common" 3867 + version = "0.1.0" 3868 + dependencies = [ 3869 + "bytes", 3870 + "cfg-if", 3871 + "cpu-cycles", 3872 + "futures", 3873 + "humantime-serde", 3874 + "log", 3875 + "nym-bin-common", 3876 + "nym-crypto", 3877 + "nym-network-defaults", 3878 + "nym-sphinx-acknowledgements", 3879 + "nym-sphinx-addressing", 3880 + "nym-sphinx-forwarding", 3881 + "nym-sphinx-framing", 3882 + "nym-sphinx-params", 3883 + "nym-sphinx-types", 3884 + "nym-task", 3885 + "nym-validator-client", 3886 + "rand 0.8.5", 3887 + "serde", 3888 + "thiserror", 3889 + "tokio", 3890 + "tokio-util", 3891 + "tracing", 3892 + "url", 3893 + ] 3894 + 3895 + [[package]] 3896 + name = "nym-multisig-contract-common" 3897 + version = "0.1.0" 3898 + dependencies = [ 3899 + "cosmwasm-std", 3900 + "cw-utils", 3901 + "cw3", 3902 + "cw4", 3903 + "schemars", 3904 + "serde", 3905 + "thiserror", 3906 + ] 3907 + 3908 + [[package]] 3909 + name = "nym-name-service-common" 3910 + version = "0.1.0" 3911 + dependencies = [ 3912 + "cosmwasm-std", 3913 + "schemars", 3914 + "serde", 3915 + ] 3916 + 3917 + [[package]] 3918 + name = "nym-network-defaults" 3919 + version = "0.1.0" 3920 + dependencies = [ 3921 + "cfg-if", 3922 + "dotenvy", 3923 + "hex-literal", 3924 + "once_cell", 3925 + "serde", 3926 + "thiserror", 3927 + "url", 3928 ] 3929 3930 [[package]] 3931 name = "nym-network-requester" 3932 + version = "1.1.21" 3933 dependencies = [ 3934 + "anyhow", 3935 + "async-file-watcher", 3936 + "async-trait", 3937 + "bs58", 3938 + "clap 4.2.7", 3939 "dirs", 3940 "futures", 3941 + "humantime-serde", 3942 + "ipnetwork 0.20.0", 3943 + "lazy_static", 3944 "log", 3945 + "nym-bin-common", 3946 + "nym-client-core", 3947 + "nym-client-websocket-requests", 3948 + "nym-config", 3949 + "nym-credential-storage", 3950 + "nym-crypto", 3951 + "nym-network-defaults", 3952 + "nym-sdk", 3953 + "nym-service-providers-common", 3954 + "nym-socks5-proxy-helpers", 3955 + "nym-socks5-requests", 3956 + "nym-sphinx", 3957 + "nym-statistics-common", 3958 + "nym-task", 3959 + "nym-types", 3960 "pretty_env_logger", 3961 "publicsuffix", 3962 "rand 0.7.3", 3963 + "reqwest", 3964 + "serde", 3965 + "serde_json", 3966 + "sqlx 0.6.3", 3967 + "tap", 3968 + "tempfile", 3969 + "thiserror", 3970 "tokio", 3971 + "tokio-tungstenite 0.17.2", 3972 + "url", 3973 + ] 3974 + 3975 + [[package]] 3976 + name = "nym-network-statistics" 3977 + version = "1.1.21" 3978 + dependencies = [ 3979 + "dirs", 3980 + "log", 3981 + "nym-bin-common", 3982 + "nym-statistics-common", 3983 + "nym-task", 3984 + "pretty_env_logger", 3985 + "rocket", 3986 + "serde", 3987 + "sqlx 0.5.13", 3988 + "thiserror", 3989 + "tokio", 3990 + ] 3991 + 3992 + [[package]] 3993 + name = "nym-node-tester-utils" 3994 + version = "0.1.0" 3995 + dependencies = [ 3996 + "futures", 3997 + "log", 3998 + "nym-crypto", 3999 + "nym-sphinx", 4000 + "nym-sphinx-params", 4001 + "nym-task", 4002 + "nym-topology", 4003 + "rand 0.7.3", 4004 + "serde", 4005 + "serde_json", 4006 + "thiserror", 4007 + "tokio", 4008 + "wasm-utils", 4009 + ] 4010 + 4011 + [[package]] 4012 + name = "nym-nonexhaustive-delayqueue" 4013 + version = "0.1.0" 4014 + dependencies = [ 4015 + "futures-core", 4016 + "slab", 4017 + "tokio", 4018 + "tokio-stream", 4019 + "tokio-util", 4020 + "wasm-timer", 4021 + ] 4022 + 4023 + [[package]] 4024 + name = "nym-ordered-buffer" 4025 + version = "0.1.0" 4026 + dependencies = [ 4027 + "log", 4028 + "thiserror", 4029 + ] 4030 + 4031 + [[package]] 4032 + name = "nym-outfox" 4033 + version = "0.1.0" 4034 + dependencies = [ 4035 + "blake3", 4036 + "chacha20", 4037 + "chacha20poly1305", 4038 + "criterion", 4039 + "curve25519-dalek", 4040 + "fastrand", 4041 + "getrandom 0.2.9", 4042 + "log", 4043 + "rand 0.7.3", 4044 + "rayon", 4045 + "sphinx-packet", 4046 + "thiserror", 4047 + "zeroize", 4048 + ] 4049 + 4050 + [[package]] 4051 + name = "nym-pemstore" 4052 + version = "0.3.0" 4053 + dependencies = [ 4054 + "pem", 4055 + ] 4056 + 4057 + [[package]] 4058 + name = "nym-sdk" 4059 + version = "0.1.0" 4060 + dependencies = [ 4061 + "bip39", 4062 + "dotenvy", 4063 + "futures", 4064 + "log", 4065 + "nym-bandwidth-controller", 4066 + "nym-bin-common", 4067 + "nym-client-core", 4068 + "nym-credential-storage", 4069 + "nym-credentials", 4070 + "nym-crypto", 4071 + "nym-gateway-requests", 4072 + "nym-network-defaults", 4073 + "nym-socks5-client-core", 4074 + "nym-sphinx", 4075 + "nym-task", 4076 + "nym-topology", 4077 + "nym-validator-client", 4078 + "pretty_env_logger", 4079 + "rand 0.7.3", 4080 + "reqwest", 4081 + "tap", 4082 + "thiserror", 4083 + "tokio", 4084 + "toml", 4085 + "url", 4086 + ] 4087 + 4088 + [[package]] 4089 + name = "nym-service-provider-directory-common" 4090 + version = "0.1.0" 4091 + dependencies = [ 4092 + "cosmwasm-std", 4093 + "cw-controllers", 4094 + "cw-utils", 4095 + "nym-contracts-common", 4096 + "schemars", 4097 + "serde", 4098 + "thiserror", 4099 + ] 4100 + 4101 + [[package]] 4102 + name = "nym-service-providers-common" 4103 + version = "0.1.0" 4104 + dependencies = [ 4105 + "anyhow", 4106 + "async-trait", 4107 + "log", 4108 + "nym-bin-common", 4109 + "nym-sdk", 4110 + "nym-socks5-requests", 4111 + "nym-sphinx-anonymous-replies", 4112 + "serde", 4113 + "serde_json", 4114 + "thiserror", 4115 + "tokio", 4116 ] 4117 4118 [[package]] 4119 name = "nym-socks5-client" 4120 + version = "1.1.21" 4121 + dependencies = [ 4122 + "clap 4.2.7", 4123 + "lazy_static", 4124 + "log", 4125 + "nym-bin-common", 4126 + "nym-client-core", 4127 + "nym-coconut-interface", 4128 + "nym-config", 4129 + "nym-credential-storage", 4130 + "nym-credentials", 4131 + "nym-crypto", 4132 + "nym-gateway-requests", 4133 + "nym-network-defaults", 4134 + "nym-ordered-buffer", 4135 + "nym-pemstore", 4136 + "nym-socks5-client-core", 4137 + "nym-sphinx", 4138 + "nym-topology", 4139 + "pretty_env_logger", 4140 + "serde", 4141 + "serde_json", 4142 + "tap", 4143 + "thiserror", 4144 + "tokio", 4145 + "url", 4146 + ] 4147 + 4148 + [[package]] 4149 + name = "nym-socks5-client-core" 4150 + version = "0.1.0" 4151 dependencies = [ 4152 "dirs", 4153 "futures", 4154 "log", 4155 + "nym-bandwidth-controller", 4156 + "nym-client-core", 4157 + "nym-config", 4158 + "nym-credential-storage", 4159 + "nym-network-defaults", 4160 + "nym-service-providers-common", 4161 + "nym-socks5-proxy-helpers", 4162 + "nym-socks5-requests", 4163 + "nym-sphinx", 4164 + "nym-task", 4165 + "nym-validator-client", 4166 "pin-project", 4167 "rand 0.7.3", 4168 "serde", 4169 + "tap", 4170 + "thiserror", 4171 "tokio", 4172 ] 4173 4174 [[package]] 4175 + name = "nym-socks5-listener" 4176 version = "0.1.0" 4177 dependencies = [ 4178 + "android_logger", 4179 + "anyhow", 4180 + "futures", 4181 + "jni", 4182 + "lazy_static", 4183 + "log", 4184 + "nym-bin-common", 4185 + "nym-client-core", 4186 + "nym-config", 4187 + "nym-credential-storage", 4188 + "nym-crypto", 4189 + "nym-socks5-client-core", 4190 + "openssl", 4191 "rand 0.7.3", 4192 + "safer-ffi", 4193 + "tokio", 4194 + ] 4195 + 4196 + [[package]] 4197 + name = "nym-socks5-proxy-helpers" 4198 + version = "0.1.0" 4199 + dependencies = [ 4200 + "bytes", 4201 + "futures", 4202 + "log", 4203 + "nym-ordered-buffer", 4204 + "nym-socks5-requests", 4205 + "nym-task", 4206 + "tokio", 4207 + "tokio-test", 4208 + "tokio-util", 4209 + ] 4210 + 4211 + [[package]] 4212 + name = "nym-socks5-requests" 4213 + version = "0.1.0" 4214 + dependencies = [ 4215 + "bincode", 4216 + "log", 4217 + "nym-service-providers-common", 4218 + "nym-sphinx-addressing", 4219 + "serde", 4220 + "serde_json", 4221 + "tap", 4222 + "thiserror", 4223 + ] 4224 + 4225 + [[package]] 4226 + name = "nym-sphinx" 4227 + version = "0.1.0" 4228 + dependencies = [ 4229 + "log", 4230 + "nym-crypto", 4231 + "nym-mixnet-contract-common", 4232 + "nym-sphinx-acknowledgements", 4233 + "nym-sphinx-addressing", 4234 + "nym-sphinx-anonymous-replies", 4235 + "nym-sphinx-chunking", 4236 + "nym-sphinx-cover", 4237 + "nym-sphinx-forwarding", 4238 + "nym-sphinx-framing", 4239 + "nym-sphinx-params", 4240 + "nym-sphinx-routing", 4241 + "nym-sphinx-types", 4242 + "nym-topology", 4243 + "rand 0.7.3", 4244 + "rand_distr", 4245 + "thiserror", 4246 "tokio", 4247 ] 4248 4249 [[package]] 4250 + name = "nym-sphinx-acknowledgements" 4251 version = "0.1.0" 4252 dependencies = [ 4253 + "generic-array 0.14.7", 4254 + "nym-crypto", 4255 + "nym-pemstore", 4256 + "nym-sphinx-addressing", 4257 + "nym-sphinx-params", 4258 + "nym-sphinx-types", 4259 + "nym-topology", 4260 "rand 0.7.3", 4261 + "serde", 4262 + "thiserror", 4263 + "zeroize", 4264 ] 4265 4266 [[package]] 4267 + name = "nym-sphinx-addressing" 4268 version = "0.1.0" 4269 dependencies = [ 4270 + "nym-crypto", 4271 + "nym-sphinx-types", 4272 "rand 0.7.3", 4273 "serde", 4274 + "thiserror", 4275 ] 4276 4277 [[package]] 4278 + name = "nym-sphinx-anonymous-replies" 4279 version = "0.1.0" 4280 dependencies = [ 4281 + "bs58", 4282 + "nym-crypto", 4283 + "nym-sphinx-addressing", 4284 + "nym-sphinx-params", 4285 + "nym-sphinx-types", 4286 + "nym-topology", 4287 "rand 0.7.3", 4288 + "rand_chacha 0.2.2", 4289 "serde", 4290 + "thiserror", 4291 + "wasm-bindgen", 4292 ] 4293 4294 [[package]] 4295 + name = "nym-sphinx-chunking" 4296 version = "0.1.0" 4297 dependencies = [ 4298 "log", 4299 + "nym-sphinx-addressing", 4300 + "nym-sphinx-params", 4301 + "nym-sphinx-types", 4302 "rand 0.7.3", 4303 + "thiserror", 4304 ] 4305 4306 [[package]] 4307 + name = "nym-sphinx-cover" 4308 version = "0.1.0" 4309 dependencies = [ 4310 + "nym-crypto", 4311 + "nym-sphinx-acknowledgements", 4312 + "nym-sphinx-addressing", 4313 + "nym-sphinx-chunking", 4314 + "nym-sphinx-forwarding", 4315 + "nym-sphinx-params", 4316 + "nym-sphinx-types", 4317 + "nym-topology", 4318 "rand 0.7.3", 4319 + "thiserror", 4320 ] 4321 4322 [[package]] 4323 + name = "nym-sphinx-forwarding" 4324 version = "0.1.0" 4325 dependencies = [ 4326 + "nym-outfox", 4327 + "nym-sphinx-addressing", 4328 + "nym-sphinx-params", 4329 + "nym-sphinx-types", 4330 + "thiserror", 4331 ] 4332 4333 [[package]] 4334 + name = "nym-sphinx-framing" 4335 version = "0.1.0" 4336 dependencies = [ 4337 "bytes", 4338 + "nym-sphinx-params", 4339 + "nym-sphinx-types", 4340 + "thiserror", 4341 "tokio-util", 4342 ] 4343 4344 [[package]] 4345 + name = "nym-sphinx-params" 4346 + version = "0.1.0" 4347 + dependencies = [ 4348 + "nym-crypto", 4349 + "nym-sphinx-types", 4350 + "serde", 4351 + "thiserror", 4352 + ] 4353 + 4354 + [[package]] 4355 + name = "nym-sphinx-routing" 4356 version = "0.1.0" 4357 dependencies = [ 4358 + "nym-sphinx-addressing", 4359 + "nym-sphinx-types", 4360 + "thiserror", 4361 + ] 4362 + 4363 + [[package]] 4364 + name = "nym-sphinx-types" 4365 + version = "0.2.0" 4366 + dependencies = [ 4367 + "nym-outfox", 4368 + "sphinx-packet", 4369 + "thiserror", 4370 + ] 4371 + 4372 + [[package]] 4373 + name = "nym-statistics-common" 4374 + version = "1.0.1" 4375 + dependencies = [ 4376 + "async-trait", 4377 + "log", 4378 + "reqwest", 4379 + "serde", 4380 + "serde_json", 4381 + "sqlx 0.5.13", 4382 + "thiserror", 4383 + "tokio", 4384 ] 4385 4386 [[package]] 4387 + name = "nym-store-cipher" 4388 version = "0.1.0" 4389 dependencies = [ 4390 + "aes-gcm", 4391 + "argon2", 4392 + "generic-array 0.14.7", 4393 + "getrandom 0.2.9", 4394 + "rand 0.8.5", 4395 + "serde", 4396 + "serde_json", 4397 + "thiserror", 4398 + "zeroize", 4399 + ] 4400 + 4401 + [[package]] 4402 + name = "nym-task" 4403 + version = "0.1.0" 4404 + dependencies = [ 4405 + "futures", 4406 + "log", 4407 + "thiserror", 4408 + "tokio", 4409 + "wasm-bindgen", 4410 + "wasm-bindgen-futures", 4411 + ] 4412 + 4413 + [[package]] 4414 + name = "nym-topology" 4415 + version = "0.1.0" 4416 + dependencies = [ 4417 + "async-trait", 4418 + "bs58", 4419 + "log", 4420 + "nym-bin-common", 4421 + "nym-crypto", 4422 + "nym-mixnet-contract-common", 4423 + "nym-sphinx-addressing", 4424 + "nym-sphinx-routing", 4425 + "nym-sphinx-types", 4426 + "rand 0.7.3", 4427 + "thiserror", 4428 + ] 4429 + 4430 + [[package]] 4431 + name = "nym-types" 4432 + version = "1.0.0" 4433 + dependencies = [ 4434 + "cosmrs", 4435 + "cosmwasm-std", 4436 + "eyre", 4437 + "itertools", 4438 + "log", 4439 + "nym-coconut-interface", 4440 + "nym-config", 4441 + "nym-mixnet-contract-common", 4442 + "nym-validator-client", 4443 + "nym-vesting-contract", 4444 + "nym-vesting-contract-common", 4445 + "reqwest", 4446 + "schemars", 4447 + "serde", 4448 + "serde_json", 4449 + "strum 0.23.0", 4450 + "tempfile", 4451 + "thiserror", 4452 + "ts-rs", 4453 + "url", 4454 + ] 4455 + 4456 + [[package]] 4457 + name = "nym-validator-client" 4458 + version = "0.1.0" 4459 + dependencies = [ 4460 + "async-trait", 4461 + "base64 0.13.1", 4462 + "bip39", 4463 + "colored", 4464 + "cosmrs", 4465 + "cosmwasm-std", 4466 + "cw3", 4467 + "cw4", 4468 + "eyre", 4469 + "flate2", 4470 + "futures", 4471 + "itertools", 4472 + "log", 4473 + "nym-api-requests", 4474 + "nym-coconut-bandwidth-contract-common", 4475 + "nym-coconut-dkg-common", 4476 + "nym-coconut-interface", 4477 + "nym-config", 4478 + "nym-contracts-common", 4479 + "nym-group-contract-common", 4480 + "nym-mixnet-contract-common", 4481 + "nym-multisig-contract-common", 4482 + "nym-name-service-common", 4483 + "nym-network-defaults", 4484 + "nym-service-provider-directory-common", 4485 + "nym-vesting-contract", 4486 + "nym-vesting-contract-common", 4487 + "prost 0.10.4", 4488 + "reqwest", 4489 + "serde", 4490 + "serde_json", 4491 + "sha2 0.9.9", 4492 + "thiserror", 4493 + "tokio", 4494 + "ts-rs", 4495 + "url", 4496 + "zeroize", 4497 + ] 4498 + 4499 + [[package]] 4500 + name = "nym-vesting-contract" 4501 + version = "1.4.0" 4502 + dependencies = [ 4503 + "cosmwasm-derive", 4504 + "cosmwasm-std", 4505 + "cw-storage-plus", 4506 + "cw2", 4507 + "nym-contracts-common", 4508 + "nym-mixnet-contract-common", 4509 + "nym-vesting-contract-common", 4510 + "schemars", 4511 + "semver 1.0.17", 4512 + "serde", 4513 + "thiserror", 4514 + "vergen", 4515 + ] 4516 + 4517 + [[package]] 4518 + name = "nym-vesting-contract-common" 4519 + version = "0.7.0" 4520 + dependencies = [ 4521 + "cosmwasm-std", 4522 + "nym-contracts-common", 4523 + "nym-mixnet-contract-common", 4524 + "schemars", 4525 + "serde", 4526 + "ts-rs", 4527 + ] 4528 + 4529 + [[package]] 4530 + name = "nym-wallet-types" 4531 + version = "1.0.0" 4532 + dependencies = [ 4533 + "cosmrs", 4534 + "cosmwasm-std", 4535 + "hex-literal", 4536 + "nym-config", 4537 + "nym-mixnet-contract-common", 4538 + "nym-network-defaults", 4539 + "nym-types", 4540 + "nym-validator-client", 4541 + "nym-vesting-contract", 4542 + "nym-vesting-contract-common", 4543 + "serde", 4544 + "serde_json", 4545 + "strum 0.23.0", 4546 + "ts-rs", 4547 + ] 4548 + 4549 + [[package]] 4550 + name = "okapi" 4551 + version = "0.7.0-rc.1" 4552 + source = "registry+https://github.com/rust-lang/crates.io-index" 4553 + checksum = "ce66b6366e049880a35c378123fddb630b1a1a3c37fa1ca70caaf4a09f6e2893" 4554 + dependencies = [ 4555 + "log", 4556 + "schemars", 4557 + "serde", 4558 + "serde_json", 4559 ] 4560 4561 [[package]] 4562 name = "once_cell" 4563 + version = "1.17.1" 4564 source = "registry+https://github.com/rust-lang/crates.io-index" 4565 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 4566 + 4567 + [[package]] 4568 + name = "oorandom" 4569 + version = "11.1.3" 4570 + source = "registry+https://github.com/rust-lang/crates.io-index" 4571 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 4572 4573 [[package]] 4574 name = "opaque-debug" ··· 4584 4585 [[package]] 4586 name = "openssl" 4587 + version = "0.10.52" 4588 source = "registry+https://github.com/rust-lang/crates.io-index" 4589 + checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 4590 dependencies = [ 4591 "bitflags", 4592 + "cfg-if", 4593 "foreign-types", 4594 "libc", 4595 "once_cell", 4596 + "openssl-macros", 4597 "openssl-sys", 4598 ] 4599 4600 [[package]] 4601 + name = "openssl-macros" 4602 + version = "0.1.1" 4603 + source = "registry+https://github.com/rust-lang/crates.io-index" 4604 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 4605 + dependencies = [ 4606 + "proc-macro2", 4607 + "quote", 4608 + "syn 2.0.16", 4609 + ] 4610 + 4611 + [[package]] 4612 name = "openssl-probe" 4613 + version = "0.1.5" 4614 + source = "registry+https://github.com/rust-lang/crates.io-index" 4615 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 4616 + 4617 + [[package]] 4618 + name = "openssl-src" 4619 + version = "111.25.3+1.1.1t" 4620 source = "registry+https://github.com/rust-lang/crates.io-index" 4621 + checksum = "924757a6a226bf60da5f7dd0311a34d2b52283dd82ddeb103208ddc66362f80c" 4622 + dependencies = [ 4623 + "cc", 4624 + ] 4625 4626 [[package]] 4627 name = "openssl-sys" 4628 + version = "0.9.87" 4629 source = "registry+https://github.com/rust-lang/crates.io-index" 4630 + checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 4631 dependencies = [ 4632 "cc", 4633 "libc", 4634 + "openssl-src", 4635 "pkg-config", 4636 "vcpkg", 4637 ] 4638 4639 [[package]] 4640 + name = "opentelemetry" 4641 + version = "0.19.0" 4642 + source = "registry+https://github.com/rust-lang/crates.io-index" 4643 + checksum = "5f4b8347cc26099d3aeee044065ecc3ae11469796b4d65d065a23a584ed92a6f" 4644 + dependencies = [ 4645 + "opentelemetry_api", 4646 + "opentelemetry_sdk", 4647 + ] 4648 + 4649 + [[package]] 4650 + name = "opentelemetry_api" 4651 + version = "0.19.0" 4652 + source = "registry+https://github.com/rust-lang/crates.io-index" 4653 + checksum = "ed41783a5bf567688eb38372f2b7a8530f5a607a4b49d38dd7573236c23ca7e2" 4654 + dependencies = [ 4655 + "futures-channel", 4656 + "futures-util", 4657 + "indexmap", 4658 + "once_cell", 4659 + "pin-project-lite", 4660 + "thiserror", 4661 + "urlencoding", 4662 + ] 4663 + 4664 + [[package]] 4665 + name = "opentelemetry_sdk" 4666 + version = "0.19.0" 4667 + source = "registry+https://github.com/rust-lang/crates.io-index" 4668 + checksum = "8b3a2a91fdbfdd4d212c0dcc2ab540de2c2bcbbd90be17de7a7daf8822d010c1" 4669 dependencies = [ 4670 + "async-trait", 4671 + "crossbeam-channel", 4672 + "futures-channel", 4673 + "futures-executor", 4674 + "futures-util", 4675 + "once_cell", 4676 + "opentelemetry_api", 4677 + "percent-encoding", 4678 + "rand 0.8.5", 4679 + "thiserror", 4680 + ] 4681 + 4682 + [[package]] 4683 + name = "os_str_bytes" 4684 + version = "6.5.0" 4685 + source = "registry+https://github.com/rust-lang/crates.io-index" 4686 + checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" 4687 + 4688 + [[package]] 4689 + name = "overload" 4690 + version = "0.1.1" 4691 + source = "registry+https://github.com/rust-lang/crates.io-index" 4692 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 4693 + 4694 + [[package]] 4695 + name = "pairing" 4696 + version = "0.20.0" 4697 + source = "registry+https://github.com/rust-lang/crates.io-index" 4698 + checksum = "7de9d09263c9966e8196fe0380c9dbbc7ea114b5cf371ba29004bc1f9c6db7f3" 4699 + dependencies = [ 4700 + "group 0.10.0", 4701 + ] 4702 + 4703 + [[package]] 4704 + name = "pairing" 4705 + version = "0.21.0" 4706 + source = "registry+https://github.com/rust-lang/crates.io-index" 4707 + checksum = "f2e415e349a3006dd7d9482cdab1c980a845bed1377777d768cb693a44540b42" 4708 + dependencies = [ 4709 + "group 0.11.0", 4710 ] 4711 4712 [[package]] 4713 name = "parking_lot" 4714 + version = "0.11.2" 4715 source = "registry+https://github.com/rust-lang/crates.io-index" 4716 + checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 4717 dependencies = [ 4718 "instant", 4719 "lock_api", 4720 + "parking_lot_core 0.8.6", 4721 + ] 4722 + 4723 + [[package]] 4724 + name = "parking_lot" 4725 + version = "0.12.1" 4726 + source = "registry+https://github.com/rust-lang/crates.io-index" 4727 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 4728 + dependencies = [ 4729 + "lock_api", 4730 + "parking_lot_core 0.9.7", 4731 ] 4732 4733 [[package]] 4734 name = "parking_lot_core" 4735 + version = "0.8.6" 4736 source = "registry+https://github.com/rust-lang/crates.io-index" 4737 + checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 4738 dependencies = [ 4739 + "cfg-if", 4740 "instant", 4741 "libc", 4742 + "redox_syscall 0.2.16", 4743 "smallvec", 4744 "winapi", 4745 ] 4746 4747 [[package]] 4748 + name = "parking_lot_core" 4749 + version = "0.9.7" 4750 + source = "registry+https://github.com/rust-lang/crates.io-index" 4751 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 4752 + dependencies = [ 4753 + "cfg-if", 4754 + "libc", 4755 + "redox_syscall 0.2.16", 4756 + "smallvec", 4757 + "windows-sys 0.45.0", 4758 + ] 4759 + 4760 + [[package]] 4761 + name = "password-hash" 4762 + version = "0.5.0" 4763 + source = "registry+https://github.com/rust-lang/crates.io-index" 4764 + checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 4765 + dependencies = [ 4766 + "base64ct", 4767 + "rand_core 0.6.4", 4768 + "subtle 2.4.1", 4769 + ] 4770 + 4771 + [[package]] 4772 + name = "paste" 4773 + version = "1.0.12" 4774 + source = "registry+https://github.com/rust-lang/crates.io-index" 4775 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 4776 + 4777 + [[package]] 4778 + name = "pbkdf2" 4779 + version = "0.9.0" 4780 + source = "registry+https://github.com/rust-lang/crates.io-index" 4781 + checksum = "f05894bce6a1ba4be299d0c5f29563e08af2bc18bb7d48313113bed71e904739" 4782 + dependencies = [ 4783 + "crypto-mac 0.11.1", 4784 + ] 4785 + 4786 + [[package]] 4787 name = "pear" 4788 + version = "0.2.4" 4789 source = "registry+https://github.com/rust-lang/crates.io-index" 4790 + checksum = "0ec95680a7087503575284e5063e14b694b7a9c0b065e5dceec661e0497127e8" 4791 dependencies = [ 4792 "inlinable_string", 4793 "pear_codegen", ··· 4796 4797 [[package]] 4798 name = "pear_codegen" 4799 + version = "0.2.4" 4800 + source = "registry+https://github.com/rust-lang/crates.io-index" 4801 + checksum = "9661a3a53f93f09f2ea882018e4d7c88f6ff2956d809a276060476fd8c879d3c" 4802 + dependencies = [ 4803 + "proc-macro2", 4804 + "proc-macro2-diagnostics 0.10.0", 4805 + "quote", 4806 + "syn 2.0.16", 4807 + ] 4808 + 4809 + [[package]] 4810 + name = "peg" 4811 + version = "0.7.0" 4812 + source = "registry+https://github.com/rust-lang/crates.io-index" 4813 + checksum = "07c0b841ea54f523f7aa556956fbd293bcbe06f2e67d2eb732b7278aaf1d166a" 4814 + dependencies = [ 4815 + "peg-macros", 4816 + "peg-runtime", 4817 + ] 4818 + 4819 + [[package]] 4820 + name = "peg-macros" 4821 + version = "0.7.0" 4822 source = "registry+https://github.com/rust-lang/crates.io-index" 4823 + checksum = "b5aa52829b8decbef693af90202711348ab001456803ba2a98eb4ec8fb70844c" 4824 dependencies = [ 4825 + "peg-runtime", 4826 "proc-macro2", 4827 "quote", 4828 ] 4829 4830 [[package]] 4831 + name = "peg-runtime" 4832 + version = "0.7.0" 4833 + source = "registry+https://github.com/rust-lang/crates.io-index" 4834 + checksum = "c719dcf55f09a3a7e764c6649ab594c18a177e3599c467983cdf644bfc0a4088" 4835 + 4836 + [[package]] 4837 name = "pem" 4838 version = "0.8.3" 4839 source = "registry+https://github.com/rust-lang/crates.io-index" 4840 checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb" 4841 dependencies = [ 4842 + "base64 0.13.1", 4843 "once_cell", 4844 "regex", 4845 ] 4846 4847 [[package]] 4848 name = "percent-encoding" 4849 + version = "2.2.0" 4850 source = "registry+https://github.com/rust-lang/crates.io-index" 4851 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 4852 4853 [[package]] 4854 name = "pest" 4855 + version = "2.6.0" 4856 source = "registry+https://github.com/rust-lang/crates.io-index" 4857 + checksum = "e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70" 4858 dependencies = [ 4859 + "thiserror", 4860 "ucd-trie", 4861 ] 4862 4863 [[package]] 4864 name = "pest_derive" 4865 + version = "2.6.0" 4866 source = "registry+https://github.com/rust-lang/crates.io-index" 4867 + checksum = "6b79d4c71c865a25a4322296122e3924d30bc8ee0834c8bfc8b95f7f054afbfb" 4868 dependencies = [ 4869 "pest", 4870 "pest_generator", ··· 4872 4873 [[package]] 4874 name = "pest_generator" 4875 + version = "2.6.0" 4876 source = "registry+https://github.com/rust-lang/crates.io-index" 4877 + checksum = "6c435bf1076437b851ebc8edc3a18442796b30f1728ffea6262d59bbe28b077e" 4878 dependencies = [ 4879 "pest", 4880 "pest_meta", 4881 "proc-macro2", 4882 "quote", 4883 + "syn 2.0.16", 4884 ] 4885 4886 [[package]] 4887 name = "pest_meta" 4888 + version = "2.6.0" 4889 source = "registry+https://github.com/rust-lang/crates.io-index" 4890 + checksum = "745a452f8eb71e39ffd8ee32b3c5f51d03845f99786fa9b68db6ff509c505411" 4891 dependencies = [ 4892 + "once_cell", 4893 "pest", 4894 + "sha2 0.10.6", 4895 ] 4896 4897 [[package]] 4898 name = "pin-project" 4899 + version = "1.1.0" 4900 source = "registry+https://github.com/rust-lang/crates.io-index" 4901 + checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead" 4902 dependencies = [ 4903 "pin-project-internal", 4904 ] 4905 4906 [[package]] 4907 name = "pin-project-internal" 4908 + version = "1.1.0" 4909 source = "registry+https://github.com/rust-lang/crates.io-index" 4910 + checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07" 4911 dependencies = [ 4912 "proc-macro2", 4913 "quote", 4914 + "syn 2.0.16", 4915 ] 4916 4917 [[package]] 4918 name = "pin-project-lite" 4919 + version = "0.2.9" 4920 source = "registry+https://github.com/rust-lang/crates.io-index" 4921 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 4922 4923 [[package]] 4924 name = "pin-utils" ··· 4928 4929 [[package]] 4930 name = "pkcs8" 4931 + version = "0.8.0" 4932 source = "registry+https://github.com/rust-lang/crates.io-index" 4933 + checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0" 4934 dependencies = [ 4935 "der", 4936 + "spki", 4937 + "zeroize", 4938 ] 4939 4940 [[package]] 4941 name = "pkg-config" 4942 + version = "0.3.27" 4943 + source = "registry+https://github.com/rust-lang/crates.io-index" 4944 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 4945 + 4946 + [[package]] 4947 + name = "plotters" 4948 + version = "0.3.4" 4949 + source = "registry+https://github.com/rust-lang/crates.io-index" 4950 + checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 4951 + dependencies = [ 4952 + "num-traits", 4953 + "plotters-backend", 4954 + "plotters-svg", 4955 + "wasm-bindgen", 4956 + "web-sys", 4957 + ] 4958 + 4959 + [[package]] 4960 + name = "plotters-backend" 4961 + version = "0.3.4" 4962 + source = "registry+https://github.com/rust-lang/crates.io-index" 4963 + checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 4964 + 4965 + [[package]] 4966 + name = "plotters-svg" 4967 + version = "0.3.3" 4968 + source = "registry+https://github.com/rust-lang/crates.io-index" 4969 + checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 4970 + dependencies = [ 4971 + "plotters-backend", 4972 + ] 4973 + 4974 + [[package]] 4975 + name = "poly1305" 4976 + version = "0.8.0" 4977 source = "registry+https://github.com/rust-lang/crates.io-index" 4978 + checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 4979 + dependencies = [ 4980 + "cpufeatures", 4981 + "opaque-debug 0.3.0", 4982 + "universal-hash", 4983 + ] 4984 + 4985 + [[package]] 4986 + name = "polyval" 4987 + version = "0.6.0" 4988 + source = "registry+https://github.com/rust-lang/crates.io-index" 4989 + checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6" 4990 + dependencies = [ 4991 + "cfg-if", 4992 + "cpufeatures", 4993 + "opaque-debug 0.3.0", 4994 + "universal-hash", 4995 + ] 4996 4997 [[package]] 4998 name = "ppv-lite86" 4999 + version = "0.2.17" 5000 source = "registry+https://github.com/rust-lang/crates.io-index" 5001 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 5002 5003 [[package]] 5004 name = "pretty_env_logger" ··· 5006 source = "registry+https://github.com/rust-lang/crates.io-index" 5007 checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d" 5008 dependencies = [ 5009 + "env_logger 0.7.1", 5010 "log", 5011 ] 5012 5013 [[package]] 5014 + name = "prettyplease" 5015 + version = "0.1.25" 5016 + source = "registry+https://github.com/rust-lang/crates.io-index" 5017 + checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 5018 + dependencies = [ 5019 + "proc-macro2", 5020 + "syn 1.0.109", 5021 + ] 5022 + 5023 + [[package]] 5024 + name = "proc-macro-error" 5025 + version = "1.0.4" 5026 source = "registry+https://github.com/rust-lang/crates.io-index" 5027 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 5028 + dependencies = [ 5029 + "proc-macro-error-attr", 5030 + "proc-macro2", 5031 + "quote", 5032 + "syn 1.0.109", 5033 + "version_check", 5034 + ] 5035 5036 [[package]] 5037 + name = "proc-macro-error-attr" 5038 + version = "1.0.4" 5039 source = "registry+https://github.com/rust-lang/crates.io-index" 5040 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 5041 + dependencies = [ 5042 + "proc-macro2", 5043 + "quote", 5044 + "version_check", 5045 + ] 5046 5047 [[package]] 5048 name = "proc-macro2" 5049 + version = "1.0.58" 5050 source = "registry+https://github.com/rust-lang/crates.io-index" 5051 + checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" 5052 dependencies = [ 5053 + "unicode-ident", 5054 ] 5055 5056 [[package]] ··· 5061 dependencies = [ 5062 "proc-macro2", 5063 "quote", 5064 + "syn 1.0.109", 5065 "version_check", 5066 "yansi", 5067 ] 5068 5069 [[package]] 5070 + name = "proc-macro2-diagnostics" 5071 + version = "0.10.0" 5072 + source = "registry+https://github.com/rust-lang/crates.io-index" 5073 + checksum = "606c4ba35817e2922a308af55ad51bab3645b59eae5c570d4a6cf07e36bd493b" 5074 + dependencies = [ 5075 + "proc-macro2", 5076 + "quote", 5077 + "syn 2.0.16", 5078 + "version_check", 5079 + "yansi", 5080 + ] 5081 + 5082 + [[package]] 5083 + name = "prost" 5084 + version = "0.10.4" 5085 + source = "registry+https://github.com/rust-lang/crates.io-index" 5086 + checksum = "71adf41db68aa0daaefc69bb30bcd68ded9b9abaad5d1fbb6304c4fb390e083e" 5087 + dependencies = [ 5088 + "bytes", 5089 + "prost-derive 0.10.1", 5090 + ] 5091 + 5092 + [[package]] 5093 + name = "prost" 5094 + version = "0.11.9" 5095 + source = "registry+https://github.com/rust-lang/crates.io-index" 5096 + checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 5097 + dependencies = [ 5098 + "bytes", 5099 + "prost-derive 0.11.9", 5100 + ] 5101 + 5102 + [[package]] 5103 + name = "prost-derive" 5104 + version = "0.10.1" 5105 + source = "registry+https://github.com/rust-lang/crates.io-index" 5106 + checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc" 5107 + dependencies = [ 5108 + "anyhow", 5109 + "itertools", 5110 + "proc-macro2", 5111 + "quote", 5112 + "syn 1.0.109", 5113 + ] 5114 + 5115 + [[package]] 5116 + name = "prost-derive" 5117 + version = "0.11.9" 5118 + source = "registry+https://github.com/rust-lang/crates.io-index" 5119 + checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 5120 + dependencies = [ 5121 + "anyhow", 5122 + "itertools", 5123 + "proc-macro2", 5124 + "quote", 5125 + "syn 1.0.109", 5126 + ] 5127 + 5128 + [[package]] 5129 + name = "prost-types" 5130 + version = "0.10.1" 5131 + source = "registry+https://github.com/rust-lang/crates.io-index" 5132 + checksum = "2d0a014229361011dc8e69c8a1ec6c2e8d0f2af7c91e3ea3f5b2170298461e68" 5133 dependencies = [ 5134 "bytes", 5135 + "prost 0.10.4", 5136 + ] 5137 + 5138 + [[package]] 5139 + name = "prost-types" 5140 + version = "0.11.9" 5141 + source = "registry+https://github.com/rust-lang/crates.io-index" 5142 + checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 5143 + dependencies = [ 5144 + "prost 0.11.9", 5145 ] 5146 5147 [[package]] ··· 5150 source = "registry+https://github.com/rust-lang/crates.io-index" 5151 checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f" 5152 dependencies = [ 5153 + "idna 0.2.3", 5154 "native-tls", 5155 "url", 5156 ] ··· 5169 5170 [[package]] 5171 name = "quote" 5172 + version = "1.0.27" 5173 source = "registry+https://github.com/rust-lang/crates.io-index" 5174 + checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 5175 dependencies = [ 5176 "proc-macro2", 5177 ] 5178 5179 [[package]] 5180 name = "radium" 5181 + version = "0.7.0" 5182 source = "registry+https://github.com/rust-lang/crates.io-index" 5183 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 5184 + 5185 + [[package]] 5186 + name = "rand" 5187 + version = "0.6.5" 5188 + source = "registry+https://github.com/rust-lang/crates.io-index" 5189 + checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 5190 + dependencies = [ 5191 + "autocfg 0.1.8", 5192 + "libc", 5193 + "rand_chacha 0.1.1", 5194 + "rand_core 0.4.2", 5195 + "rand_hc 0.1.0", 5196 + "rand_isaac", 5197 + "rand_jitter", 5198 + "rand_os", 5199 + "rand_pcg 0.1.2", 5200 + "rand_xorshift", 5201 + "winapi", 5202 + ] 5203 5204 [[package]] 5205 name = "rand" ··· 5216 5217 [[package]] 5218 name = "rand" 5219 + version = "0.8.5" 5220 source = "registry+https://github.com/rust-lang/crates.io-index" 5221 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 5222 dependencies = [ 5223 "libc", 5224 "rand_chacha 0.3.1", 5225 + "rand_core 0.6.4", 5226 + ] 5227 + 5228 + [[package]] 5229 + name = "rand_chacha" 5230 + version = "0.1.1" 5231 + source = "registry+https://github.com/rust-lang/crates.io-index" 5232 + checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 5233 + dependencies = [ 5234 + "autocfg 0.1.8", 5235 + "rand_core 0.3.1", 5236 ] 5237 5238 [[package]] ··· 5252 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 5253 dependencies = [ 5254 "ppv-lite86", 5255 + "rand_core 0.6.4", 5256 + ] 5257 + 5258 + [[package]] 5259 + name = "rand_core" 5260 + version = "0.3.1" 5261 + source = "registry+https://github.com/rust-lang/crates.io-index" 5262 + checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 5263 + dependencies = [ 5264 + "rand_core 0.4.2", 5265 ] 5266 5267 [[package]] 5268 name = "rand_core" 5269 + version = "0.4.2" 5270 + source = "registry+https://github.com/rust-lang/crates.io-index" 5271 + checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 5272 + 5273 + [[package]] 5274 + name = "rand_core" 5275 version = "0.5.1" 5276 source = "registry+https://github.com/rust-lang/crates.io-index" 5277 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" ··· 5281 5282 [[package]] 5283 name = "rand_core" 5284 + version = "0.6.4" 5285 source = "registry+https://github.com/rust-lang/crates.io-index" 5286 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 5287 dependencies = [ 5288 + "getrandom 0.2.9", 5289 ] 5290 5291 [[package]] 5292 name = "rand_distr" 5293 + version = "0.3.0" 5294 source = "registry+https://github.com/rust-lang/crates.io-index" 5295 + checksum = "c9e9532ada3929fb8b2e9dbe28d1e06c9b2cc65813f074fcb6bd5fbefeff9d56" 5296 dependencies = [ 5297 + "num-traits", 5298 "rand 0.7.3", 5299 ] 5300 5301 [[package]] 5302 + name = "rand_hc" 5303 + version = "0.1.0" 5304 source = "registry+https://github.com/rust-lang/crates.io-index" 5305 + checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 5306 dependencies = [ 5307 + "rand_core 0.3.1", 5308 ] 5309 5310 [[package]] ··· 5317 ] 5318 5319 [[package]] 5320 + name = "rand_isaac" 5321 + version = "0.1.1" 5322 + source = "registry+https://github.com/rust-lang/crates.io-index" 5323 + checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 5324 + dependencies = [ 5325 + "rand_core 0.3.1", 5326 + ] 5327 + 5328 + [[package]] 5329 + name = "rand_jitter" 5330 + version = "0.1.4" 5331 + source = "registry+https://github.com/rust-lang/crates.io-index" 5332 + checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 5333 + dependencies = [ 5334 + "libc", 5335 + "rand_core 0.4.2", 5336 + "winapi", 5337 + ] 5338 + 5339 + [[package]] 5340 + name = "rand_os" 5341 + version = "0.1.3" 5342 + source = "registry+https://github.com/rust-lang/crates.io-index" 5343 + checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 5344 + dependencies = [ 5345 + "cloudabi", 5346 + "fuchsia-cprng", 5347 + "libc", 5348 + "rand_core 0.4.2", 5349 + "rdrand", 5350 + "winapi", 5351 + ] 5352 + 5353 + [[package]] 5354 + name = "rand_pcg" 5355 + version = "0.1.2" 5356 + source = "registry+https://github.com/rust-lang/crates.io-index" 5357 + checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 5358 + dependencies = [ 5359 + "autocfg 0.1.8", 5360 + "rand_core 0.4.2", 5361 + ] 5362 + 5363 + [[package]] 5364 + name = "rand_pcg" 5365 version = "0.3.1" 5366 source = "registry+https://github.com/rust-lang/crates.io-index" 5367 + checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" 5368 + dependencies = [ 5369 + "rand_core 0.6.4", 5370 + ] 5371 + 5372 + [[package]] 5373 + name = "rand_seeder" 5374 + version = "0.2.3" 5375 + source = "registry+https://github.com/rust-lang/crates.io-index" 5376 + checksum = "cf2890aaef0aa82719a50e808de264f9484b74b442e1a3a0e5ee38243ac40bdb" 5377 + dependencies = [ 5378 + "rand_core 0.6.4", 5379 + ] 5380 + 5381 + [[package]] 5382 + name = "rand_xorshift" 5383 + version = "0.1.1" 5384 + source = "registry+https://github.com/rust-lang/crates.io-index" 5385 + checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 5386 + dependencies = [ 5387 + "rand_core 0.3.1", 5388 + ] 5389 + 5390 + [[package]] 5391 + name = "rayon" 5392 + version = "1.7.0" 5393 + source = "registry+https://github.com/rust-lang/crates.io-index" 5394 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 5395 + dependencies = [ 5396 + "either", 5397 + "rayon-core", 5398 + ] 5399 + 5400 + [[package]] 5401 + name = "rayon-core" 5402 + version = "1.11.0" 5403 + source = "registry+https://github.com/rust-lang/crates.io-index" 5404 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 5405 + dependencies = [ 5406 + "crossbeam-channel", 5407 + "crossbeam-deque", 5408 + "crossbeam-utils", 5409 + "num_cpus", 5410 + ] 5411 + 5412 + [[package]] 5413 + name = "rdrand" 5414 + version = "0.4.0" 5415 + source = "registry+https://github.com/rust-lang/crates.io-index" 5416 + checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 5417 + dependencies = [ 5418 + "rand_core 0.3.1", 5419 + ] 5420 + 5421 + [[package]] 5422 + name = "redox_syscall" 5423 + version = "0.2.16" 5424 + source = "registry+https://github.com/rust-lang/crates.io-index" 5425 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 5426 dependencies = [ 5427 + "bitflags", 5428 ] 5429 5430 [[package]] 5431 name = "redox_syscall" 5432 + version = "0.3.5" 5433 source = "registry+https://github.com/rust-lang/crates.io-index" 5434 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 5435 dependencies = [ 5436 "bitflags", 5437 ] 5438 5439 [[package]] 5440 name = "redox_users" 5441 + version = "0.4.3" 5442 source = "registry+https://github.com/rust-lang/crates.io-index" 5443 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 5444 dependencies = [ 5445 + "getrandom 0.2.9", 5446 + "redox_syscall 0.2.16", 5447 + "thiserror", 5448 ] 5449 5450 [[package]] 5451 name = "ref-cast" 5452 + version = "1.0.16" 5453 source = "registry+https://github.com/rust-lang/crates.io-index" 5454 + checksum = "f43faa91b1c8b36841ee70e97188a869d37ae21759da6846d4be66de5bf7b12c" 5455 dependencies = [ 5456 "ref-cast-impl", 5457 ] 5458 5459 [[package]] 5460 name = "ref-cast-impl" 5461 + version = "1.0.16" 5462 source = "registry+https://github.com/rust-lang/crates.io-index" 5463 + checksum = "8d2275aab483050ab2a7364c1a46604865ee7d6906684e08db0f090acf74f9e7" 5464 dependencies = [ 5465 "proc-macro2", 5466 "quote", 5467 + "syn 2.0.16", 5468 ] 5469 5470 [[package]] 5471 name = "regex" 5472 + version = "1.8.1" 5473 source = "registry+https://github.com/rust-lang/crates.io-index" 5474 + checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 5475 dependencies = [ 5476 "aho-corasick", 5477 "memchr", 5478 + "regex-syntax 0.7.1", 5479 + ] 5480 + 5481 + [[package]] 5482 + name = "regex-automata" 5483 + version = "0.1.10" 5484 + source = "registry+https://github.com/rust-lang/crates.io-index" 5485 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 5486 + dependencies = [ 5487 + "regex-syntax 0.6.29", 5488 ] 5489 5490 [[package]] 5491 name = "regex-syntax" 5492 + version = "0.6.29" 5493 source = "registry+https://github.com/rust-lang/crates.io-index" 5494 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 5495 5496 [[package]] 5497 + name = "regex-syntax" 5498 + version = "0.7.1" 5499 source = "registry+https://github.com/rust-lang/crates.io-index" 5500 + checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 5501 5502 [[package]] 5503 name = "reqwest" 5504 + version = "0.11.18" 5505 source = "registry+https://github.com/rust-lang/crates.io-index" 5506 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 5507 dependencies = [ 5508 + "base64 0.21.0", 5509 "bytes", 5510 "encoding_rs", 5511 "futures-core", 5512 "futures-util", 5513 + "h2", 5514 "http", 5515 "http-body", 5516 "hyper", 5517 "hyper-tls", 5518 "ipnet", 5519 "js-sys", 5520 "log", 5521 "mime", 5522 "native-tls", 5523 + "once_cell", 5524 "percent-encoding", 5525 "pin-project-lite", 5526 "serde", ··· 5528 "serde_urlencoded", 5529 "tokio", 5530 "tokio-native-tls", 5531 + "tokio-socks", 5532 + "tower-service", 5533 "url", 5534 "wasm-bindgen", 5535 "wasm-bindgen-futures", ··· 5538 ] 5539 5540 [[package]] 5541 + name = "rfc6979" 5542 + version = "0.1.0" 5543 + source = "registry+https://github.com/rust-lang/crates.io-index" 5544 + checksum = "96ef608575f6392792f9ecf7890c00086591d29a83910939d430753f7c050525" 5545 + dependencies = [ 5546 + "crypto-bigint", 5547 + "hmac 0.11.0", 5548 + "zeroize", 5549 + ] 5550 + 5551 + [[package]] 5552 + name = "ring" 5553 + version = "0.16.20" 5554 + source = "registry+https://github.com/rust-lang/crates.io-index" 5555 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 5556 + dependencies = [ 5557 + "cc", 5558 + "libc", 5559 + "once_cell", 5560 + "spin 0.5.2", 5561 + "untrusted", 5562 + "web-sys", 5563 + "winapi", 5564 + ] 5565 + 5566 + [[package]] 5567 + name = "ripemd160" 5568 + version = "0.9.1" 5569 + source = "registry+https://github.com/rust-lang/crates.io-index" 5570 + checksum = "2eca4ecc81b7f313189bf73ce724400a07da2a6dac19588b03c8bd76a2dcc251" 5571 + dependencies = [ 5572 + "block-buffer 0.9.0", 5573 + "digest 0.9.0", 5574 + "opaque-debug 0.3.0", 5575 + ] 5576 + 5577 + [[package]] 5578 name = "rocket" 5579 + version = "0.5.0-rc.2" 5580 source = "registry+https://github.com/rust-lang/crates.io-index" 5581 + checksum = "98ead083fce4a405feb349cf09abdf64471c6077f14e0ce59364aa90d4b99317" 5582 dependencies = [ 5583 "async-stream", 5584 "async-trait", ··· 5594 "memchr", 5595 "multer", 5596 "num_cpus", 5597 + "parking_lot 0.12.1", 5598 "pin-project-lite", 5599 + "rand 0.8.5", 5600 "ref-cast", 5601 "rocket_codegen", 5602 "rocket_http", ··· 5604 "serde_json", 5605 "state", 5606 "tempfile", 5607 + "time 0.3.21", 5608 "tokio", 5609 "tokio-stream", 5610 "tokio-util", ··· 5615 5616 [[package]] 5617 name = "rocket_codegen" 5618 + version = "0.5.0-rc.2" 5619 source = "registry+https://github.com/rust-lang/crates.io-index" 5620 + checksum = "d6aeb6bb9c61e9cd2c00d70ea267bf36f76a4cc615e5908b349c2f9d93999b47" 5621 dependencies = [ 5622 "devise", 5623 "glob", ··· 5625 "proc-macro2", 5626 "quote", 5627 "rocket_http", 5628 + "syn 1.0.109", 5629 "unicode-xid", 5630 ] 5631 5632 [[package]] 5633 + name = "rocket_cors" 5634 + version = "0.5.2" 5635 + source = "git+https://github.com/lawliet89/rocket_cors?rev=dfd3662c49e2f6fc37df35091cb94d82f7fb5915#dfd3662c49e2f6fc37df35091cb94d82f7fb5915" 5636 + dependencies = [ 5637 + "log", 5638 + "regex", 5639 + "rocket", 5640 + "serde", 5641 + "serde_derive", 5642 + "unicase", 5643 + "unicase_serde", 5644 + "url", 5645 + ] 5646 + 5647 + [[package]] 5648 name = "rocket_http" 5649 + version = "0.5.0-rc.2" 5650 source = "registry+https://github.com/rust-lang/crates.io-index" 5651 + checksum = "2ded65d127954de3c12471630bf4b81a2792f065984461e65b91d0fdaafc17a2" 5652 dependencies = [ 5653 "cookie", 5654 "either", 5655 + "futures", 5656 "http", 5657 "hyper", 5658 "indexmap", 5659 "log", 5660 "memchr", 5661 "pear", 5662 "percent-encoding", 5663 "pin-project-lite", ··· 5666 "smallvec", 5667 "stable-pattern", 5668 "state", 5669 + "time 0.3.21", 5670 "tokio", 5671 "uncased", 5672 ] 5673 5674 [[package]] 5675 + name = "rocket_okapi" 5676 + version = "0.8.0-rc.2" 5677 + source = "registry+https://github.com/rust-lang/crates.io-index" 5678 + checksum = "489f4f5b120762f7974e65b919fc462d0660fd8b839026d8985b850fe5acccb0" 5679 + dependencies = [ 5680 + "either", 5681 + "log", 5682 + "okapi", 5683 + "rocket", 5684 + "rocket_okapi_codegen", 5685 + "schemars", 5686 + "serde", 5687 + "serde_json", 5688 + ] 5689 + 5690 + [[package]] 5691 + name = "rocket_okapi_codegen" 5692 + version = "0.8.0-rc.2" 5693 + source = "registry+https://github.com/rust-lang/crates.io-index" 5694 + checksum = "54f94d1ffe41472e08463d7a2674f1db04dc4df745285e8369b33d3cfd6b0308" 5695 + dependencies = [ 5696 + "darling", 5697 + "proc-macro2", 5698 + "quote", 5699 + "rocket_http", 5700 + "syn 1.0.109", 5701 + ] 5702 + 5703 + [[package]] 5704 name = "rustc_version" 5705 version = "0.2.3" 5706 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5710 ] 5711 5712 [[package]] 5713 + name = "rustc_version" 5714 + version = "0.4.0" 5715 + source = "registry+https://github.com/rust-lang/crates.io-index" 5716 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 5717 + dependencies = [ 5718 + "semver 1.0.17", 5719 + ] 5720 + 5721 + [[package]] 5722 + name = "rustix" 5723 + version = "0.37.19" 5724 + source = "registry+https://github.com/rust-lang/crates.io-index" 5725 + checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 5726 + dependencies = [ 5727 + "bitflags", 5728 + "errno", 5729 + "io-lifetimes", 5730 + "libc", 5731 + "linux-raw-sys", 5732 + "windows-sys 0.48.0", 5733 + ] 5734 + 5735 + [[package]] 5736 + name = "rustls" 5737 + version = "0.19.1" 5738 + source = "registry+https://github.com/rust-lang/crates.io-index" 5739 + checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" 5740 + dependencies = [ 5741 + "base64 0.13.1", 5742 + "log", 5743 + "ring", 5744 + "sct 0.6.1", 5745 + "webpki 0.21.4", 5746 + ] 5747 + 5748 + [[package]] 5749 + name = "rustls" 5750 + version = "0.20.8" 5751 + source = "registry+https://github.com/rust-lang/crates.io-index" 5752 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 5753 + dependencies = [ 5754 + "log", 5755 + "ring", 5756 + "sct 0.7.0", 5757 + "webpki 0.22.0", 5758 + ] 5759 + 5760 + [[package]] 5761 + name = "rustls-native-certs" 5762 + version = "0.5.0" 5763 + source = "registry+https://github.com/rust-lang/crates.io-index" 5764 + checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092" 5765 + dependencies = [ 5766 + "openssl-probe", 5767 + "rustls 0.19.1", 5768 + "schannel", 5769 + "security-framework", 5770 + ] 5771 + 5772 + [[package]] 5773 + name = "rustls-pemfile" 5774 + version = "1.0.2" 5775 + source = "registry+https://github.com/rust-lang/crates.io-index" 5776 + checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 5777 + dependencies = [ 5778 + "base64 0.21.0", 5779 + ] 5780 + 5781 + [[package]] 5782 name = "rustversion" 5783 + version = "1.0.12" 5784 source = "registry+https://github.com/rust-lang/crates.io-index" 5785 + checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 5786 5787 [[package]] 5788 name = "ryu" 5789 + version = "1.0.13" 5790 + source = "registry+https://github.com/rust-lang/crates.io-index" 5791 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 5792 + 5793 + [[package]] 5794 + name = "safer-ffi" 5795 + version = "0.1.0-rc1" 5796 source = "registry+https://github.com/rust-lang/crates.io-index" 5797 + checksum = "7270b08a2af50909969cfc28a239cfdda9ab1b3df74749b265c46956183e5bf7" 5798 + dependencies = [ 5799 + "inventory", 5800 + "libc", 5801 + "macro_rules_attribute", 5802 + "paste", 5803 + "safer_ffi-proc_macros", 5804 + "scopeguard", 5805 + "uninit", 5806 + "unwind_safe", 5807 + "with_builtin_macros", 5808 + ] 5809 + 5810 + [[package]] 5811 + name = "safer_ffi-proc_macros" 5812 + version = "0.1.0-rc1" 5813 + source = "registry+https://github.com/rust-lang/crates.io-index" 5814 + checksum = "1438fb328c52f5148ea02a317603efd802f2cd6eb9e721adfd51b94bb55d9ddb" 5815 + dependencies = [ 5816 + "macro_rules_attribute", 5817 + "prettyplease", 5818 + "proc-macro2", 5819 + "quote", 5820 + "syn 1.0.109", 5821 + ] 5822 + 5823 + [[package]] 5824 + name = "same-file" 5825 + version = "1.0.6" 5826 + source = "registry+https://github.com/rust-lang/crates.io-index" 5827 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 5828 + dependencies = [ 5829 + "winapi-util", 5830 + ] 5831 5832 [[package]] 5833 name = "schannel" 5834 + version = "0.1.21" 5835 source = "registry+https://github.com/rust-lang/crates.io-index" 5836 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 5837 dependencies = [ 5838 + "windows-sys 0.42.0", 5839 ] 5840 5841 [[package]] 5842 name = "schemars" 5843 + version = "0.8.12" 5844 source = "registry+https://github.com/rust-lang/crates.io-index" 5845 + checksum = "02c613288622e5f0c3fdc5dbd4db1c5fbe752746b1d1a56a0630b78fd00de44f" 5846 dependencies = [ 5847 "dyn-clone", 5848 + "indexmap", 5849 "schemars_derive", 5850 "serde", 5851 "serde_json", ··· 5853 5854 [[package]] 5855 name = "schemars_derive" 5856 + version = "0.8.12" 5857 source = "registry+https://github.com/rust-lang/crates.io-index" 5858 + checksum = "109da1e6b197438deb6db99952990c7f959572794b80ff93707d55a232545e7c" 5859 dependencies = [ 5860 "proc-macro2", 5861 "quote", 5862 "serde_derive_internals", 5863 + "syn 1.0.109", 5864 ] 5865 5866 [[package]] 5867 name = "scoped-tls" 5868 + version = "1.0.1" 5869 source = "registry+https://github.com/rust-lang/crates.io-index" 5870 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 5871 5872 [[package]] 5873 name = "scopeguard" ··· 5876 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 5877 5878 [[package]] 5879 + name = "sct" 5880 + version = "0.6.1" 5881 + source = "registry+https://github.com/rust-lang/crates.io-index" 5882 + checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" 5883 + dependencies = [ 5884 + "ring", 5885 + "untrusted", 5886 + ] 5887 + 5888 + [[package]] 5889 + name = "sct" 5890 + version = "0.7.0" 5891 + source = "registry+https://github.com/rust-lang/crates.io-index" 5892 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 5893 + dependencies = [ 5894 + "ring", 5895 + "untrusted", 5896 + ] 5897 + 5898 + [[package]] 5899 + name = "sec1" 5900 + version = "0.2.1" 5901 + source = "registry+https://github.com/rust-lang/crates.io-index" 5902 + checksum = "08da66b8b0965a5555b6bd6639e68ccba85e1e2506f5fbb089e93f8a04e1a2d1" 5903 + dependencies = [ 5904 + "der", 5905 + "generic-array 0.14.7", 5906 + "pkcs8", 5907 + "subtle 2.4.1", 5908 + "zeroize", 5909 + ] 5910 + 5911 + [[package]] 5912 name = "security-framework" 5913 + version = "2.9.0" 5914 source = "registry+https://github.com/rust-lang/crates.io-index" 5915 + checksum = "ca2855b3715770894e67cbfa3df957790aa0c9edc3bf06efa1a84d77fa0839d1" 5916 dependencies = [ 5917 "bitflags", 5918 "core-foundation", ··· 5923 5924 [[package]] 5925 name = "security-framework-sys" 5926 + version = "2.9.0" 5927 source = "registry+https://github.com/rust-lang/crates.io-index" 5928 + checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 5929 dependencies = [ 5930 "core-foundation-sys", 5931 "libc", ··· 5950 ] 5951 5952 [[package]] 5953 + name = "semver" 5954 + version = "1.0.17" 5955 + source = "registry+https://github.com/rust-lang/crates.io-index" 5956 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 5957 + 5958 + [[package]] 5959 name = "semver-parser" 5960 version = "0.7.0" 5961 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5972 5973 [[package]] 5974 name = "serde" 5975 + version = "1.0.163" 5976 source = "registry+https://github.com/rust-lang/crates.io-index" 5977 + checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 5978 dependencies = [ 5979 "serde_derive", 5980 ] 5981 5982 [[package]] 5983 name = "serde-json-wasm" 5984 + version = "0.4.1" 5985 + source = "registry+https://github.com/rust-lang/crates.io-index" 5986 + checksum = "479b4dbc401ca13ee8ce902851b834893251404c4f3c65370a49e047a6be09a5" 5987 + dependencies = [ 5988 + "serde", 5989 + ] 5990 + 5991 + [[package]] 5992 + name = "serde-wasm-bindgen" 5993 + version = "0.5.0" 5994 + source = "registry+https://github.com/rust-lang/crates.io-index" 5995 + checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" 5996 + dependencies = [ 5997 + "js-sys", 5998 + "serde", 5999 + "wasm-bindgen", 6000 + ] 6001 + 6002 + [[package]] 6003 + name = "serde_bytes" 6004 + version = "0.11.9" 6005 source = "registry+https://github.com/rust-lang/crates.io-index" 6006 + checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" 6007 dependencies = [ 6008 "serde", 6009 ] 6010 6011 [[package]] 6012 name = "serde_derive" 6013 + version = "1.0.163" 6014 source = "registry+https://github.com/rust-lang/crates.io-index" 6015 + checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 6016 dependencies = [ 6017 "proc-macro2", 6018 "quote", 6019 + "syn 2.0.16", 6020 ] 6021 6022 [[package]] 6023 name = "serde_derive_internals" 6024 + version = "0.26.0" 6025 source = "registry+https://github.com/rust-lang/crates.io-index" 6026 + checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" 6027 dependencies = [ 6028 "proc-macro2", 6029 "quote", 6030 + "syn 1.0.109", 6031 ] 6032 6033 [[package]] 6034 name = "serde_json" 6035 + version = "1.0.96" 6036 source = "registry+https://github.com/rust-lang/crates.io-index" 6037 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 6038 dependencies = [ 6039 "itoa", 6040 "ryu", ··· 6043 6044 [[package]] 6045 name = "serde_repr" 6046 + version = "0.1.12" 6047 source = "registry+https://github.com/rust-lang/crates.io-index" 6048 + checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab" 6049 dependencies = [ 6050 "proc-macro2", 6051 "quote", 6052 + "syn 2.0.16", 6053 ] 6054 6055 [[package]] 6056 name = "serde_urlencoded" 6057 + version = "0.7.1" 6058 source = "registry+https://github.com/rust-lang/crates.io-index" 6059 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 6060 dependencies = [ 6061 "form_urlencoded", 6062 "itoa", ··· 6065 ] 6066 6067 [[package]] 6068 + name = "sha-1" 6069 + version = "0.9.8" 6070 source = "registry+https://github.com/rust-lang/crates.io-index" 6071 + checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" 6072 dependencies = [ 6073 + "block-buffer 0.9.0", 6074 + "cfg-if", 6075 + "cpufeatures", 6076 + "digest 0.9.0", 6077 + "opaque-debug 0.3.0", 6078 ] 6079 6080 [[package]] 6081 + name = "sha-1" 6082 + version = "0.10.1" 6083 source = "registry+https://github.com/rust-lang/crates.io-index" 6084 + checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 6085 dependencies = [ 6086 + "cfg-if", 6087 + "cpufeatures", 6088 + "digest 0.10.6", 6089 ] 6090 6091 [[package]] 6092 + name = "sha1" 6093 + version = "0.10.5" 6094 source = "registry+https://github.com/rust-lang/crates.io-index" 6095 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 6096 dependencies = [ 6097 + "cfg-if", 6098 + "cpufeatures", 6099 + "digest 0.10.6", 6100 ] 6101 6102 [[package]] 6103 + name = "sha2" 6104 + version = "0.9.9" 6105 source = "registry+https://github.com/rust-lang/crates.io-index" 6106 + checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 6107 dependencies = [ 6108 "block-buffer 0.9.0", 6109 + "cfg-if", 6110 "cpufeatures", 6111 "digest 0.9.0", 6112 "opaque-debug 0.3.0", 6113 ] 6114 6115 [[package]] 6116 name = "sha2" 6117 + version = "0.10.6" 6118 source = "registry+https://github.com/rust-lang/crates.io-index" 6119 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 6120 dependencies = [ 6121 + "cfg-if", 6122 + "cpufeatures", 6123 + "digest 0.10.6", 6124 ] 6125 6126 [[package]] 6127 + name = "sha3" 6128 + version = "0.9.1" 6129 source = "registry+https://github.com/rust-lang/crates.io-index" 6130 + checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" 6131 dependencies = [ 6132 "block-buffer 0.9.0", 6133 "digest 0.9.0", 6134 + "keccak", 6135 "opaque-debug 0.3.0", 6136 ] 6137 6138 [[package]] 6139 + name = "sharded-slab" 6140 + version = "0.1.4" 6141 + source = "registry+https://github.com/rust-lang/crates.io-index" 6142 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 6143 + dependencies = [ 6144 + "lazy_static", 6145 + ] 6146 + 6147 + [[package]] 6148 + name = "signal-hook" 6149 + version = "0.3.15" 6150 + source = "registry+https://github.com/rust-lang/crates.io-index" 6151 + checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 6152 + dependencies = [ 6153 + "libc", 6154 + "signal-hook-registry", 6155 + ] 6156 + 6157 + [[package]] 6158 + name = "signal-hook-mio" 6159 + version = "0.2.3" 6160 + source = "registry+https://github.com/rust-lang/crates.io-index" 6161 + checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" 6162 + dependencies = [ 6163 + "libc", 6164 + "mio", 6165 + "signal-hook", 6166 + ] 6167 + 6168 + [[package]] 6169 name = "signal-hook-registry" 6170 + version = "1.4.1" 6171 source = "registry+https://github.com/rust-lang/crates.io-index" 6172 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 6173 dependencies = [ 6174 "libc", 6175 ] 6176 6177 [[package]] 6178 name = "signature" 6179 + version = "1.4.0" 6180 source = "registry+https://github.com/rust-lang/crates.io-index" 6181 + checksum = "02658e48d89f2bec991f9a78e69cfa4c316f8d6a6c4ec12fae1aeb263d486788" 6182 dependencies = [ 6183 "digest 0.9.0", 6184 + "rand_core 0.6.4", 6185 ] 6186 6187 [[package]] 6188 name = "slab" 6189 + version = "0.4.8" 6190 source = "registry+https://github.com/rust-lang/crates.io-index" 6191 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 6192 dependencies = [ 6193 + "autocfg 1.1.0", 6194 ] 6195 6196 [[package]] 6197 name = "smallvec" 6198 + version = "1.10.0" 6199 source = "registry+https://github.com/rust-lang/crates.io-index" 6200 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 6201 6202 [[package]] 6203 name = "snafu" 6204 + version = "0.7.4" 6205 source = "registry+https://github.com/rust-lang/crates.io-index" 6206 + checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" 6207 dependencies = [ 6208 "doc-comment", 6209 "snafu-derive", ··· 6211 6212 [[package]] 6213 name = "snafu-derive" 6214 + version = "0.7.4" 6215 source = "registry+https://github.com/rust-lang/crates.io-index" 6216 + checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 6217 dependencies = [ 6218 + "heck 0.4.1", 6219 "proc-macro2", 6220 "quote", 6221 + "syn 1.0.109", 6222 ] 6223 6224 [[package]] 6225 name = "socket2" 6226 + version = "0.4.9" 6227 source = "registry+https://github.com/rust-lang/crates.io-index" 6228 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 6229 dependencies = [ 6230 "libc", 6231 "winapi", 6232 ] 6233 6234 [[package]] 6235 + name = "sphinx-packet" 6236 version = "0.1.0" 6237 + source = "registry+https://github.com/rust-lang/crates.io-index" 6238 + checksum = "cc43eda802856ee82a7555c7b75ceb9e07451741c7a2f5f23d036020e01189d4" 6239 dependencies = [ 6240 + "aes 0.7.5", 6241 "arrayref", 6242 + "blake2 0.8.1", 6243 + "bs58", 6244 "byteorder", 6245 "chacha", 6246 "curve25519-dalek", 6247 + "digest 0.9.0", 6248 + "hkdf 0.11.0", 6249 + "hmac 0.11.0", 6250 "lioness", 6251 "log", 6252 "rand 0.7.3", 6253 + "rand_distr", 6254 + "sha2 0.9.9", 6255 + "subtle 2.4.1", 6256 ] 6257 6258 [[package]] 6259 name = "spin" 6260 + version = "0.5.2" 6261 source = "registry+https://github.com/rust-lang/crates.io-index" 6262 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 6263 6264 [[package]] 6265 + name = "spin" 6266 + version = "0.9.8" 6267 source = "registry+https://github.com/rust-lang/crates.io-index" 6268 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 6269 dependencies = [ 6270 + "lock_api", 6271 ] 6272 6273 [[package]] 6274 + name = "spki" 6275 + version = "0.5.4" 6276 source = "registry+https://github.com/rust-lang/crates.io-index" 6277 + checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27" 6278 dependencies = [ 6279 + "base64ct", 6280 + "der", 6281 ] 6282 6283 [[package]] 6284 + name = "sqlformat" 6285 + version = "0.1.8" 6286 source = "registry+https://github.com/rust-lang/crates.io-index" 6287 + checksum = "b4b7922be017ee70900be125523f38bdd644f4f06a1b16e8fa5a8ee8c34bffd4" 6288 dependencies = [ 6289 + "itertools", 6290 + "nom", 6291 + "unicode_categories", 6292 ] 6293 6294 [[package]] 6295 + name = "sqlformat" 6296 + version = "0.2.1" 6297 source = "registry+https://github.com/rust-lang/crates.io-index" 6298 + checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" 6299 + dependencies = [ 6300 + "itertools", 6301 + "nom", 6302 + "unicode_categories", 6303 + ] 6304 6305 [[package]] 6306 + name = "sqlx" 6307 + version = "0.5.13" 6308 + source = "registry+https://github.com/rust-lang/crates.io-index" 6309 + checksum = "551873805652ba0d912fec5bbb0f8b4cdd96baf8e2ebf5970e5671092966019b" 6310 + dependencies = [ 6311 + "sqlx-core 0.5.13", 6312 + "sqlx-macros 0.5.13", 6313 + ] 6314 + 6315 + [[package]] 6316 + name = "sqlx" 6317 + version = "0.6.3" 6318 + source = "registry+https://github.com/rust-lang/crates.io-index" 6319 + checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188" 6320 + dependencies = [ 6321 + "sqlx-core 0.6.3", 6322 + "sqlx-macros 0.6.3", 6323 + ] 6324 + 6325 + [[package]] 6326 + name = "sqlx-core" 6327 + version = "0.5.13" 6328 + source = "registry+https://github.com/rust-lang/crates.io-index" 6329 + checksum = "e48c61941ccf5ddcada342cd59e3e5173b007c509e1e8e990dafc830294d9dc5" 6330 + dependencies = [ 6331 + "ahash 0.7.6", 6332 + "atoi 0.4.0", 6333 + "bitflags", 6334 + "byteorder", 6335 + "bytes", 6336 + "chrono", 6337 + "crc 2.1.0", 6338 + "crossbeam-queue", 6339 + "either", 6340 + "event-listener", 6341 + "flume", 6342 + "futures-channel", 6343 + "futures-core", 6344 + "futures-executor", 6345 + "futures-intrusive", 6346 + "futures-util", 6347 + "hashlink 0.7.0", 6348 + "hex", 6349 + "indexmap", 6350 + "itoa", 6351 + "libc", 6352 + "libsqlite3-sys", 6353 + "log", 6354 + "memchr", 6355 + "once_cell", 6356 + "paste", 6357 + "percent-encoding", 6358 + "rustls 0.19.1", 6359 + "sha2 0.10.6", 6360 + "smallvec", 6361 + "sqlformat 0.1.8", 6362 + "sqlx-rt 0.5.13", 6363 + "stringprep", 6364 + "thiserror", 6365 + "tokio-stream", 6366 + "url", 6367 + "webpki 0.21.4", 6368 + "webpki-roots 0.21.1", 6369 + ] 6370 + 6371 + [[package]] 6372 + name = "sqlx-core" 6373 + version = "0.6.3" 6374 source = "registry+https://github.com/rust-lang/crates.io-index" 6375 + checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029" 6376 dependencies = [ 6377 + "ahash 0.7.6", 6378 + "atoi 1.0.0", 6379 + "bitflags", 6380 + "byteorder", 6381 + "bytes", 6382 + "chrono", 6383 + "crc 3.0.1", 6384 + "crossbeam-queue", 6385 + "dotenvy", 6386 + "either", 6387 + "event-listener", 6388 + "flume", 6389 + "futures-channel", 6390 + "futures-core", 6391 + "futures-executor", 6392 + "futures-intrusive", 6393 + "futures-util", 6394 + "hashlink 0.8.2", 6395 + "hex", 6396 + "indexmap", 6397 + "itoa", 6398 + "libc", 6399 + "libsqlite3-sys", 6400 + "log", 6401 + "memchr", 6402 + "once_cell", 6403 + "paste", 6404 + "percent-encoding", 6405 + "rustls 0.20.8", 6406 + "rustls-pemfile", 6407 + "sha2 0.10.6", 6408 + "smallvec", 6409 + "sqlformat 0.2.1", 6410 + "sqlx-rt 0.6.3", 6411 + "stringprep", 6412 + "thiserror", 6413 + "tokio-stream", 6414 + "url", 6415 + "webpki-roots 0.22.6", 6416 ] 6417 6418 [[package]] 6419 + name = "sqlx-macros" 6420 + version = "0.5.13" 6421 source = "registry+https://github.com/rust-lang/crates.io-index" 6422 + checksum = "bc0fba2b0cae21fc00fe6046f8baa4c7fcb49e379f0f592b04696607f69ed2e1" 6423 dependencies = [ 6424 + "dotenv", 6425 + "either", 6426 + "heck 0.4.1", 6427 + "once_cell", 6428 "proc-macro2", 6429 "quote", 6430 + "sha2 0.10.6", 6431 + "sqlx-core 0.5.13", 6432 + "sqlx-rt 0.5.13", 6433 + "syn 1.0.109", 6434 + "url", 6435 ] 6436 6437 [[package]] 6438 + name = "sqlx-macros" 6439 + version = "0.6.3" 6440 source = "registry+https://github.com/rust-lang/crates.io-index" 6441 + checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9" 6442 dependencies = [ 6443 + "dotenvy", 6444 + "either", 6445 + "heck 0.4.1", 6446 + "once_cell", 6447 "proc-macro2", 6448 "quote", 6449 + "sha2 0.10.6", 6450 + "sqlx-core 0.6.3", 6451 + "sqlx-rt 0.6.3", 6452 + "syn 1.0.109", 6453 + "url", 6454 + ] 6455 + 6456 + [[package]] 6457 + name = "sqlx-rt" 6458 + version = "0.5.13" 6459 + source = "registry+https://github.com/rust-lang/crates.io-index" 6460 + checksum = "4db708cd3e459078f85f39f96a00960bd841f66ee2a669e90bf36907f5a79aae" 6461 + dependencies = [ 6462 + "once_cell", 6463 + "tokio", 6464 + "tokio-rustls 0.22.0", 6465 + ] 6466 + 6467 + [[package]] 6468 + name = "sqlx-rt" 6469 + version = "0.6.3" 6470 + source = "registry+https://github.com/rust-lang/crates.io-index" 6471 + checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024" 6472 + dependencies = [ 6473 + "once_cell", 6474 + "tokio", 6475 + "tokio-rustls 0.23.4", 6476 ] 6477 6478 [[package]] 6479 + name = "stable-pattern" 6480 + version = "0.1.0" 6481 source = "registry+https://github.com/rust-lang/crates.io-index" 6482 + checksum = "4564168c00635f88eaed410d5efa8131afa8d8699a612c80c455a0ba05c21045" 6483 + dependencies = [ 6484 + "memchr", 6485 + ] 6486 6487 [[package]] 6488 + name = "state" 6489 + version = "0.5.3" 6490 source = "registry+https://github.com/rust-lang/crates.io-index" 6491 + checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 6492 dependencies = [ 6493 + "loom", 6494 + ] 6495 + 6496 + [[package]] 6497 + name = "static_assertions" 6498 + version = "1.1.0" 6499 + source = "registry+https://github.com/rust-lang/crates.io-index" 6500 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 6501 + 6502 + [[package]] 6503 + name = "stringprep" 6504 + version = "0.1.2" 6505 + source = "registry+https://github.com/rust-lang/crates.io-index" 6506 + checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 6507 + dependencies = [ 6508 + "unicode-bidi", 6509 + "unicode-normalization", 6510 ] 6511 6512 [[package]] 6513 name = "strsim" 6514 + version = "0.10.0" 6515 + source = "registry+https://github.com/rust-lang/crates.io-index" 6516 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 6517 + 6518 + [[package]] 6519 + name = "strum" 6520 + version = "0.23.0" 6521 + source = "registry+https://github.com/rust-lang/crates.io-index" 6522 + checksum = "cae14b91c7d11c9a851d3fbc80a963198998c2a64eec840477fa92d8ce9b70bb" 6523 + dependencies = [ 6524 + "strum_macros 0.23.1", 6525 + ] 6526 + 6527 + [[package]] 6528 + name = "strum" 6529 + version = "0.24.1" 6530 source = "registry+https://github.com/rust-lang/crates.io-index" 6531 + checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 6532 + 6533 + [[package]] 6534 + name = "strum_macros" 6535 + version = "0.23.1" 6536 + source = "registry+https://github.com/rust-lang/crates.io-index" 6537 + checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38" 6538 + dependencies = [ 6539 + "heck 0.3.3", 6540 + "proc-macro2", 6541 + "quote", 6542 + "rustversion", 6543 + "syn 1.0.109", 6544 + ] 6545 + 6546 + [[package]] 6547 + name = "strum_macros" 6548 + version = "0.24.3" 6549 + source = "registry+https://github.com/rust-lang/crates.io-index" 6550 + checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 6551 + dependencies = [ 6552 + "heck 0.4.1", 6553 + "proc-macro2", 6554 + "quote", 6555 + "rustversion", 6556 + "syn 1.0.109", 6557 + ] 6558 6559 [[package]] 6560 name = "subtle" ··· 6564 6565 [[package]] 6566 name = "subtle" 6567 + version = "2.4.1" 6568 source = "registry+https://github.com/rust-lang/crates.io-index" 6569 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 6570 + 6571 + [[package]] 6572 + name = "subtle-encoding" 6573 + version = "0.5.1" 6574 + source = "registry+https://github.com/rust-lang/crates.io-index" 6575 + checksum = "7dcb1ed7b8330c5eed5441052651dd7a12c75e2ed88f2ec024ae1fa3a5e59945" 6576 + dependencies = [ 6577 + "zeroize", 6578 + ] 6579 6580 [[package]] 6581 name = "syn" 6582 + version = "1.0.109" 6583 source = "registry+https://github.com/rust-lang/crates.io-index" 6584 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 6585 dependencies = [ 6586 "proc-macro2", 6587 "quote", 6588 + "unicode-ident", 6589 ] 6590 6591 [[package]] 6592 + name = "syn" 6593 + version = "2.0.16" 6594 source = "registry+https://github.com/rust-lang/crates.io-index" 6595 + checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" 6596 dependencies = [ 6597 "proc-macro2", 6598 "quote", 6599 + "unicode-ident", 6600 ] 6601 6602 [[package]] 6603 + name = "sync_wrapper" 6604 + version = "0.1.2" 6605 + source = "registry+https://github.com/rust-lang/crates.io-index" 6606 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 6607 + 6608 + [[package]] 6609 + name = "sysinfo" 6610 + version = "0.27.8" 6611 source = "registry+https://github.com/rust-lang/crates.io-index" 6612 + checksum = "a902e9050fca0a5d6877550b769abd2bd1ce8c04634b941dbe2809735e1a1e33" 6613 dependencies = [ 6614 + "cfg-if", 6615 + "core-foundation-sys", 6616 "libc", 6617 + "ntapi", 6618 + "once_cell", 6619 + "rayon", 6620 "winapi", 6621 ] 6622 6623 [[package]] 6624 + name = "tap" 6625 + version = "1.0.1" 6626 + source = "registry+https://github.com/rust-lang/crates.io-index" 6627 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 6628 + 6629 + [[package]] 6630 + name = "tempfile" 6631 + version = "3.5.0" 6632 + source = "registry+https://github.com/rust-lang/crates.io-index" 6633 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 6634 + dependencies = [ 6635 + "cfg-if", 6636 + "fastrand", 6637 + "redox_syscall 0.3.5", 6638 + "rustix", 6639 + "windows-sys 0.45.0", 6640 + ] 6641 + 6642 + [[package]] 6643 + name = "tendermint" 6644 + version = "0.23.7" 6645 + source = "registry+https://github.com/rust-lang/crates.io-index" 6646 + checksum = "3ca881fa4dedd2b46334f13be7fbc8cc1549ba4be5a833fe4e73d1a1baaf7949" 6647 + dependencies = [ 6648 + "async-trait", 6649 + "bytes", 6650 + "ed25519", 6651 + "ed25519-dalek", 6652 + "flex-error", 6653 + "futures", 6654 + "k256", 6655 + "num-traits", 6656 + "once_cell", 6657 + "prost 0.10.4", 6658 + "prost-types 0.10.1", 6659 + "ripemd160", 6660 + "serde", 6661 + "serde_bytes", 6662 + "serde_json", 6663 + "serde_repr", 6664 + "sha2 0.9.9", 6665 + "signature", 6666 + "subtle 2.4.1", 6667 + "subtle-encoding", 6668 + "tendermint-proto", 6669 + "time 0.3.21", 6670 + "zeroize", 6671 + ] 6672 + 6673 + [[package]] 6674 + name = "tendermint-config" 6675 + version = "0.23.7" 6676 + source = "registry+https://github.com/rust-lang/crates.io-index" 6677 + checksum = "f6c56ee93f4e9b7e7daba86d171f44572e91b741084384d0ae00df7991873dfd" 6678 + dependencies = [ 6679 + "flex-error", 6680 + "serde", 6681 + "serde_json", 6682 + "tendermint", 6683 + "toml", 6684 + "url", 6685 + ] 6686 + 6687 + [[package]] 6688 + name = "tendermint-proto" 6689 + version = "0.23.7" 6690 + source = "registry+https://github.com/rust-lang/crates.io-index" 6691 + checksum = "b71f925d74903f4abbdc4af0110635a307b3cb05b175fdff4a7247c14a4d0874" 6692 + dependencies = [ 6693 + "bytes", 6694 + "flex-error", 6695 + "num-derive", 6696 + "num-traits", 6697 + "prost 0.10.4", 6698 + "prost-types 0.10.1", 6699 + "serde", 6700 + "serde_bytes", 6701 + "subtle-encoding", 6702 + "time 0.3.21", 6703 + ] 6704 + 6705 + [[package]] 6706 + name = "tendermint-rpc" 6707 + version = "0.23.7" 6708 + source = "registry+https://github.com/rust-lang/crates.io-index" 6709 + checksum = "a13e63f57ee05a1e927887191c76d1b139de9fa40c180b9f8727ee44377242a6" 6710 + dependencies = [ 6711 + "async-trait", 6712 + "bytes", 6713 + "flex-error", 6714 + "futures", 6715 + "getrandom 0.2.9", 6716 + "http", 6717 + "hyper", 6718 + "hyper-proxy", 6719 + "hyper-rustls", 6720 + "peg", 6721 + "pin-project", 6722 + "serde", 6723 + "serde_bytes", 6724 + "serde_json", 6725 + "subtle-encoding", 6726 + "tendermint", 6727 + "tendermint-config", 6728 + "tendermint-proto", 6729 + "thiserror", 6730 + "time 0.3.21", 6731 + "tokio", 6732 + "tracing", 6733 + "url", 6734 + "uuid 0.8.2", 6735 + "walkdir", 6736 + ] 6737 + 6738 + [[package]] 6739 name = "termcolor" 6740 + version = "1.2.0" 6741 source = "registry+https://github.com/rust-lang/crates.io-index" 6742 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 6743 dependencies = [ 6744 "winapi-util", 6745 ] 6746 6747 [[package]] 6748 name = "textwrap" 6749 + version = "0.16.0" 6750 source = "registry+https://github.com/rust-lang/crates.io-index" 6751 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 6752 6753 [[package]] 6754 name = "thiserror" 6755 + version = "1.0.40" 6756 source = "registry+https://github.com/rust-lang/crates.io-index" 6757 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 6758 dependencies = [ 6759 "thiserror-impl", 6760 ] 6761 6762 [[package]] 6763 name = "thiserror-impl" 6764 + version = "1.0.40" 6765 source = "registry+https://github.com/rust-lang/crates.io-index" 6766 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 6767 dependencies = [ 6768 "proc-macro2", 6769 "quote", 6770 + "syn 2.0.16", 6771 + ] 6772 + 6773 + [[package]] 6774 + name = "thread_local" 6775 + version = "1.1.7" 6776 + source = "registry+https://github.com/rust-lang/crates.io-index" 6777 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 6778 + dependencies = [ 6779 + "cfg-if", 6780 + "once_cell", 6781 ] 6782 6783 [[package]] 6784 name = "time" 6785 + version = "0.1.45" 6786 source = "registry+https://github.com/rust-lang/crates.io-index" 6787 + checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 6788 dependencies = [ 6789 "libc", 6790 + "wasi 0.10.0+wasi-snapshot-preview1", 6791 "winapi", 6792 ] 6793 6794 [[package]] 6795 + name = "time" 6796 + version = "0.3.21" 6797 + source = "registry+https://github.com/rust-lang/crates.io-index" 6798 + checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc" 6799 + dependencies = [ 6800 + "itoa", 6801 + "js-sys", 6802 + "serde", 6803 + "time-core", 6804 + "time-macros", 6805 + ] 6806 + 6807 + [[package]] 6808 + name = "time-core" 6809 version = "0.1.1" 6810 source = "registry+https://github.com/rust-lang/crates.io-index" 6811 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 6812 + 6813 + [[package]] 6814 + name = "time-macros" 6815 + version = "0.2.9" 6816 + source = "registry+https://github.com/rust-lang/crates.io-index" 6817 + checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 6818 dependencies = [ 6819 + "time-core", 6820 ] 6821 6822 [[package]] 6823 + name = "tinytemplate" 6824 + version = "1.2.1" 6825 source = "registry+https://github.com/rust-lang/crates.io-index" 6826 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 6827 dependencies = [ 6828 + "serde", 6829 + "serde_json", 6830 ] 6831 6832 [[package]] 6833 name = "tinyvec" 6834 + version = "1.6.0" 6835 source = "registry+https://github.com/rust-lang/crates.io-index" 6836 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 6837 dependencies = [ 6838 "tinyvec_macros", 6839 ] 6840 6841 [[package]] 6842 name = "tinyvec_macros" 6843 + version = "0.1.1" 6844 source = "registry+https://github.com/rust-lang/crates.io-index" 6845 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 6846 6847 [[package]] 6848 name = "tokio" 6849 + version = "1.28.1" 6850 source = "registry+https://github.com/rust-lang/crates.io-index" 6851 + checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105" 6852 dependencies = [ 6853 + "autocfg 1.1.0", 6854 "bytes", 6855 "libc", 6856 "mio", 6857 "num_cpus", 6858 + "parking_lot 0.12.1", 6859 "pin-project-lite", 6860 "signal-hook-registry", 6861 + "socket2", 6862 "tokio-macros", 6863 + "tracing", 6864 + "windows-sys 0.48.0", 6865 ] 6866 6867 [[package]] 6868 + name = "tokio-io-timeout" 6869 version = "1.2.0" 6870 source = "registry+https://github.com/rust-lang/crates.io-index" 6871 + checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 6872 + dependencies = [ 6873 + "pin-project-lite", 6874 + "tokio", 6875 + ] 6876 + 6877 + [[package]] 6878 + name = "tokio-macros" 6879 + version = "2.1.0" 6880 + source = "registry+https://github.com/rust-lang/crates.io-index" 6881 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 6882 dependencies = [ 6883 "proc-macro2", 6884 "quote", 6885 + "syn 2.0.16", 6886 ] 6887 6888 [[package]] 6889 name = "tokio-native-tls" 6890 + version = "0.3.1" 6891 source = "registry+https://github.com/rust-lang/crates.io-index" 6892 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 6893 dependencies = [ 6894 "native-tls", 6895 "tokio", 6896 ] 6897 6898 [[package]] 6899 + name = "tokio-rustls" 6900 + version = "0.22.0" 6901 + source = "registry+https://github.com/rust-lang/crates.io-index" 6902 + checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" 6903 + dependencies = [ 6904 + "rustls 0.19.1", 6905 + "tokio", 6906 + "webpki 0.21.4", 6907 + ] 6908 + 6909 + [[package]] 6910 + name = "tokio-rustls" 6911 + version = "0.23.4" 6912 + source = "registry+https://github.com/rust-lang/crates.io-index" 6913 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 6914 + dependencies = [ 6915 + "rustls 0.20.8", 6916 + "tokio", 6917 + "webpki 0.22.0", 6918 + ] 6919 + 6920 + [[package]] 6921 + name = "tokio-socks" 6922 + version = "0.5.1" 6923 + source = "registry+https://github.com/rust-lang/crates.io-index" 6924 + checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" 6925 + dependencies = [ 6926 + "either", 6927 + "futures-util", 6928 + "thiserror", 6929 + "tokio", 6930 + ] 6931 + 6932 + [[package]] 6933 name = "tokio-stream" 6934 + version = "0.1.14" 6935 source = "registry+https://github.com/rust-lang/crates.io-index" 6936 + checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 6937 dependencies = [ 6938 "futures-core", 6939 "pin-project-lite", 6940 "tokio", 6941 + "tokio-util", 6942 ] 6943 6944 [[package]] ··· 6964 "log", 6965 "pin-project", 6966 "tokio", 6967 + "tungstenite 0.13.0", 6968 + ] 6969 + 6970 + [[package]] 6971 + name = "tokio-tungstenite" 6972 + version = "0.17.2" 6973 + source = "registry+https://github.com/rust-lang/crates.io-index" 6974 + checksum = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181" 6975 + dependencies = [ 6976 + "futures-util", 6977 + "log", 6978 + "tokio", 6979 + "tungstenite 0.17.3", 6980 ] 6981 6982 [[package]] 6983 name = "tokio-util" 6984 + version = "0.7.8" 6985 source = "registry+https://github.com/rust-lang/crates.io-index" 6986 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 6987 dependencies = [ 6988 "bytes", 6989 "futures-core", 6990 "futures-sink", 6991 "pin-project-lite", 6992 "slab", 6993 "tokio", 6994 + "tracing", 6995 ] 6996 6997 [[package]] 6998 name = "toml" 6999 + version = "0.5.11" 7000 source = "registry+https://github.com/rust-lang/crates.io-index" 7001 + checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 7002 dependencies = [ 7003 "serde", 7004 ] 7005 7006 [[package]] 7007 + name = "tonic" 7008 + version = "0.9.2" 7009 + source = "registry+https://github.com/rust-lang/crates.io-index" 7010 + checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a" 7011 dependencies = [ 7012 + "async-trait", 7013 + "axum", 7014 + "base64 0.21.0", 7015 + "bytes", 7016 + "futures-core", 7017 + "futures-util", 7018 + "h2", 7019 + "http", 7020 + "http-body", 7021 + "hyper", 7022 + "hyper-timeout", 7023 + "percent-encoding", 7024 + "pin-project", 7025 + "prost 0.11.9", 7026 + "tokio", 7027 + "tokio-stream", 7028 + "tower", 7029 + "tower-layer", 7030 + "tower-service", 7031 + "tracing", 7032 ] 7033 7034 [[package]] 7035 + name = "tower" 7036 + version = "0.4.13" 7037 + source = "registry+https://github.com/rust-lang/crates.io-index" 7038 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 7039 + dependencies = [ 7040 + "futures-core", 7041 + "futures-util", 7042 + "indexmap", 7043 + "pin-project", 7044 + "pin-project-lite", 7045 + "rand 0.8.5", 7046 + "slab", 7047 + "tokio", 7048 + "tokio-util", 7049 + "tower-layer", 7050 + "tower-service", 7051 + "tracing", 7052 + ] 7053 + 7054 + [[package]] 7055 + name = "tower-layer" 7056 + version = "0.3.2" 7057 + source = "registry+https://github.com/rust-lang/crates.io-index" 7058 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 7059 + 7060 + [[package]] 7061 name = "tower-service" 7062 + version = "0.3.2" 7063 source = "registry+https://github.com/rust-lang/crates.io-index" 7064 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 7065 7066 [[package]] 7067 name = "tracing" 7068 + version = "0.1.37" 7069 source = "registry+https://github.com/rust-lang/crates.io-index" 7070 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 7071 dependencies = [ 7072 + "cfg-if", 7073 "pin-project-lite", 7074 + "tracing-attributes", 7075 "tracing-core", 7076 ] 7077 7078 [[package]] 7079 + name = "tracing-appender" 7080 + version = "0.2.2" 7081 + source = "registry+https://github.com/rust-lang/crates.io-index" 7082 + checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e" 7083 + dependencies = [ 7084 + "crossbeam-channel", 7085 + "time 0.3.21", 7086 + "tracing-subscriber", 7087 + ] 7088 + 7089 + [[package]] 7090 + name = "tracing-attributes" 7091 + version = "0.1.24" 7092 + source = "registry+https://github.com/rust-lang/crates.io-index" 7093 + checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" 7094 + dependencies = [ 7095 + "proc-macro2", 7096 + "quote", 7097 + "syn 2.0.16", 7098 + ] 7099 + 7100 + [[package]] 7101 name = "tracing-core" 7102 + version = "0.1.31" 7103 + source = "registry+https://github.com/rust-lang/crates.io-index" 7104 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 7105 + dependencies = [ 7106 + "once_cell", 7107 + "valuable", 7108 + ] 7109 + 7110 + [[package]] 7111 + name = "tracing-log" 7112 + version = "0.1.3" 7113 source = "registry+https://github.com/rust-lang/crates.io-index" 7114 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 7115 dependencies = [ 7116 "lazy_static", 7117 + "log", 7118 + "tracing-core", 7119 + ] 7120 + 7121 + [[package]] 7122 + name = "tracing-subscriber" 7123 + version = "0.3.17" 7124 + source = "registry+https://github.com/rust-lang/crates.io-index" 7125 + checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 7126 + dependencies = [ 7127 + "matchers", 7128 + "nu-ansi-term", 7129 + "once_cell", 7130 + "regex", 7131 + "sharded-slab", 7132 + "smallvec", 7133 + "thread_local", 7134 + "tracing", 7135 + "tracing-core", 7136 + "tracing-log", 7137 + ] 7138 + 7139 + [[package]] 7140 + name = "tracing-tree" 7141 + version = "0.2.3" 7142 + source = "registry+https://github.com/rust-lang/crates.io-index" 7143 + checksum = "4f9742d8df709837409dbb22aa25dd7769c260406f20ff48a2320b80a4a6aed0" 7144 + dependencies = [ 7145 + "atty", 7146 + "nu-ansi-term", 7147 + "tracing-core", 7148 + "tracing-log", 7149 + "tracing-subscriber", 7150 ] 7151 7152 [[package]] 7153 name = "try-lock" 7154 + version = "0.2.4" 7155 + source = "registry+https://github.com/rust-lang/crates.io-index" 7156 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 7157 + 7158 + [[package]] 7159 + name = "ts-rs" 7160 + version = "6.2.1" 7161 + source = "registry+https://github.com/rust-lang/crates.io-index" 7162 + checksum = "4added4070a4fdf9df03457206cd2e4b12417c8560a2954d91ffcbe60177a56a" 7163 + dependencies = [ 7164 + "thiserror", 7165 + "ts-rs-macros", 7166 + ] 7167 + 7168 + [[package]] 7169 + name = "ts-rs-cli" 7170 + version = "0.1.0" 7171 + dependencies = [ 7172 + "anyhow", 7173 + "nym-api-requests", 7174 + "nym-mixnet-contract-common", 7175 + "nym-types", 7176 + "nym-validator-client", 7177 + "nym-vesting-contract-common", 7178 + "nym-wallet-types", 7179 + "ts-rs", 7180 + "walkdir", 7181 + ] 7182 + 7183 + [[package]] 7184 + name = "ts-rs-macros" 7185 + version = "6.2.0" 7186 source = "registry+https://github.com/rust-lang/crates.io-index" 7187 + checksum = "9f807fdb3151fee75df7485b901a89624358cd07a67a8fb1a5831bf5a07681ff" 7188 + dependencies = [ 7189 + "Inflector", 7190 + "proc-macro2", 7191 + "quote", 7192 + "syn 1.0.109", 7193 + "termcolor", 7194 + ] 7195 7196 [[package]] 7197 name = "tungstenite" ··· 7199 source = "registry+https://github.com/rust-lang/crates.io-index" 7200 checksum = "5fe8dada8c1a3aeca77d6b51a4f1314e0f4b8e438b7b1b71e3ddaca8080e4093" 7201 dependencies = [ 7202 + "base64 0.13.1", 7203 "byteorder", 7204 "bytes", 7205 "http", 7206 "httparse", 7207 "input_buffer", 7208 "log", 7209 + "rand 0.8.5", 7210 + "sha-1 0.9.8", 7211 "thiserror", 7212 "url", 7213 "utf-8", 7214 ] 7215 7216 [[package]] 7217 + name = "tungstenite" 7218 + version = "0.17.3" 7219 source = "registry+https://github.com/rust-lang/crates.io-index" 7220 + checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" 7221 dependencies = [ 7222 + "base64 0.13.1", 7223 + "byteorder", 7224 + "bytes", 7225 + "http", 7226 + "httparse", 7227 + "log", 7228 + "rand 0.8.5", 7229 + "sha-1 0.10.1", 7230 + "thiserror", 7231 + "url", 7232 + "utf-8", 7233 ] 7234 7235 [[package]] 7236 name = "typenum" 7237 + version = "1.16.0" 7238 source = "registry+https://github.com/rust-lang/crates.io-index" 7239 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 7240 7241 [[package]] 7242 name = "ubyte" 7243 + version = "0.10.3" 7244 source = "registry+https://github.com/rust-lang/crates.io-index" 7245 + checksum = "c81f0dae7d286ad0d9366d7679a77934cfc3cf3a8d67e82669794412b2368fe6" 7246 dependencies = [ 7247 "serde", 7248 ] 7249 7250 [[package]] 7251 name = "ucd-trie" 7252 + version = "0.1.5" 7253 source = "registry+https://github.com/rust-lang/crates.io-index" 7254 + checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 7255 7256 [[package]] 7257 name = "uint" 7258 + version = "0.9.5" 7259 source = "registry+https://github.com/rust-lang/crates.io-index" 7260 + checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" 7261 dependencies = [ 7262 "byteorder", 7263 "crunchy", ··· 7267 7268 [[package]] 7269 name = "uncased" 7270 + version = "0.9.9" 7271 source = "registry+https://github.com/rust-lang/crates.io-index" 7272 + checksum = "9b9bc53168a4be7402ab86c3aad243a84dd7381d09be0eddc81280c1da95ca68" 7273 dependencies = [ 7274 "serde", 7275 "version_check", 7276 ] 7277 7278 [[package]] 7279 + name = "unicase" 7280 + version = "2.6.0" 7281 source = "registry+https://github.com/rust-lang/crates.io-index" 7282 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 7283 + dependencies = [ 7284 + "version_check", 7285 + ] 7286 7287 [[package]] 7288 + name = "unicase_serde" 7289 + version = "0.1.0" 7290 source = "registry+https://github.com/rust-lang/crates.io-index" 7291 + checksum = "6ef53697679d874d69f3160af80bc28de12730a985d57bdf2b47456ccb8b11f1" 7292 dependencies = [ 7293 + "serde", 7294 + "unicase", 7295 ] 7296 7297 [[package]] 7298 + name = "unicode-bidi" 7299 + version = "0.3.13" 7300 + source = "registry+https://github.com/rust-lang/crates.io-index" 7301 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 7302 + 7303 + [[package]] 7304 + name = "unicode-ident" 7305 + version = "1.0.8" 7306 + source = "registry+https://github.com/rust-lang/crates.io-index" 7307 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 7308 + 7309 + [[package]] 7310 name = "unicode-normalization" 7311 + version = "0.1.22" 7312 source = "registry+https://github.com/rust-lang/crates.io-index" 7313 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 7314 dependencies = [ 7315 "tinyvec", 7316 ] 7317 7318 [[package]] 7319 + name = "unicode-segmentation" 7320 + version = "1.10.1" 7321 + source = "registry+https://github.com/rust-lang/crates.io-index" 7322 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 7323 + 7324 + [[package]] 7325 name = "unicode-width" 7326 + version = "0.1.10" 7327 source = "registry+https://github.com/rust-lang/crates.io-index" 7328 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 7329 7330 [[package]] 7331 name = "unicode-xid" 7332 + version = "0.2.4" 7333 + source = "registry+https://github.com/rust-lang/crates.io-index" 7334 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 7335 + 7336 + [[package]] 7337 + name = "unicode_categories" 7338 + version = "0.1.1" 7339 + source = "registry+https://github.com/rust-lang/crates.io-index" 7340 + checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 7341 + 7342 + [[package]] 7343 + name = "uninit" 7344 + version = "0.5.1" 7345 + source = "registry+https://github.com/rust-lang/crates.io-index" 7346 + checksum = "3e130f2ed46ca5d8ec13c7ff95836827f92f5f5f37fd2b2bf16f33c408d98bb6" 7347 + dependencies = [ 7348 + "extension-traits", 7349 + ] 7350 + 7351 + [[package]] 7352 + name = "universal-hash" 7353 + version = "0.5.0" 7354 + source = "registry+https://github.com/rust-lang/crates.io-index" 7355 + checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5" 7356 + dependencies = [ 7357 + "crypto-common", 7358 + "subtle 2.4.1", 7359 + ] 7360 + 7361 + [[package]] 7362 + name = "untrusted" 7363 + version = "0.7.1" 7364 + source = "registry+https://github.com/rust-lang/crates.io-index" 7365 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 7366 + 7367 + [[package]] 7368 + name = "unwind_safe" 7369 + version = "0.1.0" 7370 source = "registry+https://github.com/rust-lang/crates.io-index" 7371 + checksum = "0976c77def3f1f75c4ef892a292c31c0bbe9e3d0702c63044d7c76db298171a3" 7372 7373 [[package]] 7374 name = "url" 7375 + version = "2.3.1" 7376 source = "registry+https://github.com/rust-lang/crates.io-index" 7377 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 7378 dependencies = [ 7379 "form_urlencoded", 7380 + "idna 0.3.0", 7381 "percent-encoding", 7382 + "serde", 7383 ] 7384 7385 [[package]] 7386 + name = "urlencoding" 7387 + version = "2.1.2" 7388 + source = "registry+https://github.com/rust-lang/crates.io-index" 7389 + checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 7390 + 7391 + [[package]] 7392 name = "utf-8" 7393 version = "0.7.6" 7394 source = "registry+https://github.com/rust-lang/crates.io-index" 7395 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 7396 7397 [[package]] 7398 + name = "utf8parse" 7399 + version = "0.2.1" 7400 + source = "registry+https://github.com/rust-lang/crates.io-index" 7401 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 7402 + 7403 + [[package]] 7404 + name = "uuid" 7405 + version = "0.8.2" 7406 + source = "registry+https://github.com/rust-lang/crates.io-index" 7407 + checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 7408 + 7409 + [[package]] 7410 + name = "uuid" 7411 + version = "1.3.3" 7412 + source = "registry+https://github.com/rust-lang/crates.io-index" 7413 + checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" 7414 dependencies = [ 7415 + "getrandom 0.2.9", 7416 + "wasm-bindgen", 7417 ] 7418 + 7419 + [[package]] 7420 + name = "valuable" 7421 + version = "0.1.0" 7422 + source = "registry+https://github.com/rust-lang/crates.io-index" 7423 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 7424 7425 [[package]] 7426 name = "vcpkg" ··· 7429 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 7430 7431 [[package]] 7432 + name = "vergen" 7433 + version = "7.4.3" 7434 source = "registry+https://github.com/rust-lang/crates.io-index" 7435 + checksum = "447f9238a4553957277b3ee09d80babeae0811f1b3baefb093de1c0448437a37" 7436 dependencies = [ 7437 + "anyhow", 7438 + "cfg-if", 7439 + "enum-iterator", 7440 + "getset", 7441 + "git2", 7442 + "rustc_version 0.4.0", 7443 + "rustversion", 7444 + "thiserror", 7445 + "time 0.3.21", 7446 ] 7447 7448 [[package]] 7449 name = "version_check" 7450 + version = "0.9.4" 7451 + source = "registry+https://github.com/rust-lang/crates.io-index" 7452 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 7453 + 7454 + [[package]] 7455 + name = "walkdir" 7456 + version = "2.3.3" 7457 source = "registry+https://github.com/rust-lang/crates.io-index" 7458 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 7459 + dependencies = [ 7460 + "same-file", 7461 + "winapi-util", 7462 + ] 7463 7464 [[package]] 7465 name = "want" ··· 7479 7480 [[package]] 7481 name = "wasi" 7482 + version = "0.10.0+wasi-snapshot-preview1" 7483 + source = "registry+https://github.com/rust-lang/crates.io-index" 7484 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 7485 + 7486 + [[package]] 7487 + name = "wasi" 7488 + version = "0.11.0+wasi-snapshot-preview1" 7489 source = "registry+https://github.com/rust-lang/crates.io-index" 7490 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 7491 7492 [[package]] 7493 name = "wasm-bindgen" 7494 + version = "0.2.83" 7495 source = "registry+https://github.com/rust-lang/crates.io-index" 7496 + checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 7497 dependencies = [ 7498 + "cfg-if", 7499 "wasm-bindgen-macro", 7500 ] 7501 7502 [[package]] 7503 name = "wasm-bindgen-backend" 7504 + version = "0.2.83" 7505 source = "registry+https://github.com/rust-lang/crates.io-index" 7506 + checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 7507 dependencies = [ 7508 "bumpalo", 7509 "log", 7510 + "once_cell", 7511 "proc-macro2", 7512 "quote", 7513 + "syn 1.0.109", 7514 "wasm-bindgen-shared", 7515 ] 7516 7517 [[package]] 7518 name = "wasm-bindgen-futures" 7519 + version = "0.4.33" 7520 source = "registry+https://github.com/rust-lang/crates.io-index" 7521 + checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 7522 dependencies = [ 7523 + "cfg-if", 7524 "js-sys", 7525 "wasm-bindgen", 7526 "web-sys", ··· 7528 7529 [[package]] 7530 name = "wasm-bindgen-macro" 7531 + version = "0.2.83" 7532 source = "registry+https://github.com/rust-lang/crates.io-index" 7533 + checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 7534 dependencies = [ 7535 "quote", 7536 "wasm-bindgen-macro-support", ··· 7538 7539 [[package]] 7540 name = "wasm-bindgen-macro-support" 7541 + version = "0.2.83" 7542 source = "registry+https://github.com/rust-lang/crates.io-index" 7543 + checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 7544 dependencies = [ 7545 "proc-macro2", 7546 "quote", 7547 + "syn 1.0.109", 7548 "wasm-bindgen-backend", 7549 "wasm-bindgen-shared", 7550 ] 7551 7552 [[package]] 7553 name = "wasm-bindgen-shared" 7554 + version = "0.2.83" 7555 source = "registry+https://github.com/rust-lang/crates.io-index" 7556 + checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 7557 7558 [[package]] 7559 name = "wasm-timer" 7560 version = "0.2.5" 7561 + source = "git+https://github.com/mmsinclair/wasm-timer?rev=b9d1a54ad514c2f230a026afe0dde341e98cd7b6#b9d1a54ad514c2f230a026afe0dde341e98cd7b6" 7562 dependencies = [ 7563 "futures", 7564 "js-sys", 7565 + "parking_lot 0.11.2", 7566 "pin-utils", 7567 "wasm-bindgen", 7568 "wasm-bindgen-futures", ··· 7574 version = "0.1.0" 7575 dependencies = [ 7576 "futures", 7577 + "getrandom 0.2.9", 7578 + "indexed_db_futures", 7579 "js-sys", 7580 + "nym-store-cipher", 7581 + "serde", 7582 + "serde-wasm-bindgen", 7583 + "thiserror", 7584 + "tungstenite 0.13.0", 7585 "wasm-bindgen", 7586 "wasm-bindgen-futures", 7587 "web-sys", ··· 7589 7590 [[package]] 7591 name = "web-sys" 7592 + version = "0.3.60" 7593 source = "registry+https://github.com/rust-lang/crates.io-index" 7594 + checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 7595 dependencies = [ 7596 "js-sys", 7597 "wasm-bindgen", 7598 ] 7599 7600 [[package]] 7601 + name = "webpki" 7602 + version = "0.21.4" 7603 + source = "registry+https://github.com/rust-lang/crates.io-index" 7604 + checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" 7605 + dependencies = [ 7606 + "ring", 7607 + "untrusted", 7608 + ] 7609 + 7610 + [[package]] 7611 + name = "webpki" 7612 + version = "0.22.0" 7613 + source = "registry+https://github.com/rust-lang/crates.io-index" 7614 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 7615 + dependencies = [ 7616 + "ring", 7617 + "untrusted", 7618 + ] 7619 + 7620 + [[package]] 7621 + name = "webpki-roots" 7622 + version = "0.21.1" 7623 + source = "registry+https://github.com/rust-lang/crates.io-index" 7624 + checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940" 7625 dependencies = [ 7626 + "webpki 0.21.4", 7627 ] 7628 7629 [[package]] 7630 + name = "webpki-roots" 7631 + version = "0.22.6" 7632 source = "registry+https://github.com/rust-lang/crates.io-index" 7633 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 7634 dependencies = [ 7635 + "webpki 0.22.0", 7636 ] 7637 7638 [[package]] ··· 7667 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 7668 7669 [[package]] 7670 + name = "windows" 7671 + version = "0.48.0" 7672 + source = "registry+https://github.com/rust-lang/crates.io-index" 7673 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 7674 + dependencies = [ 7675 + "windows-targets 0.48.0", 7676 + ] 7677 + 7678 + [[package]] 7679 + name = "windows-sys" 7680 + version = "0.42.0" 7681 + source = "registry+https://github.com/rust-lang/crates.io-index" 7682 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 7683 + dependencies = [ 7684 + "windows_aarch64_gnullvm 0.42.2", 7685 + "windows_aarch64_msvc 0.42.2", 7686 + "windows_i686_gnu 0.42.2", 7687 + "windows_i686_msvc 0.42.2", 7688 + "windows_x86_64_gnu 0.42.2", 7689 + "windows_x86_64_gnullvm 0.42.2", 7690 + "windows_x86_64_msvc 0.42.2", 7691 + ] 7692 + 7693 + [[package]] 7694 + name = "windows-sys" 7695 + version = "0.45.0" 7696 + source = "registry+https://github.com/rust-lang/crates.io-index" 7697 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 7698 + dependencies = [ 7699 + "windows-targets 0.42.2", 7700 + ] 7701 + 7702 + [[package]] 7703 + name = "windows-sys" 7704 + version = "0.48.0" 7705 + source = "registry+https://github.com/rust-lang/crates.io-index" 7706 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 7707 + dependencies = [ 7708 + "windows-targets 0.48.0", 7709 + ] 7710 + 7711 + [[package]] 7712 + name = "windows-targets" 7713 + version = "0.42.2" 7714 + source = "registry+https://github.com/rust-lang/crates.io-index" 7715 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 7716 + dependencies = [ 7717 + "windows_aarch64_gnullvm 0.42.2", 7718 + "windows_aarch64_msvc 0.42.2", 7719 + "windows_i686_gnu 0.42.2", 7720 + "windows_i686_msvc 0.42.2", 7721 + "windows_x86_64_gnu 0.42.2", 7722 + "windows_x86_64_gnullvm 0.42.2", 7723 + "windows_x86_64_msvc 0.42.2", 7724 + ] 7725 + 7726 + [[package]] 7727 + name = "windows-targets" 7728 + version = "0.48.0" 7729 + source = "registry+https://github.com/rust-lang/crates.io-index" 7730 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 7731 + dependencies = [ 7732 + "windows_aarch64_gnullvm 0.48.0", 7733 + "windows_aarch64_msvc 0.48.0", 7734 + "windows_i686_gnu 0.48.0", 7735 + "windows_i686_msvc 0.48.0", 7736 + "windows_x86_64_gnu 0.48.0", 7737 + "windows_x86_64_gnullvm 0.48.0", 7738 + "windows_x86_64_msvc 0.48.0", 7739 + ] 7740 + 7741 + [[package]] 7742 + name = "windows_aarch64_gnullvm" 7743 + version = "0.42.2" 7744 + source = "registry+https://github.com/rust-lang/crates.io-index" 7745 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 7746 + 7747 + [[package]] 7748 + name = "windows_aarch64_gnullvm" 7749 + version = "0.48.0" 7750 + source = "registry+https://github.com/rust-lang/crates.io-index" 7751 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 7752 + 7753 + [[package]] 7754 + name = "windows_aarch64_msvc" 7755 + version = "0.42.2" 7756 + source = "registry+https://github.com/rust-lang/crates.io-index" 7757 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 7758 + 7759 + [[package]] 7760 + name = "windows_aarch64_msvc" 7761 + version = "0.48.0" 7762 + source = "registry+https://github.com/rust-lang/crates.io-index" 7763 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 7764 + 7765 + [[package]] 7766 + name = "windows_i686_gnu" 7767 + version = "0.42.2" 7768 + source = "registry+https://github.com/rust-lang/crates.io-index" 7769 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 7770 + 7771 + [[package]] 7772 + name = "windows_i686_gnu" 7773 + version = "0.48.0" 7774 + source = "registry+https://github.com/rust-lang/crates.io-index" 7775 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 7776 + 7777 + [[package]] 7778 + name = "windows_i686_msvc" 7779 + version = "0.42.2" 7780 + source = "registry+https://github.com/rust-lang/crates.io-index" 7781 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 7782 + 7783 + [[package]] 7784 + name = "windows_i686_msvc" 7785 + version = "0.48.0" 7786 + source = "registry+https://github.com/rust-lang/crates.io-index" 7787 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 7788 + 7789 + [[package]] 7790 + name = "windows_x86_64_gnu" 7791 + version = "0.42.2" 7792 + source = "registry+https://github.com/rust-lang/crates.io-index" 7793 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 7794 + 7795 + [[package]] 7796 + name = "windows_x86_64_gnu" 7797 + version = "0.48.0" 7798 + source = "registry+https://github.com/rust-lang/crates.io-index" 7799 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 7800 + 7801 + [[package]] 7802 + name = "windows_x86_64_gnullvm" 7803 + version = "0.42.2" 7804 + source = "registry+https://github.com/rust-lang/crates.io-index" 7805 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 7806 + 7807 + [[package]] 7808 + name = "windows_x86_64_gnullvm" 7809 + version = "0.48.0" 7810 + source = "registry+https://github.com/rust-lang/crates.io-index" 7811 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 7812 + 7813 + [[package]] 7814 + name = "windows_x86_64_msvc" 7815 + version = "0.42.2" 7816 + source = "registry+https://github.com/rust-lang/crates.io-index" 7817 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 7818 + 7819 + [[package]] 7820 + name = "windows_x86_64_msvc" 7821 + version = "0.48.0" 7822 + source = "registry+https://github.com/rust-lang/crates.io-index" 7823 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 7824 + 7825 + [[package]] 7826 name = "winreg" 7827 + version = "0.10.1" 7828 source = "registry+https://github.com/rust-lang/crates.io-index" 7829 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 7830 dependencies = [ 7831 "winapi", 7832 ] 7833 7834 [[package]] 7835 + name = "with_builtin_macros" 7836 + version = "0.0.3" 7837 + source = "registry+https://github.com/rust-lang/crates.io-index" 7838 + checksum = "a59d55032495429b87f9d69954c6c8602e4d3f3e0a747a12dea6b0b23de685da" 7839 + dependencies = [ 7840 + "with_builtin_macros-proc_macros", 7841 + ] 7842 + 7843 + [[package]] 7844 + name = "with_builtin_macros-proc_macros" 7845 + version = "0.0.3" 7846 + source = "registry+https://github.com/rust-lang/crates.io-index" 7847 + checksum = "15bd7679c15e22924f53aee34d4e448c45b674feb6129689af88593e129f8f42" 7848 + dependencies = [ 7849 + "proc-macro2", 7850 + "quote", 7851 + "syn 1.0.109", 7852 + ] 7853 + 7854 + [[package]] 7855 name = "wyz" 7856 + version = "0.5.1" 7857 source = "registry+https://github.com/rust-lang/crates.io-index" 7858 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 7859 + dependencies = [ 7860 + "tap", 7861 + ] 7862 7863 [[package]] 7864 name = "x25519-dalek" ··· 7868 dependencies = [ 7869 "curve25519-dalek", 7870 "rand_core 0.5.1", 7871 + "serde", 7872 "zeroize", 7873 ] 7874 7875 [[package]] 7876 name = "yansi" 7877 + version = "0.5.1" 7878 source = "registry+https://github.com/rust-lang/crates.io-index" 7879 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 7880 7881 [[package]] 7882 name = "zeroize" 7883 + version = "1.6.0" 7884 source = "registry+https://github.com/rust-lang/crates.io-index" 7885 + checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 7886 dependencies = [ 7887 "zeroize_derive", 7888 ] 7889 7890 [[package]] 7891 name = "zeroize_derive" 7892 + version = "1.4.2" 7893 source = "registry+https://github.com/rust-lang/crates.io-index" 7894 + checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 7895 dependencies = [ 7896 "proc-macro2", 7897 "quote", 7898 + "syn 2.0.16", 7899 ]
+42 -13
pkgs/applications/networking/nym/default.nix
··· 5 , pkg-config 6 , openssl 7 , Security 8 - , libiconv 9 }: 10 11 - rustPlatform.buildRustPackage rec { 12 pname = "nym"; 13 - version = "0.11.0"; 14 15 src = fetchFromGitHub { 16 owner = "nymtech"; 17 repo = "nym"; 18 - rev = "v${version}"; 19 - sha256 = "sha256-bZXbteryXkOxft63zUMWdpBgbDSvrBHQY3f70/+mBtI="; 20 }; 21 22 cargoLock = { 23 lockFile = ./Cargo.lock; 24 outputHashes = { 25 - "sphinx-0.1.0" = "sha256-/NW6jHZIi2Pe/m6o86FR0pLsSuRVuLYNTTPU7JEf/Us="; 26 }; 27 }; 28 29 nativeBuildInputs = [ pkg-config ]; 30 31 - buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security libiconv ]; 32 33 checkType = "debug"; 34 35 - passthru.updateScript = ./update.sh; 36 37 checkFlags = [ 38 - "--skip commands::upgrade::upgrade_tests" 39 - "--skip allowed_hosts::tests::creating_a_new_host_store" 40 - "--skip allowed_hosts::tests::getting_the_domain_root" 41 - "--skip allowed_hosts::tests::requests_to_allowed_hosts" 42 - "--skip allowed_hosts::tests::requests_to_unknown_hosts" 43 ]; 44 45 meta = with lib; { 46 description = "A mixnet providing IP-level privacy";
··· 5 , pkg-config 6 , openssl 7 , Security 8 + , CoreServices 9 + , nix-update-script 10 + , rustc 11 }: 12 13 + let 14 + version = "1.1.21"; 15 + hash = "sha256-VM0Pc5qyrsn9wV3mfvrAlCfm/rIf3cednZzFtJCT+no="; 16 + in 17 + rustPlatform.buildRustPackage { 18 pname = "nym"; 19 + inherit version; 20 21 src = fetchFromGitHub { 22 owner = "nymtech"; 23 repo = "nym"; 24 + rev = "nym-binaries-v${version}"; 25 + inherit hash; 26 }; 27 28 cargoLock = { 29 lockFile = ./Cargo.lock; 30 outputHashes = { 31 + "bls12_381-0.6.0" = "sha256-sIZy+CTASP+uiY10nP/N4WfCLjeqkjiNl/FzO0p5WdI="; 32 + "cosmos-sdk-proto-0.12.3" = "sha256-ekQ9JA6WaTkvHkBKJbYPzfmx6I7LZnhIPiHsZFAP90w="; 33 + "rocket_cors-0.5.2" = "sha256-hfk5gKtc94g+VZmm+S6HKvg+E71QVKQTK2E3K2MCvz0="; 34 + "wasm-timer-0.2.5" = "sha256-od+r3ttFpFhcIh8rPQJQARaQLsbLeEZpCY1h9c4gow8="; 35 }; 36 }; 37 38 + postPatch = '' 39 + substituteInPlace contracts/vesting/build.rs \ 40 + --replace 'vergen(config).expect("failed to extract build metadata")' '()' 41 + 42 + substituteInPlace common/bin-common/build.rs \ 43 + --replace 'vergen(config).expect("failed to extract build metadata")' '()' 44 + ''; 45 + 46 nativeBuildInputs = [ pkg-config ]; 47 48 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security CoreServices ]; 49 50 checkType = "debug"; 51 52 + passthru.updateScript = nix-update-script { }; 53 54 checkFlags = [ 55 + "--skip=commands::upgrade::upgrade_tests" 56 + "--skip=allowed_hosts::filter::tests::creating_a_new_host_store" 57 + "--skip=allowed_hosts::filter::tests::getting_the_domain_root" 58 + "--skip=allowed_hosts::filter::tests::requests_to_allowed_hosts" 59 + "--skip=allowed_hosts::filter::tests::requests_to_unknown_hosts" 60 + "--skip=ping::http::tests::resolve_host_with_valid_hostname_returns_some" 61 ]; 62 + 63 + env = { 64 + VERGEN_BUILD_TIMESTAMP = "0"; 65 + VERGEN_BUILD_SEMVER = version; 66 + VERGEN_GIT_SHA = hash; 67 + VERGEN_GIT_COMMIT_TIMESTAMP = "0"; 68 + VERGEN_GIT_BRANCH = "master"; 69 + VERGEN_RUSTC_SEMVER = rustc.version; 70 + VERGEN_RUSTC_CHANNEL = "stable"; 71 + VERGEN_CARGO_PROFILE = "release"; 72 + }; 73 74 meta = with lib; { 75 description = "A mixnet providing IP-level privacy";
-37
pkgs/applications/networking/nym/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p curl jq nix-prefetch 3 - 4 - # adapted from rust-analyzer 5 - 6 - set -euo pipefail 7 - cd "$(dirname "$0")" 8 - nixpkgs=../../../.. 9 - 10 - owner=$(sed -nE 's/.*\bowner = "(.*)".*/\1/p' ./default.nix) 11 - repo=$(sed -nE 's/.*\brepo = "(.*)".*/\1/p' ./default.nix) 12 - rev=$( 13 - curl -s "https://api.github.com/repos/$owner/$repo/releases" | 14 - jq 'map(select(.prerelease | not)) | .[0].tag_name' --raw-output 15 - ) 16 - version=${rev:1} 17 - old_version=$(sed -nE 's/.*\bversion = "(.*)".*/\1/p' ./default.nix) 18 - if grep -q 'cargoSha256 = ""' ./default.nix; then 19 - old_version='broken' 20 - fi 21 - if [[ "$version" == "$old_version" ]]; then 22 - echo "Up to date: $version" 23 - exit 24 - fi 25 - echo "$old_version -> $version" 26 - 27 - sha256=$(nix-prefetch -f "$nixpkgs" nym.src --rev "$rev") 28 - # Clear cargoSha256 to avoid inconsistency. 29 - sed -e "s/version = \".*\"/version = \"$version\"/" \ 30 - -e "s/sha256 = \".*\"/sha256 = \"$sha256\"/" \ 31 - -e "s/cargoSha256 = \".*\"/cargoSha256 = \"\"/" \ 32 - --in-place ./default.nix 33 - 34 - echo "Prebuilding for cargoSha256" 35 - cargo_sha256=$(nix-prefetch "{ sha256 }: (import $nixpkgs {}).nym.cargoDeps.overrideAttrs (_: { outputHash = sha256; })") 36 - sed "s/cargoSha256 = \".*\"/cargoSha256 = \"$cargo_sha256\"/" \ 37 - --in-place ./default.nix
···
+1 -1
pkgs/top-level/all-packages.nix
··· 10782 nylon = callPackage ../tools/networking/nylon { }; 10783 10784 nym = callPackage ../applications/networking/nym { 10785 - inherit (darwin.apple_sdk.frameworks) Security; 10786 }; 10787 10788 nzbget = callPackage ../tools/networking/nzbget { };
··· 10782 nylon = callPackage ../tools/networking/nylon { }; 10783 10784 nym = callPackage ../applications/networking/nym { 10785 + inherit (darwin.apple_sdk.frameworks) Security CoreServices; 10786 }; 10787 10788 nzbget = callPackage ../tools/networking/nzbget { };