diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 97 |
1 files changed, 97 insertions, 0 deletions
| @@ -748,6 +748,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 748 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" | 748 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" |
| 749 | 749 | ||
| 750 | [[package]] | 750 | [[package]] |
| 751 | name = "futures-timer" | ||
| 752 | version = "3.0.3" | ||
| 753 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 754 | checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" | ||
| 755 | |||
| 756 | [[package]] | ||
| 751 | name = "futures-util" | 757 | name = "futures-util" |
| 752 | version = "0.3.31" | 758 | version = "0.3.31" |
| 753 | source = "registry+https://github.com/rust-lang/crates.io-index" | 759 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -816,6 +822,12 @@ dependencies = [ | |||
| 816 | ] | 822 | ] |
| 817 | 823 | ||
| 818 | [[package]] | 824 | [[package]] |
| 825 | name = "glob" | ||
| 826 | version = "0.3.3" | ||
| 827 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 828 | checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" | ||
| 829 | |||
| 830 | [[package]] | ||
| 819 | name = "gloo-timers" | 831 | name = "gloo-timers" |
| 820 | version = "0.3.0" | 832 | version = "0.3.0" |
| 821 | source = "registry+https://github.com/rust-lang/crates.io-index" | 833 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1455,6 +1467,7 @@ dependencies = [ | |||
| 1455 | "passwords", | 1467 | "passwords", |
| 1456 | "qrcode", | 1468 | "qrcode", |
| 1457 | "reqwest", | 1469 | "reqwest", |
| 1470 | "rstest", | ||
| 1458 | "scrypt", | 1471 | "scrypt", |
| 1459 | "serde", | 1472 | "serde", |
| 1460 | "serde_json", | 1473 | "serde_json", |
| @@ -1860,6 +1873,15 @@ dependencies = [ | |||
| 1860 | ] | 1873 | ] |
| 1861 | 1874 | ||
| 1862 | [[package]] | 1875 | [[package]] |
| 1876 | name = "proc-macro-crate" | ||
| 1877 | version = "3.4.0" | ||
| 1878 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1879 | checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" | ||
| 1880 | dependencies = [ | ||
| 1881 | "toml_edit", | ||
| 1882 | ] | ||
| 1883 | |||
| 1884 | [[package]] | ||
| 1863 | name = "proc-macro-hack" | 1885 | name = "proc-macro-hack" |
| 1864 | version = "0.5.20+deprecated" | 1886 | version = "0.5.20+deprecated" |
| 1865 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1887 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2035,6 +2057,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 2035 | checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" | 2057 | checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" |
| 2036 | 2058 | ||
| 2037 | [[package]] | 2059 | [[package]] |
| 2060 | name = "relative-path" | ||
| 2061 | version = "1.9.3" | ||
| 2062 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2063 | checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" | ||
| 2064 | |||
| 2065 | [[package]] | ||
| 2038 | name = "reqwest" | 2066 | name = "reqwest" |
| 2039 | version = "0.12.24" | 2067 | version = "0.12.24" |
| 2040 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2068 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2101,6 +2129,36 @@ dependencies = [ | |||
| 2101 | ] | 2129 | ] |
| 2102 | 2130 | ||
| 2103 | [[package]] | 2131 | [[package]] |
| 2132 | name = "rstest" | ||
| 2133 | version = "0.23.0" | ||
| 2134 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2135 | checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035" | ||
| 2136 | dependencies = [ | ||
| 2137 | "futures", | ||
| 2138 | "futures-timer", | ||
| 2139 | "rstest_macros", | ||
| 2140 | "rustc_version", | ||
| 2141 | ] | ||
| 2142 | |||
| 2143 | [[package]] | ||
| 2144 | name = "rstest_macros" | ||
| 2145 | version = "0.23.0" | ||
| 2146 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2147 | checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a" | ||
| 2148 | dependencies = [ | ||
| 2149 | "cfg-if", | ||
| 2150 | "glob", | ||
| 2151 | "proc-macro-crate", | ||
| 2152 | "proc-macro2", | ||
| 2153 | "quote", | ||
| 2154 | "regex", | ||
| 2155 | "relative-path", | ||
| 2156 | "rustc_version", | ||
| 2157 | "syn", | ||
| 2158 | "unicode-ident", | ||
| 2159 | ] | ||
| 2160 | |||
| 2161 | [[package]] | ||
| 2104 | name = "rustc_version" | 2162 | name = "rustc_version" |
| 2105 | version = "0.4.1" | 2163 | version = "0.4.1" |
| 2106 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2164 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2760,6 +2818,36 @@ dependencies = [ | |||
| 2760 | ] | 2818 | ] |
| 2761 | 2819 | ||
| 2762 | [[package]] | 2820 | [[package]] |
| 2821 | name = "toml_datetime" | ||
| 2822 | version = "0.7.3" | ||
| 2823 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2824 | checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" | ||
| 2825 | dependencies = [ | ||
| 2826 | "serde_core", | ||
| 2827 | ] | ||
| 2828 | |||
| 2829 | [[package]] | ||
| 2830 | name = "toml_edit" | ||
| 2831 | version = "0.23.7" | ||
| 2832 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2833 | checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" | ||
| 2834 | dependencies = [ | ||
| 2835 | "indexmap", | ||
| 2836 | "toml_datetime", | ||
| 2837 | "toml_parser", | ||
| 2838 | "winnow", | ||
| 2839 | ] | ||
| 2840 | |||
| 2841 | [[package]] | ||
| 2842 | name = "toml_parser" | ||
| 2843 | version = "1.0.4" | ||
| 2844 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2845 | checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" | ||
| 2846 | dependencies = [ | ||
| 2847 | "winnow", | ||
| 2848 | ] | ||
| 2849 | |||
| 2850 | [[package]] | ||
| 2763 | name = "tower" | 2851 | name = "tower" |
| 2764 | version = "0.5.2" | 2852 | version = "0.5.2" |
| 2765 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2853 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -3359,6 +3447,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 3359 | checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" | 3447 | checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" |
| 3360 | 3448 | ||
| 3361 | [[package]] | 3449 | [[package]] |
| 3450 | name = "winnow" | ||
| 3451 | version = "0.7.13" | ||
| 3452 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3453 | checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" | ||
| 3454 | dependencies = [ | ||
| 3455 | "memchr", | ||
| 3456 | ] | ||
| 3457 | |||
| 3458 | [[package]] | ||
| 3362 | name = "wit-bindgen" | 3459 | name = "wit-bindgen" |
| 3363 | version = "0.46.0" | 3460 | version = "0.46.0" |
| 3364 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3461 | source = "registry+https://github.com/rust-lang/crates.io-index" |