theopendictionary 1.1.0__tar.gz → 2.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of theopendictionary might be problematic. Click here for more details.
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/Cargo.lock +1613 -955
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/Cargo.toml +5 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/PKG-INFO +2 -2
- theopendictionary-2.0.0/internal/Cargo.toml +16 -0
- theopendictionary-2.0.0/internal/src/enum_wrapper.rs +92 -0
- theopendictionary-2.0.0/internal/src/lib.rs +9 -0
- theopendictionary-2.0.0/internal/src/load.rs +49 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/CHANGELOG.md +116 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/Cargo.toml +46 -22
- theopendictionary-1.1.0/lib/src/config/aliases.rs → theopendictionary-2.0.0/lib/src/alias.rs +65 -8
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/compress.rs +3 -3
- {theopendictionary-1.1.0/lib/src/config → theopendictionary-2.0.0/lib/src}/config.rs +4 -3
- theopendictionary-2.0.0/lib/src/core/compile.rs +98 -0
- {theopendictionary-1.1.0/lib/src/core/io → theopendictionary-2.0.0/lib/src/core}/consts.rs +1 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/core/lexicon.rs +2 -2
- theopendictionary-2.0.0/lib/src/core/lookup.rs +224 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/core/merge.rs +4 -4
- theopendictionary-2.0.0/lib/src/core/mod.rs +14 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/core/preview.rs +2 -2
- theopendictionary-2.0.0/lib/src/core/rank.rs +32 -0
- {theopendictionary-1.1.0/lib/src/core/io → theopendictionary-2.0.0/lib/src/core}/read.rs +29 -59
- theopendictionary-2.0.0/lib/src/core/resolve.rs +14 -0
- theopendictionary-1.1.0/lib/src/core/semver.rs → theopendictionary-2.0.0/lib/src/core/version.rs +54 -13
- theopendictionary-2.0.0/lib/src/core/write.rs +30 -0
- theopendictionary-2.0.0/lib/src/download/download.rs +546 -0
- theopendictionary-2.0.0/lib/src/download/metadata.rs +116 -0
- theopendictionary-2.0.0/lib/src/download/mod.rs +12 -0
- theopendictionary-2.0.0/lib/src/download/options.rs +71 -0
- theopendictionary-2.0.0/lib/src/download/remote.rs +48 -0
- theopendictionary-2.0.0/lib/src/download/utils.rs +77 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/error.rs +27 -3
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/ext.rs +5 -3
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/html/html.rs +6 -2
- theopendictionary-2.0.0/lib/src/format/json/definition.rs +39 -0
- theopendictionary-2.0.0/lib/src/format/json/dictionary.rs +36 -0
- theopendictionary-2.0.0/lib/src/format/json/entry.rs +36 -0
- theopendictionary-2.0.0/lib/src/format/json/entry_ref.rs +13 -0
- theopendictionary-2.0.0/lib/src/format/json/etymology.rs +40 -0
- theopendictionary-2.0.0/lib/src/format/json/example.rs +13 -0
- theopendictionary-2.0.0/lib/src/format/json/form.rs +17 -0
- theopendictionary-2.0.0/lib/src/format/json/group.rs +18 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/json/json.rs +15 -12
- theopendictionary-2.0.0/lib/src/format/json/media_url.rs +15 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/json/mod.rs +11 -2
- theopendictionary-2.0.0/lib/src/format/json/note.rs +17 -0
- theopendictionary-2.0.0/lib/src/format/json/pronunciation.rs +16 -0
- theopendictionary-2.0.0/lib/src/format/json/sense.rs +46 -0
- theopendictionary-2.0.0/lib/src/format/json/token.rs +75 -0
- theopendictionary-2.0.0/lib/src/format/json/translation.rs +11 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/definition.rs +7 -4
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/entry.rs +1 -1
- theopendictionary-2.0.0/lib/src/format/md/etymology.rs +29 -0
- theopendictionary-2.0.0/lib/src/format/md/example.rs +40 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/group.rs +1 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/md.rs +3 -3
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/mod.rs +1 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/note.rs +7 -4
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/pprint.rs +1 -1
- theopendictionary-2.0.0/lib/src/format/md/pronunciation.rs +44 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/sense.rs +2 -2
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/md/utils.rs +2 -4
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/mod.rs +0 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/definitions.rs +1 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/dictionaries.rs +2 -2
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/entries.rs +1 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/etymologies.rs +10 -3
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/examples.rs +7 -3
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/groups.rs +1 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/mod.rs +1 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/notes.rs +1 -1
- theopendictionary-2.0.0/lib/src/format/sql/pronunciations.rs +133 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/senses.rs +2 -2
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/sql.rs +3 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/sql/utils.rs +6 -6
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/xml.rs +2 -2
- theopendictionary-2.0.0/lib/src/fs.rs +35 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/lib.rs +15 -2
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/md.rs +6 -9
- theopendictionary-2.0.0/lib/src/odict.rs +48 -0
- {theopendictionary-1.1.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/definition.rs +4 -0
- {theopendictionary-1.1.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/dictionary.rs +27 -28
- theopendictionary-2.0.0/lib/src/schema/entry.rs +85 -0
- theopendictionary-2.0.0/lib/src/schema/entry_ref.rs +58 -0
- theopendictionary-2.0.0/lib/src/schema/enums.rs +33 -0
- theopendictionary-2.0.0/lib/src/schema/etymology.rs +56 -0
- theopendictionary-2.0.0/lib/src/schema/example.rs +19 -0
- theopendictionary-2.0.0/lib/src/schema/form.rs +23 -0
- theopendictionary-2.0.0/lib/src/schema/form_kind.rs +15 -0
- {theopendictionary-1.1.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/group.rs +5 -0
- {theopendictionary-1.1.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/id.rs +13 -3
- theopendictionary-2.0.0/lib/src/schema/media_url.rs +55 -0
- {theopendictionary-1.1.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/mod.rs +16 -0
- {theopendictionary-1.1.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/note.rs +8 -3
- theopendictionary-2.0.0/lib/src/schema/pos.rs +259 -0
- theopendictionary-2.0.0/lib/src/schema/pronunciation.rs +19 -0
- theopendictionary-2.0.0/lib/src/schema/pronunciation_kind.rs +19 -0
- theopendictionary-2.0.0/lib/src/schema/sense.rs +74 -0
- {theopendictionary-1.1.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/serializable.rs +28 -1
- theopendictionary-2.0.0/lib/src/schema/translation.rs +13 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/search/charabia.rs +5 -27
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/search/constants.rs +1 -1
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/search/index.rs +5 -5
- theopendictionary-2.0.0/lib/src/search/mod.rs +7 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/search/search.rs +12 -5
- {theopendictionary-1.1.0/lib/src/core/lookup → theopendictionary-2.0.0/lib/src}/tokenize.rs +41 -29
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/pyproject.toml +4 -1
- theopendictionary-2.0.0/python/CHANGELOG.md +107 -0
- theopendictionary-2.0.0/python/Cargo.toml +21 -0
- theopendictionary-2.0.0/python/src/dictionary.rs +227 -0
- theopendictionary-2.0.0/python/src/lib.rs +37 -0
- theopendictionary-2.0.0/python/src/types/definition.rs +18 -0
- theopendictionary-2.0.0/python/src/types/entry.rs +40 -0
- theopendictionary-2.0.0/python/src/types/enums.rs +34 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/python/src/types/etymology.rs +12 -16
- theopendictionary-2.0.0/python/src/types/example.rs +30 -0
- theopendictionary-2.0.0/python/src/types/form.rs +27 -0
- theopendictionary-2.0.0/python/src/types/group.rs +16 -0
- theopendictionary-2.0.0/python/src/types/index.rs +61 -0
- theopendictionary-2.0.0/python/src/types/load.rs +52 -0
- theopendictionary-2.0.0/python/src/types/lookup.rs +136 -0
- theopendictionary-2.0.0/python/src/types/media_url.rs +46 -0
- theopendictionary-2.0.0/python/src/types/mod.rs +33 -0
- theopendictionary-2.0.0/python/src/types/note.rs +16 -0
- theopendictionary-2.0.0/python/src/types/pronunciation.rs +29 -0
- theopendictionary-2.0.0/python/src/types/save.rs +61 -0
- theopendictionary-2.0.0/python/src/types/search.rs +76 -0
- theopendictionary-2.0.0/python/src/types/sense.rs +45 -0
- theopendictionary-2.0.0/python/src/types/token.rs +82 -0
- theopendictionary-2.0.0/python/src/types/tokenize.rs +53 -0
- theopendictionary-2.0.0/python/src/types/translation.rs +21 -0
- theopendictionary-2.0.0/python/tasks.toml +24 -0
- theopendictionary-2.0.0/python/tests/__snapshots__/test_lookup.ambr +26 -0
- theopendictionary-2.0.0/python/tests/__snapshots__/test_tokenize.ambr +11 -0
- theopendictionary-2.0.0/python/tests/test_forms.py +75 -0
- theopendictionary-2.0.0/python/tests/test_lemma.py +86 -0
- theopendictionary-2.0.0/python/tests/test_load_options.py +223 -0
- theopendictionary-2.0.0/python/tests/test_lookup.py +162 -0
- theopendictionary-2.0.0/python/tests/test_options.py +282 -0
- theopendictionary-2.0.0/python/tests/test_pronunciation.py +206 -0
- theopendictionary-2.0.0/python/tests/test_rank.py +140 -0
- theopendictionary-2.0.0/python/tests/test_save_options.py +284 -0
- theopendictionary-2.0.0/python/tests/test_tokenize.py +255 -0
- theopendictionary-1.1.0/lib/src/config/mod.rs +0 -24
- theopendictionary-1.1.0/lib/src/core/io/mod.rs +0 -6
- theopendictionary-1.1.0/lib/src/core/io/write.rs +0 -172
- theopendictionary-1.1.0/lib/src/core/lookup/mod.rs +0 -120
- theopendictionary-1.1.0/lib/src/core/lookup/options.rs +0 -36
- theopendictionary-1.1.0/lib/src/core/mod.rs +0 -16
- theopendictionary-1.1.0/lib/src/format/json/definition.rs +0 -37
- theopendictionary-1.1.0/lib/src/format/json/dictionary.rs +0 -36
- theopendictionary-1.1.0/lib/src/format/json/entry.rs +0 -41
- theopendictionary-1.1.0/lib/src/format/json/etymology.rs +0 -46
- theopendictionary-1.1.0/lib/src/format/json/group.rs +0 -35
- theopendictionary-1.1.0/lib/src/format/json/note.rs +0 -30
- theopendictionary-1.1.0/lib/src/format/json/sense.rs +0 -48
- theopendictionary-1.1.0/lib/src/format/json/token.rs +0 -50
- theopendictionary-1.1.0/lib/src/format/json/utils.rs +0 -14
- theopendictionary-1.1.0/lib/src/format/md/etymology.rs +0 -19
- theopendictionary-1.1.0/lib/src/format/md/example.rs +0 -20
- theopendictionary-1.1.0/lib/src/fs.rs +0 -11
- theopendictionary-1.1.0/lib/src/models/entry.rs +0 -41
- theopendictionary-1.1.0/lib/src/models/etymology.rs +0 -58
- theopendictionary-1.1.0/lib/src/models/example.rs +0 -8
- theopendictionary-1.1.0/lib/src/models/pos.rs +0 -290
- theopendictionary-1.1.0/lib/src/models/sense.rs +0 -23
- theopendictionary-1.1.0/lib/src/search/mod.rs +0 -9
- theopendictionary-1.1.0/python/.gitignore +0 -72
- theopendictionary-1.1.0/python/CHANGELOG.md +0 -25
- theopendictionary-1.1.0/python/Cargo.toml +0 -20
- theopendictionary-1.1.0/python/requirements.txt +0 -5
- theopendictionary-1.1.0/python/setup.cfg +0 -2
- theopendictionary-1.1.0/python/src/dictionary.rs +0 -247
- theopendictionary-1.1.0/python/src/lib.rs +0 -12
- theopendictionary-1.1.0/python/src/types/definition.rs +0 -34
- theopendictionary-1.1.0/python/src/types/entry.rs +0 -52
- theopendictionary-1.1.0/python/src/types/example.rs +0 -18
- theopendictionary-1.1.0/python/src/types/group.rs +0 -33
- theopendictionary-1.1.0/python/src/types/lookup.rs +0 -41
- theopendictionary-1.1.0/python/src/types/mod.rs +0 -14
- theopendictionary-1.1.0/python/src/types/note.rs +0 -30
- theopendictionary-1.1.0/python/src/types/sense.rs +0 -30
- theopendictionary-1.1.0/python/src/types/token.rs +0 -42
- theopendictionary-1.1.0/python/tasks.toml +0 -32
- theopendictionary-1.1.0/python/tests/__snapshots__/test_lookup.ambr +0 -26
- theopendictionary-1.1.0/python/tests/__snapshots__/test_tokenize.ambr +0 -11
- theopendictionary-1.1.0/python/tests/test_lookup.py +0 -100
- theopendictionary-1.1.0/python/tests/test_tokenize.py +0 -30
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/report.json +0 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/format/html/mod.rs +0 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/src/search/schema.rs +0 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/lib/tasks.toml +0 -0
- {theopendictionary-1.1.0 → theopendictionary-2.0.0}/python/src/utils.rs +0 -0
|
@@ -8,7 +8,7 @@ version = "0.5.2"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"bitflags 2.9.
|
|
11
|
+
"bitflags 2.9.4",
|
|
12
12
|
"bytes",
|
|
13
13
|
"futures-core",
|
|
14
14
|
"futures-sink",
|
|
@@ -21,26 +21,26 @@ dependencies = [
|
|
|
21
21
|
|
|
22
22
|
[[package]]
|
|
23
23
|
name = "actix-http"
|
|
24
|
-
version = "3.
|
|
24
|
+
version = "3.11.1"
|
|
25
25
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
26
|
+
checksum = "44cceded2fb55f3c4b67068fa64962e2ca59614edc5b03167de9ff82ae803da0"
|
|
27
27
|
dependencies = [
|
|
28
28
|
"actix-codec",
|
|
29
29
|
"actix-rt",
|
|
30
30
|
"actix-service",
|
|
31
31
|
"actix-utils",
|
|
32
32
|
"base64",
|
|
33
|
-
"bitflags 2.9.
|
|
33
|
+
"bitflags 2.9.4",
|
|
34
34
|
"brotli",
|
|
35
35
|
"bytes",
|
|
36
36
|
"bytestring",
|
|
37
37
|
"derive_more",
|
|
38
38
|
"encoding_rs",
|
|
39
39
|
"flate2",
|
|
40
|
-
"foldhash",
|
|
40
|
+
"foldhash 0.1.5",
|
|
41
41
|
"futures-core",
|
|
42
|
-
"h2",
|
|
43
|
-
"http",
|
|
42
|
+
"h2 0.3.27",
|
|
43
|
+
"http 0.2.12",
|
|
44
44
|
"httparse",
|
|
45
45
|
"httpdate",
|
|
46
46
|
"itoa",
|
|
@@ -49,7 +49,7 @@ dependencies = [
|
|
|
49
49
|
"mime",
|
|
50
50
|
"percent-encoding",
|
|
51
51
|
"pin-project-lite",
|
|
52
|
-
"rand 0.9.
|
|
52
|
+
"rand 0.9.2",
|
|
53
53
|
"sha1",
|
|
54
54
|
"smallvec",
|
|
55
55
|
"tokio",
|
|
@@ -65,7 +65,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
65
65
|
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
|
66
66
|
dependencies = [
|
|
67
67
|
"quote",
|
|
68
|
-
"syn 2.0.
|
|
68
|
+
"syn 2.0.106",
|
|
69
69
|
]
|
|
70
70
|
|
|
71
71
|
[[package]]
|
|
@@ -76,7 +76,7 @@ checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
|
|
|
76
76
|
dependencies = [
|
|
77
77
|
"bytestring",
|
|
78
78
|
"cfg-if",
|
|
79
|
-
"http",
|
|
79
|
+
"http 0.2.12",
|
|
80
80
|
"regex",
|
|
81
81
|
"regex-lite",
|
|
82
82
|
"serde",
|
|
@@ -85,9 +85,9 @@ dependencies = [
|
|
|
85
85
|
|
|
86
86
|
[[package]]
|
|
87
87
|
name = "actix-rt"
|
|
88
|
-
version = "2.
|
|
88
|
+
version = "2.11.0"
|
|
89
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
90
|
+
checksum = "92589714878ca59a7626ea19734f0e07a6a875197eec751bb5d3f99e64998c63"
|
|
91
91
|
dependencies = [
|
|
92
92
|
"futures-core",
|
|
93
93
|
"tokio",
|
|
@@ -95,9 +95,9 @@ dependencies = [
|
|
|
95
95
|
|
|
96
96
|
[[package]]
|
|
97
97
|
name = "actix-server"
|
|
98
|
-
version = "2.
|
|
98
|
+
version = "2.6.0"
|
|
99
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "
|
|
100
|
+
checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502"
|
|
101
101
|
dependencies = [
|
|
102
102
|
"actix-rt",
|
|
103
103
|
"actix-service",
|
|
@@ -105,7 +105,7 @@ dependencies = [
|
|
|
105
105
|
"futures-core",
|
|
106
106
|
"futures-util",
|
|
107
107
|
"mio",
|
|
108
|
-
"socket2",
|
|
108
|
+
"socket2 0.5.10",
|
|
109
109
|
"tokio",
|
|
110
110
|
"tracing",
|
|
111
111
|
]
|
|
@@ -132,9 +132,9 @@ dependencies = [
|
|
|
132
132
|
|
|
133
133
|
[[package]]
|
|
134
134
|
name = "actix-web"
|
|
135
|
-
version = "4.
|
|
135
|
+
version = "4.11.0"
|
|
136
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
-
checksum = "
|
|
137
|
+
checksum = "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea"
|
|
138
138
|
dependencies = [
|
|
139
139
|
"actix-codec",
|
|
140
140
|
"actix-http",
|
|
@@ -151,7 +151,7 @@ dependencies = [
|
|
|
151
151
|
"cookie",
|
|
152
152
|
"derive_more",
|
|
153
153
|
"encoding_rs",
|
|
154
|
-
"foldhash",
|
|
154
|
+
"foldhash 0.1.5",
|
|
155
155
|
"futures-core",
|
|
156
156
|
"futures-util",
|
|
157
157
|
"impl-more",
|
|
@@ -167,7 +167,7 @@ dependencies = [
|
|
|
167
167
|
"serde_json",
|
|
168
168
|
"serde_urlencoded",
|
|
169
169
|
"smallvec",
|
|
170
|
-
"socket2",
|
|
170
|
+
"socket2 0.5.10",
|
|
171
171
|
"time",
|
|
172
172
|
"tracing",
|
|
173
173
|
"url",
|
|
@@ -182,23 +182,14 @@ dependencies = [
|
|
|
182
182
|
"actix-router",
|
|
183
183
|
"proc-macro2",
|
|
184
184
|
"quote",
|
|
185
|
-
"syn 2.0.
|
|
186
|
-
]
|
|
187
|
-
|
|
188
|
-
[[package]]
|
|
189
|
-
name = "addr2line"
|
|
190
|
-
version = "0.24.2"
|
|
191
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
193
|
-
dependencies = [
|
|
194
|
-
"gimli",
|
|
185
|
+
"syn 2.0.106",
|
|
195
186
|
]
|
|
196
187
|
|
|
197
188
|
[[package]]
|
|
198
189
|
name = "adler2"
|
|
199
|
-
version = "2.0.
|
|
190
|
+
version = "2.0.1"
|
|
200
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
-
checksum = "
|
|
192
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
202
193
|
|
|
203
194
|
[[package]]
|
|
204
195
|
name = "adler32"
|
|
@@ -208,14 +199,14 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
|
208
199
|
|
|
209
200
|
[[package]]
|
|
210
201
|
name = "ahash"
|
|
211
|
-
version = "0.8.
|
|
202
|
+
version = "0.8.12"
|
|
212
203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
204
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
214
205
|
dependencies = [
|
|
215
206
|
"cfg-if",
|
|
216
207
|
"once_cell",
|
|
217
208
|
"version_check",
|
|
218
|
-
"zerocopy
|
|
209
|
+
"zerocopy",
|
|
219
210
|
]
|
|
220
211
|
|
|
221
212
|
[[package]]
|
|
@@ -256,9 +247,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
|
256
247
|
|
|
257
248
|
[[package]]
|
|
258
249
|
name = "anstream"
|
|
259
|
-
version = "0.6.
|
|
250
|
+
version = "0.6.20"
|
|
260
251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
-
checksum = "
|
|
252
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
|
262
253
|
dependencies = [
|
|
263
254
|
"anstyle",
|
|
264
255
|
"anstyle-parse",
|
|
@@ -271,44 +262,44 @@ dependencies = [
|
|
|
271
262
|
|
|
272
263
|
[[package]]
|
|
273
264
|
name = "anstyle"
|
|
274
|
-
version = "1.0.
|
|
265
|
+
version = "1.0.11"
|
|
275
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
-
checksum = "
|
|
267
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
277
268
|
|
|
278
269
|
[[package]]
|
|
279
270
|
name = "anstyle-parse"
|
|
280
|
-
version = "0.2.
|
|
271
|
+
version = "0.2.7"
|
|
281
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
-
checksum = "
|
|
273
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
283
274
|
dependencies = [
|
|
284
275
|
"utf8parse",
|
|
285
276
|
]
|
|
286
277
|
|
|
287
278
|
[[package]]
|
|
288
279
|
name = "anstyle-query"
|
|
289
|
-
version = "1.1.
|
|
280
|
+
version = "1.1.4"
|
|
290
281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
-
checksum = "
|
|
282
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
292
283
|
dependencies = [
|
|
293
|
-
"windows-sys 0.
|
|
284
|
+
"windows-sys 0.60.2",
|
|
294
285
|
]
|
|
295
286
|
|
|
296
287
|
[[package]]
|
|
297
288
|
name = "anstyle-wincon"
|
|
298
|
-
version = "3.0.
|
|
289
|
+
version = "3.0.10"
|
|
299
290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
-
checksum = "
|
|
291
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
301
292
|
dependencies = [
|
|
302
293
|
"anstyle",
|
|
303
|
-
"
|
|
304
|
-
"windows-sys 0.
|
|
294
|
+
"once_cell_polyfill",
|
|
295
|
+
"windows-sys 0.60.2",
|
|
305
296
|
]
|
|
306
297
|
|
|
307
298
|
[[package]]
|
|
308
299
|
name = "anyhow"
|
|
309
|
-
version = "1.0.
|
|
300
|
+
version = "1.0.100"
|
|
310
301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
-
checksum = "
|
|
302
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
312
303
|
|
|
313
304
|
[[package]]
|
|
314
305
|
name = "arc-swap"
|
|
@@ -322,37 +313,38 @@ version = "0.7.6"
|
|
|
322
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
314
|
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
324
315
|
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "assert-json-diff"
|
|
318
|
+
version = "2.0.2"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"serde",
|
|
323
|
+
"serde_json",
|
|
324
|
+
]
|
|
325
|
+
|
|
325
326
|
[[package]]
|
|
326
327
|
name = "async-trait"
|
|
327
|
-
version = "0.1.
|
|
328
|
+
version = "0.1.89"
|
|
328
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "
|
|
330
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
330
331
|
dependencies = [
|
|
331
332
|
"proc-macro2",
|
|
332
333
|
"quote",
|
|
333
|
-
"syn 2.0.
|
|
334
|
+
"syn 2.0.106",
|
|
334
335
|
]
|
|
335
336
|
|
|
336
337
|
[[package]]
|
|
337
|
-
name = "
|
|
338
|
-
version = "1.
|
|
338
|
+
name = "atomic-waker"
|
|
339
|
+
version = "1.1.2"
|
|
339
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
-
checksum = "
|
|
341
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
341
342
|
|
|
342
343
|
[[package]]
|
|
343
|
-
name = "
|
|
344
|
-
version = "
|
|
344
|
+
name = "autocfg"
|
|
345
|
+
version = "1.5.0"
|
|
345
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
-
checksum = "
|
|
347
|
-
dependencies = [
|
|
348
|
-
"addr2line",
|
|
349
|
-
"cfg-if",
|
|
350
|
-
"libc",
|
|
351
|
-
"miniz_oxide",
|
|
352
|
-
"object",
|
|
353
|
-
"rustc-demangle",
|
|
354
|
-
"windows-targets",
|
|
355
|
-
]
|
|
347
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
356
348
|
|
|
357
349
|
[[package]]
|
|
358
350
|
name = "base64"
|
|
@@ -362,11 +354,22 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
362
354
|
|
|
363
355
|
[[package]]
|
|
364
356
|
name = "bincode"
|
|
365
|
-
version = "
|
|
357
|
+
version = "2.0.1"
|
|
366
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "
|
|
359
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
368
360
|
dependencies = [
|
|
361
|
+
"bincode_derive",
|
|
369
362
|
"serde",
|
|
363
|
+
"unty",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "bincode_derive"
|
|
368
|
+
version = "2.0.1"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"virtue",
|
|
370
373
|
]
|
|
371
374
|
|
|
372
375
|
[[package]]
|
|
@@ -377,9 +380,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
377
380
|
|
|
378
381
|
[[package]]
|
|
379
382
|
name = "bitflags"
|
|
380
|
-
version = "2.9.
|
|
383
|
+
version = "2.9.4"
|
|
381
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
-
checksum = "
|
|
385
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
|
383
386
|
|
|
384
387
|
[[package]]
|
|
385
388
|
name = "bitpacking"
|
|
@@ -399,11 +402,36 @@ dependencies = [
|
|
|
399
402
|
"generic-array",
|
|
400
403
|
]
|
|
401
404
|
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "bon"
|
|
407
|
+
version = "3.7.1"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "537c317ddf588aab15c695bf92cf55dec159b93221c074180ca3e0e5a94da415"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"bon-macros",
|
|
412
|
+
"rustversion",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "bon-macros"
|
|
417
|
+
version = "3.7.1"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "ca5abbf2d4a4c6896197c9de13d6d7cb7eff438c63dacde1dde980569cb00248"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"darling 0.21.3",
|
|
422
|
+
"ident_case",
|
|
423
|
+
"prettyplease",
|
|
424
|
+
"proc-macro2",
|
|
425
|
+
"quote",
|
|
426
|
+
"rustversion",
|
|
427
|
+
"syn 2.0.106",
|
|
428
|
+
]
|
|
429
|
+
|
|
402
430
|
[[package]]
|
|
403
431
|
name = "brotli"
|
|
404
|
-
version = "
|
|
432
|
+
version = "8.0.2"
|
|
405
433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
-
checksum = "
|
|
434
|
+
checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
|
|
407
435
|
dependencies = [
|
|
408
436
|
"alloc-no-stdlib",
|
|
409
437
|
"alloc-stdlib",
|
|
@@ -412,9 +440,9 @@ dependencies = [
|
|
|
412
440
|
|
|
413
441
|
[[package]]
|
|
414
442
|
name = "brotli-decompressor"
|
|
415
|
-
version = "
|
|
443
|
+
version = "5.0.0"
|
|
416
444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
445
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
418
446
|
dependencies = [
|
|
419
447
|
"alloc-no-stdlib",
|
|
420
448
|
"alloc-stdlib",
|
|
@@ -422,9 +450,9 @@ dependencies = [
|
|
|
422
450
|
|
|
423
451
|
[[package]]
|
|
424
452
|
name = "bumpalo"
|
|
425
|
-
version = "3.
|
|
453
|
+
version = "3.19.0"
|
|
426
454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
-
checksum = "
|
|
455
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
428
456
|
|
|
429
457
|
[[package]]
|
|
430
458
|
name = "bytecheck"
|
|
@@ -446,7 +474,7 @@ checksum = "efb7846e0cb180355c2dec69e721edafa36919850f1a9f52ffba4ebc0393cb71"
|
|
|
446
474
|
dependencies = [
|
|
447
475
|
"proc-macro2",
|
|
448
476
|
"quote",
|
|
449
|
-
"syn 2.0.
|
|
477
|
+
"syn 2.0.106",
|
|
450
478
|
]
|
|
451
479
|
|
|
452
480
|
[[package]]
|
|
@@ -478,10 +506,11 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
478
506
|
|
|
479
507
|
[[package]]
|
|
480
508
|
name = "cc"
|
|
481
|
-
version = "1.2.
|
|
509
|
+
version = "1.2.35"
|
|
482
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
-
checksum = "
|
|
511
|
+
checksum = "590f9024a68a8c40351881787f1934dc11afd69090f5edb6831464694d836ea3"
|
|
484
512
|
dependencies = [
|
|
513
|
+
"find-msvc-tools",
|
|
485
514
|
"jobserver",
|
|
486
515
|
"libc",
|
|
487
516
|
"shlex",
|
|
@@ -504,15 +533,21 @@ checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
|
|
|
504
533
|
|
|
505
534
|
[[package]]
|
|
506
535
|
name = "cfg-if"
|
|
507
|
-
version = "1.0.
|
|
536
|
+
version = "1.0.3"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "cfg_aliases"
|
|
542
|
+
version = "0.2.1"
|
|
508
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
544
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
510
545
|
|
|
511
546
|
[[package]]
|
|
512
547
|
name = "charabia"
|
|
513
|
-
version = "0.9.
|
|
548
|
+
version = "0.9.7"
|
|
514
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
-
checksum = "
|
|
550
|
+
checksum = "7c2f456825b7f15eac01a1cae40c12c3f55e931d4327e6e4fa59508d664e9568"
|
|
516
551
|
dependencies = [
|
|
517
552
|
"aho-corasick",
|
|
518
553
|
"csv",
|
|
@@ -557,9 +592,9 @@ dependencies = [
|
|
|
557
592
|
|
|
558
593
|
[[package]]
|
|
559
594
|
name = "clap"
|
|
560
|
-
version = "4.5.
|
|
595
|
+
version = "4.5.49"
|
|
561
596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
-
checksum = "
|
|
597
|
+
checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f"
|
|
563
598
|
dependencies = [
|
|
564
599
|
"clap_builder",
|
|
565
600
|
"clap_derive",
|
|
@@ -567,39 +602,39 @@ dependencies = [
|
|
|
567
602
|
|
|
568
603
|
[[package]]
|
|
569
604
|
name = "clap_builder"
|
|
570
|
-
version = "4.5.
|
|
605
|
+
version = "4.5.49"
|
|
571
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
-
checksum = "
|
|
607
|
+
checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730"
|
|
573
608
|
dependencies = [
|
|
574
609
|
"anstream",
|
|
575
610
|
"anstyle",
|
|
576
611
|
"clap_lex",
|
|
577
|
-
"strsim",
|
|
612
|
+
"strsim 0.11.1",
|
|
578
613
|
]
|
|
579
614
|
|
|
580
615
|
[[package]]
|
|
581
616
|
name = "clap_derive"
|
|
582
|
-
version = "4.5.
|
|
617
|
+
version = "4.5.49"
|
|
583
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
-
checksum = "
|
|
619
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
585
620
|
dependencies = [
|
|
586
621
|
"heck 0.5.0",
|
|
587
622
|
"proc-macro2",
|
|
588
623
|
"quote",
|
|
589
|
-
"syn 2.0.
|
|
624
|
+
"syn 2.0.106",
|
|
590
625
|
]
|
|
591
626
|
|
|
592
627
|
[[package]]
|
|
593
628
|
name = "clap_lex"
|
|
594
|
-
version = "0.7.
|
|
629
|
+
version = "0.7.5"
|
|
595
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
-
checksum = "
|
|
631
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
597
632
|
|
|
598
633
|
[[package]]
|
|
599
634
|
name = "colorchoice"
|
|
600
|
-
version = "1.0.
|
|
635
|
+
version = "1.0.4"
|
|
601
636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
-
checksum = "
|
|
637
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
603
638
|
|
|
604
639
|
[[package]]
|
|
605
640
|
name = "console"
|
|
@@ -610,15 +645,27 @@ dependencies = [
|
|
|
610
645
|
"encode_unicode",
|
|
611
646
|
"libc",
|
|
612
647
|
"once_cell",
|
|
613
|
-
"unicode-width 0.2.0",
|
|
614
648
|
"windows-sys 0.59.0",
|
|
615
649
|
]
|
|
616
650
|
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "console"
|
|
653
|
+
version = "0.16.1"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"encode_unicode",
|
|
658
|
+
"libc",
|
|
659
|
+
"once_cell",
|
|
660
|
+
"unicode-width",
|
|
661
|
+
"windows-sys 0.61.0",
|
|
662
|
+
]
|
|
663
|
+
|
|
617
664
|
[[package]]
|
|
618
665
|
name = "convert_case"
|
|
619
|
-
version = "0.
|
|
666
|
+
version = "0.8.0"
|
|
620
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
-
checksum = "
|
|
668
|
+
checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
|
|
622
669
|
dependencies = [
|
|
623
670
|
"unicode-segmentation",
|
|
624
671
|
]
|
|
@@ -654,54 +701,52 @@ dependencies = [
|
|
|
654
701
|
|
|
655
702
|
[[package]]
|
|
656
703
|
name = "crc32fast"
|
|
657
|
-
version = "1.
|
|
704
|
+
version = "1.5.0"
|
|
658
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
-
checksum = "
|
|
706
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
660
707
|
dependencies = [
|
|
661
708
|
"cfg-if",
|
|
662
709
|
]
|
|
663
710
|
|
|
664
711
|
[[package]]
|
|
665
712
|
name = "criterion"
|
|
666
|
-
version = "0.
|
|
713
|
+
version = "0.7.0"
|
|
667
714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
-
checksum = "
|
|
715
|
+
checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
|
|
669
716
|
dependencies = [
|
|
670
717
|
"anes",
|
|
671
718
|
"cast",
|
|
672
719
|
"ciborium",
|
|
673
720
|
"clap",
|
|
674
721
|
"criterion-plot",
|
|
675
|
-
"
|
|
676
|
-
"itertools 0.10.5",
|
|
722
|
+
"itertools 0.13.0",
|
|
677
723
|
"num-traits",
|
|
678
|
-
"once_cell",
|
|
679
724
|
"oorandom",
|
|
680
725
|
"plotters",
|
|
681
726
|
"rayon",
|
|
682
727
|
"regex",
|
|
683
728
|
"serde",
|
|
684
|
-
"serde_derive",
|
|
685
729
|
"serde_json",
|
|
686
730
|
"tinytemplate",
|
|
731
|
+
"tokio",
|
|
687
732
|
"walkdir",
|
|
688
733
|
]
|
|
689
734
|
|
|
690
735
|
[[package]]
|
|
691
736
|
name = "criterion-plot"
|
|
692
|
-
version = "0.
|
|
737
|
+
version = "0.6.0"
|
|
693
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
739
|
+
checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
|
|
695
740
|
dependencies = [
|
|
696
741
|
"cast",
|
|
697
|
-
"itertools 0.
|
|
742
|
+
"itertools 0.13.0",
|
|
698
743
|
]
|
|
699
744
|
|
|
700
745
|
[[package]]
|
|
701
746
|
name = "crossbeam-channel"
|
|
702
|
-
version = "0.5.
|
|
747
|
+
version = "0.5.15"
|
|
703
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
-
checksum = "
|
|
749
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
705
750
|
dependencies = [
|
|
706
751
|
"crossbeam-utils",
|
|
707
752
|
]
|
|
@@ -733,9 +778,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
733
778
|
|
|
734
779
|
[[package]]
|
|
735
780
|
name = "crunchy"
|
|
736
|
-
version = "0.2.
|
|
781
|
+
version = "0.2.4"
|
|
737
782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
-
checksum = "
|
|
783
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
739
784
|
|
|
740
785
|
[[package]]
|
|
741
786
|
name = "crypto-common"
|
|
@@ -770,47 +815,123 @@ dependencies = [
|
|
|
770
815
|
|
|
771
816
|
[[package]]
|
|
772
817
|
name = "ctor"
|
|
773
|
-
version = "0.
|
|
818
|
+
version = "0.5.0"
|
|
774
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
-
checksum = "
|
|
820
|
+
checksum = "67773048316103656a637612c4a62477603b777d91d9c62ff2290f9cde178fdb"
|
|
776
821
|
dependencies = [
|
|
777
|
-
"
|
|
778
|
-
"
|
|
822
|
+
"ctor-proc-macro",
|
|
823
|
+
"dtor",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "ctor-proc-macro"
|
|
828
|
+
version = "0.0.6"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2"
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "darling"
|
|
834
|
+
version = "0.14.4"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"darling_core 0.14.4",
|
|
839
|
+
"darling_macro 0.14.4",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "darling"
|
|
844
|
+
version = "0.20.11"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"darling_core 0.20.11",
|
|
849
|
+
"darling_macro 0.20.11",
|
|
779
850
|
]
|
|
780
851
|
|
|
781
852
|
[[package]]
|
|
782
853
|
name = "darling"
|
|
783
|
-
version = "0.
|
|
854
|
+
version = "0.21.3"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"darling_core 0.21.3",
|
|
859
|
+
"darling_macro 0.21.3",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "darling_core"
|
|
864
|
+
version = "0.14.4"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"fnv",
|
|
869
|
+
"ident_case",
|
|
870
|
+
"proc-macro2",
|
|
871
|
+
"quote",
|
|
872
|
+
"strsim 0.10.0",
|
|
873
|
+
"syn 1.0.109",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "darling_core"
|
|
878
|
+
version = "0.20.11"
|
|
784
879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
880
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
786
881
|
dependencies = [
|
|
787
|
-
"
|
|
788
|
-
"
|
|
882
|
+
"fnv",
|
|
883
|
+
"ident_case",
|
|
884
|
+
"proc-macro2",
|
|
885
|
+
"quote",
|
|
886
|
+
"strsim 0.11.1",
|
|
887
|
+
"syn 2.0.106",
|
|
789
888
|
]
|
|
790
889
|
|
|
791
890
|
[[package]]
|
|
792
891
|
name = "darling_core"
|
|
793
|
-
version = "0.
|
|
892
|
+
version = "0.21.3"
|
|
794
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
894
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
796
895
|
dependencies = [
|
|
797
896
|
"fnv",
|
|
798
897
|
"ident_case",
|
|
799
898
|
"proc-macro2",
|
|
800
899
|
"quote",
|
|
801
|
-
"strsim",
|
|
802
|
-
"syn 2.0.
|
|
900
|
+
"strsim 0.11.1",
|
|
901
|
+
"syn 2.0.106",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "darling_macro"
|
|
906
|
+
version = "0.14.4"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"darling_core 0.14.4",
|
|
911
|
+
"quote",
|
|
912
|
+
"syn 1.0.109",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "darling_macro"
|
|
917
|
+
version = "0.20.11"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"darling_core 0.20.11",
|
|
922
|
+
"quote",
|
|
923
|
+
"syn 2.0.106",
|
|
803
924
|
]
|
|
804
925
|
|
|
805
926
|
[[package]]
|
|
806
927
|
name = "darling_macro"
|
|
807
|
-
version = "0.
|
|
928
|
+
version = "0.21.3"
|
|
808
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
-
checksum = "
|
|
930
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
810
931
|
dependencies = [
|
|
811
|
-
"darling_core",
|
|
932
|
+
"darling_core 0.21.3",
|
|
812
933
|
"quote",
|
|
813
|
-
"syn 2.0.
|
|
934
|
+
"syn 2.0.106",
|
|
814
935
|
]
|
|
815
936
|
|
|
816
937
|
[[package]]
|
|
@@ -819,11 +940,28 @@ version = "0.3.7"
|
|
|
819
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
941
|
checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
|
|
821
942
|
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "deadpool"
|
|
945
|
+
version = "0.12.2"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "5ed5957ff93768adf7a65ab167a17835c3d2c3c50d084fe305174c112f468e2f"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"deadpool-runtime",
|
|
950
|
+
"num_cpus",
|
|
951
|
+
"tokio",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "deadpool-runtime"
|
|
956
|
+
version = "0.1.4"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
|
|
959
|
+
|
|
822
960
|
[[package]]
|
|
823
961
|
name = "deranged"
|
|
824
|
-
version = "0.
|
|
962
|
+
version = "0.5.3"
|
|
825
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
-
checksum = "
|
|
964
|
+
checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc"
|
|
827
965
|
dependencies = [
|
|
828
966
|
"powerfmt",
|
|
829
967
|
"serde",
|
|
@@ -844,10 +982,10 @@ version = "0.20.2"
|
|
|
844
982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
983
|
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
846
984
|
dependencies = [
|
|
847
|
-
"darling",
|
|
985
|
+
"darling 0.20.11",
|
|
848
986
|
"proc-macro2",
|
|
849
987
|
"quote",
|
|
850
|
-
"syn 2.0.
|
|
988
|
+
"syn 2.0.106",
|
|
851
989
|
]
|
|
852
990
|
|
|
853
991
|
[[package]]
|
|
@@ -857,7 +995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
857
995
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
858
996
|
dependencies = [
|
|
859
997
|
"derive_builder_core",
|
|
860
|
-
"syn 2.0.
|
|
998
|
+
"syn 2.0.106",
|
|
861
999
|
]
|
|
862
1000
|
|
|
863
1001
|
[[package]]
|
|
@@ -877,7 +1015,7 @@ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
|
|
877
1015
|
dependencies = [
|
|
878
1016
|
"proc-macro2",
|
|
879
1017
|
"quote",
|
|
880
|
-
"syn 2.0.
|
|
1018
|
+
"syn 2.0.106",
|
|
881
1019
|
"unicode-xid",
|
|
882
1020
|
]
|
|
883
1021
|
|
|
@@ -909,7 +1047,7 @@ dependencies = [
|
|
|
909
1047
|
"libc",
|
|
910
1048
|
"option-ext",
|
|
911
1049
|
"redox_users",
|
|
912
|
-
"windows-sys 0.
|
|
1050
|
+
"windows-sys 0.61.0",
|
|
913
1051
|
]
|
|
914
1052
|
|
|
915
1053
|
[[package]]
|
|
@@ -920,14 +1058,29 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
920
1058
|
dependencies = [
|
|
921
1059
|
"proc-macro2",
|
|
922
1060
|
"quote",
|
|
923
|
-
"syn 2.0.
|
|
1061
|
+
"syn 2.0.106",
|
|
924
1062
|
]
|
|
925
1063
|
|
|
926
1064
|
[[package]]
|
|
927
1065
|
name = "downcast-rs"
|
|
928
|
-
version = "
|
|
1066
|
+
version = "2.0.1"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "dtor"
|
|
1072
|
+
version = "0.1.0"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "e58a0764cddb55ab28955347b45be00ade43d4d6f3ba4bf3dc354e4ec9432934"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"dtor-proc-macro",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "dtor-proc-macro"
|
|
1081
|
+
version = "0.0.6"
|
|
929
1082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "
|
|
1083
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
931
1084
|
|
|
932
1085
|
[[package]]
|
|
933
1086
|
name = "either"
|
|
@@ -1035,9 +1188,9 @@ dependencies = [
|
|
|
1035
1188
|
|
|
1036
1189
|
[[package]]
|
|
1037
1190
|
name = "env_logger"
|
|
1038
|
-
version = "0.11.
|
|
1191
|
+
version = "0.11.8"
|
|
1039
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "
|
|
1193
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
1041
1194
|
dependencies = [
|
|
1042
1195
|
"anstream",
|
|
1043
1196
|
"anstyle",
|
|
@@ -1054,12 +1207,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
1054
1207
|
|
|
1055
1208
|
[[package]]
|
|
1056
1209
|
name = "errno"
|
|
1057
|
-
version = "0.3.
|
|
1210
|
+
version = "0.3.13"
|
|
1058
1211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
-
checksum = "
|
|
1212
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
1060
1213
|
dependencies = [
|
|
1061
1214
|
"libc",
|
|
1062
|
-
"windows-sys 0.
|
|
1215
|
+
"windows-sys 0.60.2",
|
|
1063
1216
|
]
|
|
1064
1217
|
|
|
1065
1218
|
[[package]]
|
|
@@ -1076,21 +1229,27 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
|
1076
1229
|
|
|
1077
1230
|
[[package]]
|
|
1078
1231
|
name = "filetime"
|
|
1079
|
-
version = "0.2.
|
|
1232
|
+
version = "0.2.26"
|
|
1080
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1234
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
1082
1235
|
dependencies = [
|
|
1083
1236
|
"cfg-if",
|
|
1084
1237
|
"libc",
|
|
1085
1238
|
"libredox",
|
|
1086
|
-
"windows-sys 0.
|
|
1239
|
+
"windows-sys 0.60.2",
|
|
1087
1240
|
]
|
|
1088
1241
|
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "find-msvc-tools"
|
|
1244
|
+
version = "0.1.0"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "e178e4fba8a2726903f6ba98a6d221e76f9c12c650d5dc0e6afdc50677b49650"
|
|
1247
|
+
|
|
1089
1248
|
[[package]]
|
|
1090
1249
|
name = "flate2"
|
|
1091
|
-
version = "1.1.
|
|
1250
|
+
version = "1.1.2"
|
|
1092
1251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
-
checksum = "
|
|
1252
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
1094
1253
|
dependencies = [
|
|
1095
1254
|
"crc32fast",
|
|
1096
1255
|
"miniz_oxide",
|
|
@@ -1108,23 +1267,29 @@ version = "0.1.5"
|
|
|
1108
1267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
1268
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1110
1269
|
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "foldhash"
|
|
1272
|
+
version = "0.2.0"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1275
|
+
|
|
1111
1276
|
[[package]]
|
|
1112
1277
|
name = "form_urlencoded"
|
|
1113
|
-
version = "1.2.
|
|
1278
|
+
version = "1.2.2"
|
|
1114
1279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1280
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1116
1281
|
dependencies = [
|
|
1117
1282
|
"percent-encoding",
|
|
1118
1283
|
]
|
|
1119
1284
|
|
|
1120
1285
|
[[package]]
|
|
1121
1286
|
name = "fs4"
|
|
1122
|
-
version = "0.
|
|
1287
|
+
version = "0.13.1"
|
|
1123
1288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
-
checksum = "
|
|
1289
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
|
1125
1290
|
dependencies = [
|
|
1126
|
-
"rustix
|
|
1127
|
-
"windows-sys 0.
|
|
1291
|
+
"rustix",
|
|
1292
|
+
"windows-sys 0.59.0",
|
|
1128
1293
|
]
|
|
1129
1294
|
|
|
1130
1295
|
[[package]]
|
|
@@ -1133,12 +1298,65 @@ version = "0.4.7"
|
|
|
1133
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
1299
|
checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
|
|
1135
1300
|
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "futures"
|
|
1303
|
+
version = "0.3.31"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"futures-channel",
|
|
1308
|
+
"futures-core",
|
|
1309
|
+
"futures-executor",
|
|
1310
|
+
"futures-io",
|
|
1311
|
+
"futures-sink",
|
|
1312
|
+
"futures-task",
|
|
1313
|
+
"futures-util",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "futures-channel"
|
|
1318
|
+
version = "0.3.31"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"futures-core",
|
|
1323
|
+
"futures-sink",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1136
1326
|
[[package]]
|
|
1137
1327
|
name = "futures-core"
|
|
1138
1328
|
version = "0.3.31"
|
|
1139
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
1330
|
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1141
1331
|
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "futures-executor"
|
|
1334
|
+
version = "0.3.31"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"futures-core",
|
|
1339
|
+
"futures-task",
|
|
1340
|
+
"futures-util",
|
|
1341
|
+
]
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "futures-io"
|
|
1345
|
+
version = "0.3.31"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "futures-macro"
|
|
1351
|
+
version = "0.3.31"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"proc-macro2",
|
|
1356
|
+
"quote",
|
|
1357
|
+
"syn 2.0.106",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1142
1360
|
[[package]]
|
|
1143
1361
|
name = "futures-sink"
|
|
1144
1362
|
version = "0.3.31"
|
|
@@ -1157,10 +1375,16 @@ version = "0.3.31"
|
|
|
1157
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
1376
|
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1159
1377
|
dependencies = [
|
|
1378
|
+
"futures-channel",
|
|
1160
1379
|
"futures-core",
|
|
1380
|
+
"futures-io",
|
|
1381
|
+
"futures-macro",
|
|
1382
|
+
"futures-sink",
|
|
1161
1383
|
"futures-task",
|
|
1384
|
+
"memchr",
|
|
1162
1385
|
"pin-project-lite",
|
|
1163
1386
|
"pin-utils",
|
|
1387
|
+
"slab",
|
|
1164
1388
|
]
|
|
1165
1389
|
|
|
1166
1390
|
[[package]]
|
|
@@ -1184,60 +1408,77 @@ dependencies = [
|
|
|
1184
1408
|
|
|
1185
1409
|
[[package]]
|
|
1186
1410
|
name = "getopts"
|
|
1187
|
-
version = "0.2.
|
|
1411
|
+
version = "0.2.24"
|
|
1188
1412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
-
checksum = "
|
|
1413
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
1190
1414
|
dependencies = [
|
|
1191
|
-
"unicode-width
|
|
1415
|
+
"unicode-width",
|
|
1192
1416
|
]
|
|
1193
1417
|
|
|
1194
1418
|
[[package]]
|
|
1195
1419
|
name = "getrandom"
|
|
1196
|
-
version = "0.2.
|
|
1420
|
+
version = "0.2.16"
|
|
1197
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
-
checksum = "
|
|
1422
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1199
1423
|
dependencies = [
|
|
1200
1424
|
"cfg-if",
|
|
1425
|
+
"js-sys",
|
|
1201
1426
|
"libc",
|
|
1202
|
-
"wasi 0.11.
|
|
1427
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1428
|
+
"wasm-bindgen",
|
|
1203
1429
|
]
|
|
1204
1430
|
|
|
1205
1431
|
[[package]]
|
|
1206
1432
|
name = "getrandom"
|
|
1207
|
-
version = "0.3.
|
|
1433
|
+
version = "0.3.3"
|
|
1208
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "
|
|
1435
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
1210
1436
|
dependencies = [
|
|
1211
1437
|
"cfg-if",
|
|
1438
|
+
"js-sys",
|
|
1212
1439
|
"libc",
|
|
1213
1440
|
"r-efi",
|
|
1214
|
-
"wasi 0.14.
|
|
1441
|
+
"wasi 0.14.3+wasi-0.2.4",
|
|
1442
|
+
"wasm-bindgen",
|
|
1215
1443
|
]
|
|
1216
1444
|
|
|
1217
1445
|
[[package]]
|
|
1218
|
-
name = "
|
|
1219
|
-
version = "0.
|
|
1446
|
+
name = "glob"
|
|
1447
|
+
version = "0.3.3"
|
|
1220
1448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
-
checksum = "
|
|
1449
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1222
1450
|
|
|
1223
1451
|
[[package]]
|
|
1224
|
-
name = "
|
|
1225
|
-
version = "0.3.
|
|
1452
|
+
name = "h2"
|
|
1453
|
+
version = "0.3.27"
|
|
1226
1454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
-
checksum = "
|
|
1455
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"bytes",
|
|
1458
|
+
"fnv",
|
|
1459
|
+
"futures-core",
|
|
1460
|
+
"futures-sink",
|
|
1461
|
+
"futures-util",
|
|
1462
|
+
"http 0.2.12",
|
|
1463
|
+
"indexmap",
|
|
1464
|
+
"slab",
|
|
1465
|
+
"tokio",
|
|
1466
|
+
"tokio-util",
|
|
1467
|
+
"tracing",
|
|
1468
|
+
]
|
|
1228
1469
|
|
|
1229
1470
|
[[package]]
|
|
1230
1471
|
name = "h2"
|
|
1231
|
-
version = "0.
|
|
1472
|
+
version = "0.4.12"
|
|
1232
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
-
checksum = "
|
|
1474
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
1234
1475
|
dependencies = [
|
|
1476
|
+
"atomic-waker",
|
|
1235
1477
|
"bytes",
|
|
1236
1478
|
"fnv",
|
|
1237
1479
|
"futures-core",
|
|
1238
1480
|
"futures-sink",
|
|
1239
|
-
"
|
|
1240
|
-
"http",
|
|
1481
|
+
"http 1.3.1",
|
|
1241
1482
|
"indexmap",
|
|
1242
1483
|
"slab",
|
|
1243
1484
|
"tokio",
|
|
@@ -1247,9 +1488,9 @@ dependencies = [
|
|
|
1247
1488
|
|
|
1248
1489
|
[[package]]
|
|
1249
1490
|
name = "half"
|
|
1250
|
-
version = "2.
|
|
1491
|
+
version = "2.6.0"
|
|
1251
1492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
-
checksum = "
|
|
1493
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
1253
1494
|
dependencies = [
|
|
1254
1495
|
"cfg-if",
|
|
1255
1496
|
"crunchy",
|
|
@@ -1267,13 +1508,24 @@ dependencies = [
|
|
|
1267
1508
|
|
|
1268
1509
|
[[package]]
|
|
1269
1510
|
name = "hashbrown"
|
|
1270
|
-
version = "0.15.
|
|
1511
|
+
version = "0.15.5"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"allocator-api2",
|
|
1516
|
+
"equivalent",
|
|
1517
|
+
"foldhash 0.1.5",
|
|
1518
|
+
]
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "hashbrown"
|
|
1522
|
+
version = "0.16.0"
|
|
1271
1523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
-
checksum = "
|
|
1524
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
1273
1525
|
dependencies = [
|
|
1274
1526
|
"allocator-api2",
|
|
1275
1527
|
"equivalent",
|
|
1276
|
-
"foldhash",
|
|
1528
|
+
"foldhash 0.2.0",
|
|
1277
1529
|
]
|
|
1278
1530
|
|
|
1279
1531
|
[[package]]
|
|
@@ -1290,15 +1542,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
1290
1542
|
|
|
1291
1543
|
[[package]]
|
|
1292
1544
|
name = "hermit-abi"
|
|
1293
|
-
version = "0.
|
|
1545
|
+
version = "0.5.2"
|
|
1294
1546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
-
checksum = "
|
|
1296
|
-
|
|
1297
|
-
[[package]]
|
|
1298
|
-
name = "hermit-abi"
|
|
1299
|
-
version = "0.5.0"
|
|
1300
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
-
checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
|
|
1547
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1302
1548
|
|
|
1303
1549
|
[[package]]
|
|
1304
1550
|
name = "htmlescape"
|
|
@@ -1317,6 +1563,40 @@ dependencies = [
|
|
|
1317
1563
|
"itoa",
|
|
1318
1564
|
]
|
|
1319
1565
|
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "http"
|
|
1568
|
+
version = "1.3.1"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"bytes",
|
|
1573
|
+
"fnv",
|
|
1574
|
+
"itoa",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "http-body"
|
|
1579
|
+
version = "1.0.1"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"bytes",
|
|
1584
|
+
"http 1.3.1",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "http-body-util"
|
|
1589
|
+
version = "0.1.3"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1592
|
+
dependencies = [
|
|
1593
|
+
"bytes",
|
|
1594
|
+
"futures-core",
|
|
1595
|
+
"http 1.3.1",
|
|
1596
|
+
"http-body",
|
|
1597
|
+
"pin-project-lite",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1320
1600
|
[[package]]
|
|
1321
1601
|
name = "httparse"
|
|
1322
1602
|
version = "1.10.1"
|
|
@@ -1330,64 +1610,109 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1330
1610
|
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1331
1611
|
|
|
1332
1612
|
[[package]]
|
|
1333
|
-
name = "
|
|
1334
|
-
version = "
|
|
1613
|
+
name = "hyper"
|
|
1614
|
+
version = "1.7.0"
|
|
1335
1615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
-
checksum = "
|
|
1616
|
+
checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
|
|
1337
1617
|
dependencies = [
|
|
1338
|
-
"
|
|
1618
|
+
"atomic-waker",
|
|
1619
|
+
"bytes",
|
|
1620
|
+
"futures-channel",
|
|
1621
|
+
"futures-core",
|
|
1622
|
+
"h2 0.4.12",
|
|
1623
|
+
"http 1.3.1",
|
|
1624
|
+
"http-body",
|
|
1625
|
+
"httparse",
|
|
1626
|
+
"httpdate",
|
|
1627
|
+
"itoa",
|
|
1628
|
+
"pin-project-lite",
|
|
1629
|
+
"pin-utils",
|
|
1630
|
+
"smallvec",
|
|
1631
|
+
"tokio",
|
|
1632
|
+
"want",
|
|
1339
1633
|
]
|
|
1340
1634
|
|
|
1341
1635
|
[[package]]
|
|
1342
|
-
name = "
|
|
1343
|
-
version = "
|
|
1636
|
+
name = "hyper-rustls"
|
|
1637
|
+
version = "0.27.7"
|
|
1344
1638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
-
checksum = "
|
|
1639
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1346
1640
|
dependencies = [
|
|
1347
|
-
"
|
|
1348
|
-
"
|
|
1349
|
-
"
|
|
1350
|
-
"
|
|
1641
|
+
"http 1.3.1",
|
|
1642
|
+
"hyper",
|
|
1643
|
+
"hyper-util",
|
|
1644
|
+
"rustls",
|
|
1645
|
+
"rustls-pki-types",
|
|
1646
|
+
"tokio",
|
|
1647
|
+
"tokio-rustls",
|
|
1648
|
+
"tower-service",
|
|
1649
|
+
"webpki-roots",
|
|
1351
1650
|
]
|
|
1352
1651
|
|
|
1353
1652
|
[[package]]
|
|
1354
|
-
name = "
|
|
1355
|
-
version = "1.
|
|
1653
|
+
name = "hyper-util"
|
|
1654
|
+
version = "0.1.16"
|
|
1356
1655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
-
checksum = "
|
|
1656
|
+
checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
|
|
1358
1657
|
dependencies = [
|
|
1359
|
-
"
|
|
1360
|
-
"
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1658
|
+
"base64",
|
|
1659
|
+
"bytes",
|
|
1660
|
+
"futures-channel",
|
|
1661
|
+
"futures-core",
|
|
1662
|
+
"futures-util",
|
|
1663
|
+
"http 1.3.1",
|
|
1664
|
+
"http-body",
|
|
1665
|
+
"hyper",
|
|
1666
|
+
"ipnet",
|
|
1667
|
+
"libc",
|
|
1668
|
+
"percent-encoding",
|
|
1669
|
+
"pin-project-lite",
|
|
1670
|
+
"socket2 0.5.10",
|
|
1671
|
+
"tokio",
|
|
1672
|
+
"tower-service",
|
|
1673
|
+
"tracing",
|
|
1364
1674
|
]
|
|
1365
1675
|
|
|
1366
1676
|
[[package]]
|
|
1367
|
-
name = "
|
|
1368
|
-
version = "
|
|
1677
|
+
name = "hyperloglogplus"
|
|
1678
|
+
version = "0.4.1"
|
|
1369
1679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
-
checksum = "
|
|
1680
|
+
checksum = "621debdf94dcac33e50475fdd76d34d5ea9c0362a834b9db08c3024696c1fbe3"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"serde",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "icu_collections"
|
|
1687
|
+
version = "2.0.0"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1371
1690
|
dependencies = [
|
|
1372
1691
|
"displaydoc",
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1375
|
-
"
|
|
1376
|
-
"tinystr",
|
|
1692
|
+
"potential_utf",
|
|
1693
|
+
"yoke",
|
|
1694
|
+
"zerofrom",
|
|
1377
1695
|
"zerovec",
|
|
1378
1696
|
]
|
|
1379
1697
|
|
|
1380
1698
|
[[package]]
|
|
1381
|
-
name = "
|
|
1382
|
-
version = "
|
|
1699
|
+
name = "icu_locale_core"
|
|
1700
|
+
version = "2.0.0"
|
|
1383
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
-
checksum = "
|
|
1702
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1703
|
+
dependencies = [
|
|
1704
|
+
"displaydoc",
|
|
1705
|
+
"litemap",
|
|
1706
|
+
"tinystr",
|
|
1707
|
+
"writeable",
|
|
1708
|
+
"zerovec",
|
|
1709
|
+
]
|
|
1385
1710
|
|
|
1386
1711
|
[[package]]
|
|
1387
1712
|
name = "icu_normalizer"
|
|
1388
|
-
version = "
|
|
1713
|
+
version = "2.0.0"
|
|
1389
1714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
-
checksum = "
|
|
1715
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1391
1716
|
dependencies = [
|
|
1392
1717
|
"displaydoc",
|
|
1393
1718
|
"icu_collections",
|
|
@@ -1395,67 +1720,54 @@ dependencies = [
|
|
|
1395
1720
|
"icu_properties",
|
|
1396
1721
|
"icu_provider",
|
|
1397
1722
|
"smallvec",
|
|
1398
|
-
"utf16_iter",
|
|
1399
|
-
"utf8_iter",
|
|
1400
|
-
"write16",
|
|
1401
1723
|
"zerovec",
|
|
1402
1724
|
]
|
|
1403
1725
|
|
|
1404
1726
|
[[package]]
|
|
1405
1727
|
name = "icu_normalizer_data"
|
|
1406
|
-
version = "
|
|
1728
|
+
version = "2.0.0"
|
|
1407
1729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
-
checksum = "
|
|
1730
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1409
1731
|
|
|
1410
1732
|
[[package]]
|
|
1411
1733
|
name = "icu_properties"
|
|
1412
|
-
version = "
|
|
1734
|
+
version = "2.0.1"
|
|
1413
1735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
-
checksum = "
|
|
1736
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1415
1737
|
dependencies = [
|
|
1416
1738
|
"displaydoc",
|
|
1417
1739
|
"icu_collections",
|
|
1418
|
-
"
|
|
1740
|
+
"icu_locale_core",
|
|
1419
1741
|
"icu_properties_data",
|
|
1420
1742
|
"icu_provider",
|
|
1421
|
-
"
|
|
1743
|
+
"potential_utf",
|
|
1744
|
+
"zerotrie",
|
|
1422
1745
|
"zerovec",
|
|
1423
1746
|
]
|
|
1424
1747
|
|
|
1425
1748
|
[[package]]
|
|
1426
1749
|
name = "icu_properties_data"
|
|
1427
|
-
version = "
|
|
1750
|
+
version = "2.0.1"
|
|
1428
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
-
checksum = "
|
|
1752
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1430
1753
|
|
|
1431
1754
|
[[package]]
|
|
1432
1755
|
name = "icu_provider"
|
|
1433
|
-
version = "
|
|
1756
|
+
version = "2.0.0"
|
|
1434
1757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
-
checksum = "
|
|
1758
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1436
1759
|
dependencies = [
|
|
1437
1760
|
"displaydoc",
|
|
1438
|
-
"
|
|
1439
|
-
"icu_provider_macros",
|
|
1761
|
+
"icu_locale_core",
|
|
1440
1762
|
"stable_deref_trait",
|
|
1441
1763
|
"tinystr",
|
|
1442
1764
|
"writeable",
|
|
1443
1765
|
"yoke",
|
|
1444
1766
|
"zerofrom",
|
|
1767
|
+
"zerotrie",
|
|
1445
1768
|
"zerovec",
|
|
1446
1769
|
]
|
|
1447
1770
|
|
|
1448
|
-
[[package]]
|
|
1449
|
-
name = "icu_provider_macros"
|
|
1450
|
-
version = "1.5.0"
|
|
1451
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
-
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1453
|
-
dependencies = [
|
|
1454
|
-
"proc-macro2",
|
|
1455
|
-
"quote",
|
|
1456
|
-
"syn 2.0.100",
|
|
1457
|
-
]
|
|
1458
|
-
|
|
1459
1771
|
[[package]]
|
|
1460
1772
|
name = "ident_case"
|
|
1461
1773
|
version = "1.0.1"
|
|
@@ -1464,9 +1776,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1464
1776
|
|
|
1465
1777
|
[[package]]
|
|
1466
1778
|
name = "idna"
|
|
1467
|
-
version = "1.0
|
|
1779
|
+
version = "1.1.0"
|
|
1468
1780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
-
checksum = "
|
|
1781
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1470
1782
|
dependencies = [
|
|
1471
1783
|
"idna_adapter",
|
|
1472
1784
|
"smallvec",
|
|
@@ -1475,9 +1787,9 @@ dependencies = [
|
|
|
1475
1787
|
|
|
1476
1788
|
[[package]]
|
|
1477
1789
|
name = "idna_adapter"
|
|
1478
|
-
version = "1.2.
|
|
1790
|
+
version = "1.2.1"
|
|
1479
1791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "
|
|
1792
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1481
1793
|
dependencies = [
|
|
1482
1794
|
"icu_normalizer",
|
|
1483
1795
|
"icu_properties",
|
|
@@ -1491,47 +1803,61 @@ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
|
|
|
1491
1803
|
|
|
1492
1804
|
[[package]]
|
|
1493
1805
|
name = "include-flate"
|
|
1494
|
-
version = "0.3.
|
|
1806
|
+
version = "0.3.1"
|
|
1495
1807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
-
checksum = "
|
|
1808
|
+
checksum = "e01b7cb6ca682a621e7cda1c358c9724b53a7b4409be9be1dd443b7f3a26f998"
|
|
1497
1809
|
dependencies = [
|
|
1498
1810
|
"include-flate-codegen",
|
|
1499
|
-
"
|
|
1811
|
+
"include-flate-compress",
|
|
1500
1812
|
"libflate",
|
|
1813
|
+
"zstd",
|
|
1501
1814
|
]
|
|
1502
1815
|
|
|
1503
1816
|
[[package]]
|
|
1504
1817
|
name = "include-flate-codegen"
|
|
1505
|
-
version = "0.
|
|
1818
|
+
version = "0.3.1"
|
|
1506
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
-
checksum = "
|
|
1820
|
+
checksum = "4f49bf5274aebe468d6e6eba14a977eaf1efa481dc173f361020de70c1c48050"
|
|
1508
1821
|
dependencies = [
|
|
1822
|
+
"include-flate-compress",
|
|
1509
1823
|
"libflate",
|
|
1824
|
+
"proc-macro-error",
|
|
1510
1825
|
"proc-macro2",
|
|
1511
1826
|
"quote",
|
|
1512
|
-
"syn 2.0.
|
|
1827
|
+
"syn 2.0.106",
|
|
1828
|
+
"zstd",
|
|
1829
|
+
]
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "include-flate-compress"
|
|
1833
|
+
version = "0.3.1"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "eae6a40e716bcd5931f5dbb79cd921512a4f647e2e9413fded3171fca3824dbc"
|
|
1836
|
+
dependencies = [
|
|
1837
|
+
"libflate",
|
|
1838
|
+
"zstd",
|
|
1513
1839
|
]
|
|
1514
1840
|
|
|
1515
1841
|
[[package]]
|
|
1516
1842
|
name = "indexmap"
|
|
1517
|
-
version = "2.
|
|
1843
|
+
version = "2.11.0"
|
|
1518
1844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
-
checksum = "
|
|
1845
|
+
checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
|
|
1520
1846
|
dependencies = [
|
|
1521
1847
|
"equivalent",
|
|
1522
|
-
"hashbrown 0.15.
|
|
1848
|
+
"hashbrown 0.15.5",
|
|
1523
1849
|
]
|
|
1524
1850
|
|
|
1525
1851
|
[[package]]
|
|
1526
1852
|
name = "indicatif"
|
|
1527
|
-
version = "0.
|
|
1853
|
+
version = "0.18.0"
|
|
1528
1854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
-
checksum = "
|
|
1855
|
+
checksum = "70a646d946d06bedbbc4cac4c218acf4bbf2d87757a784857025f4d447e4e1cd"
|
|
1530
1856
|
dependencies = [
|
|
1531
|
-
"console",
|
|
1532
|
-
"number_prefix",
|
|
1857
|
+
"console 0.16.1",
|
|
1533
1858
|
"portable-atomic",
|
|
1534
|
-
"unicode-width
|
|
1859
|
+
"unicode-width",
|
|
1860
|
+
"unit-prefix",
|
|
1535
1861
|
"web-time",
|
|
1536
1862
|
]
|
|
1537
1863
|
|
|
@@ -1549,19 +1875,17 @@ checksum = "6c38228f24186d9cc68c729accb4d413be9eaed6ad07ff79e0270d9e56f3de13"
|
|
|
1549
1875
|
dependencies = [
|
|
1550
1876
|
"proc-macro2",
|
|
1551
1877
|
"quote",
|
|
1552
|
-
"syn 2.0.
|
|
1878
|
+
"syn 2.0.106",
|
|
1553
1879
|
]
|
|
1554
1880
|
|
|
1555
1881
|
[[package]]
|
|
1556
1882
|
name = "insta"
|
|
1557
|
-
version = "1.
|
|
1883
|
+
version = "1.43.2"
|
|
1558
1884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
-
checksum = "
|
|
1885
|
+
checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
|
|
1560
1886
|
dependencies = [
|
|
1561
|
-
"console",
|
|
1562
|
-
"linked-hash-map",
|
|
1887
|
+
"console 0.15.11",
|
|
1563
1888
|
"once_cell",
|
|
1564
|
-
"pin-project",
|
|
1565
1889
|
"similar",
|
|
1566
1890
|
]
|
|
1567
1891
|
|
|
@@ -1577,6 +1901,20 @@ dependencies = [
|
|
|
1577
1901
|
"web-sys",
|
|
1578
1902
|
]
|
|
1579
1903
|
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "internal"
|
|
1906
|
+
version = "0.1.0"
|
|
1907
|
+
dependencies = [
|
|
1908
|
+
"odict",
|
|
1909
|
+
"strum",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "ipnet"
|
|
1914
|
+
version = "2.11.0"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1917
|
+
|
|
1580
1918
|
[[package]]
|
|
1581
1919
|
name = "irg-kvariants"
|
|
1582
1920
|
version = "0.1.1"
|
|
@@ -1589,14 +1927,13 @@ dependencies = [
|
|
|
1589
1927
|
]
|
|
1590
1928
|
|
|
1591
1929
|
[[package]]
|
|
1592
|
-
name = "
|
|
1593
|
-
version = "0.
|
|
1930
|
+
name = "iri-string"
|
|
1931
|
+
version = "0.7.8"
|
|
1594
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
-
checksum = "
|
|
1933
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
|
1596
1934
|
dependencies = [
|
|
1597
|
-
"
|
|
1598
|
-
"
|
|
1599
|
-
"windows-sys 0.52.0",
|
|
1935
|
+
"memchr",
|
|
1936
|
+
"serde",
|
|
1600
1937
|
]
|
|
1601
1938
|
|
|
1602
1939
|
[[package]]
|
|
@@ -1607,18 +1944,18 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
|
1607
1944
|
|
|
1608
1945
|
[[package]]
|
|
1609
1946
|
name = "itertools"
|
|
1610
|
-
version = "0.
|
|
1947
|
+
version = "0.13.0"
|
|
1611
1948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
-
checksum = "
|
|
1949
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1613
1950
|
dependencies = [
|
|
1614
1951
|
"either",
|
|
1615
1952
|
]
|
|
1616
1953
|
|
|
1617
1954
|
[[package]]
|
|
1618
1955
|
name = "itertools"
|
|
1619
|
-
version = "0.
|
|
1956
|
+
version = "0.14.0"
|
|
1620
1957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
-
checksum = "
|
|
1958
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1622
1959
|
dependencies = [
|
|
1623
1960
|
"either",
|
|
1624
1961
|
]
|
|
@@ -1640,9 +1977,9 @@ dependencies = [
|
|
|
1640
1977
|
|
|
1641
1978
|
[[package]]
|
|
1642
1979
|
name = "jieba-rs"
|
|
1643
|
-
version = "0.7.
|
|
1980
|
+
version = "0.7.4"
|
|
1644
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1982
|
+
checksum = "f5dd552bbb95d578520ee68403bf8aaf0dbbb2ce55b0854d019f9350ad61040a"
|
|
1646
1983
|
dependencies = [
|
|
1647
1984
|
"cedarwood",
|
|
1648
1985
|
"fxhash",
|
|
@@ -1655,9 +1992,9 @@ dependencies = [
|
|
|
1655
1992
|
|
|
1656
1993
|
[[package]]
|
|
1657
1994
|
name = "jiff"
|
|
1658
|
-
version = "0.2.
|
|
1995
|
+
version = "0.2.15"
|
|
1659
1996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
-
checksum = "
|
|
1997
|
+
checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
|
|
1661
1998
|
dependencies = [
|
|
1662
1999
|
"jiff-static",
|
|
1663
2000
|
"log",
|
|
@@ -1668,21 +2005,22 @@ dependencies = [
|
|
|
1668
2005
|
|
|
1669
2006
|
[[package]]
|
|
1670
2007
|
name = "jiff-static"
|
|
1671
|
-
version = "0.2.
|
|
2008
|
+
version = "0.2.15"
|
|
1672
2009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
-
checksum = "
|
|
2010
|
+
checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
|
|
1674
2011
|
dependencies = [
|
|
1675
2012
|
"proc-macro2",
|
|
1676
2013
|
"quote",
|
|
1677
|
-
"syn 2.0.
|
|
2014
|
+
"syn 2.0.106",
|
|
1678
2015
|
]
|
|
1679
2016
|
|
|
1680
2017
|
[[package]]
|
|
1681
2018
|
name = "jobserver"
|
|
1682
|
-
version = "0.1.
|
|
2019
|
+
version = "0.1.34"
|
|
1683
2020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
-
checksum = "
|
|
2021
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1685
2022
|
dependencies = [
|
|
2023
|
+
"getrandom 0.3.3",
|
|
1686
2024
|
"libc",
|
|
1687
2025
|
]
|
|
1688
2026
|
|
|
@@ -1725,9 +2063,9 @@ checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
|
|
|
1725
2063
|
|
|
1726
2064
|
[[package]]
|
|
1727
2065
|
name = "libc"
|
|
1728
|
-
version = "0.2.
|
|
2066
|
+
version = "0.2.175"
|
|
1729
2067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
-
checksum = "
|
|
2068
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
1731
2069
|
|
|
1732
2070
|
[[package]]
|
|
1733
2071
|
name = "libflate"
|
|
@@ -1755,182 +2093,79 @@ dependencies = [
|
|
|
1755
2093
|
|
|
1756
2094
|
[[package]]
|
|
1757
2095
|
name = "libloading"
|
|
1758
|
-
version = "0.8.
|
|
2096
|
+
version = "0.8.8"
|
|
1759
2097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
-
checksum = "
|
|
2098
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
1761
2099
|
dependencies = [
|
|
1762
2100
|
"cfg-if",
|
|
1763
|
-
"windows-targets",
|
|
2101
|
+
"windows-targets 0.53.3",
|
|
1764
2102
|
]
|
|
1765
2103
|
|
|
1766
2104
|
[[package]]
|
|
1767
2105
|
name = "libm"
|
|
1768
|
-
version = "0.2.
|
|
2106
|
+
version = "0.2.15"
|
|
1769
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
-
checksum = "
|
|
2108
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1771
2109
|
|
|
1772
2110
|
[[package]]
|
|
1773
2111
|
name = "libredox"
|
|
1774
|
-
version = "0.1.
|
|
2112
|
+
version = "0.1.9"
|
|
1775
2113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
-
checksum = "
|
|
2114
|
+
checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
|
|
1777
2115
|
dependencies = [
|
|
1778
|
-
"bitflags 2.9.
|
|
2116
|
+
"bitflags 2.9.4",
|
|
1779
2117
|
"libc",
|
|
1780
|
-
"redox_syscall",
|
|
2118
|
+
"redox_syscall 0.5.17",
|
|
1781
2119
|
]
|
|
1782
2120
|
|
|
1783
2121
|
[[package]]
|
|
1784
2122
|
name = "lindera"
|
|
1785
|
-
version = "0.
|
|
2123
|
+
version = "0.43.3"
|
|
1786
2124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
-
checksum = "
|
|
1788
|
-
dependencies = [
|
|
1789
|
-
"lindera-analyzer",
|
|
1790
|
-
"lindera-core",
|
|
1791
|
-
"lindera-dictionary",
|
|
1792
|
-
"lindera-filter",
|
|
1793
|
-
"lindera-tokenizer",
|
|
1794
|
-
]
|
|
1795
|
-
|
|
1796
|
-
[[package]]
|
|
1797
|
-
name = "lindera-analyzer"
|
|
1798
|
-
version = "0.32.3"
|
|
1799
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
-
checksum = "a8e26651714abf5167e6b6a80f5cdaa0cad41c5fcb84d8ba96bebafcb9029339"
|
|
2125
|
+
checksum = "877750979d709bb5fb2d616a2c9968301ead80147db2270c8f23d8239467f159"
|
|
1801
2126
|
dependencies = [
|
|
1802
2127
|
"anyhow",
|
|
1803
2128
|
"bincode",
|
|
1804
2129
|
"byteorder",
|
|
1805
|
-
"
|
|
2130
|
+
"csv",
|
|
1806
2131
|
"kanaria",
|
|
1807
|
-
"lindera-cc-cedict
|
|
1808
|
-
"lindera-core",
|
|
2132
|
+
"lindera-cc-cedict",
|
|
1809
2133
|
"lindera-dictionary",
|
|
1810
|
-
"lindera-
|
|
1811
|
-
"lindera-ipadic-
|
|
1812
|
-
"lindera-ko-dic
|
|
1813
|
-
"lindera-
|
|
1814
|
-
"lindera-unidic-builder",
|
|
2134
|
+
"lindera-ipadic",
|
|
2135
|
+
"lindera-ipadic-neologd",
|
|
2136
|
+
"lindera-ko-dic",
|
|
2137
|
+
"lindera-unidic",
|
|
1815
2138
|
"once_cell",
|
|
1816
2139
|
"regex",
|
|
1817
2140
|
"serde",
|
|
1818
2141
|
"serde_json",
|
|
1819
|
-
"
|
|
2142
|
+
"serde_yaml",
|
|
2143
|
+
"strum",
|
|
2144
|
+
"strum_macros",
|
|
1820
2145
|
"unicode-blocks",
|
|
1821
2146
|
"unicode-normalization",
|
|
1822
2147
|
"unicode-segmentation",
|
|
1823
2148
|
"yada",
|
|
1824
2149
|
]
|
|
1825
2150
|
|
|
1826
|
-
[[package]]
|
|
1827
|
-
name = "lindera-assets"
|
|
1828
|
-
version = "0.32.3"
|
|
1829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
-
checksum = "ebb01f1ca53c1e642234c6c7fdb9ac664ad0c1ab9502f33e4200201bac7e6ce7"
|
|
1831
|
-
dependencies = [
|
|
1832
|
-
"encoding",
|
|
1833
|
-
"flate2",
|
|
1834
|
-
"lindera-core",
|
|
1835
|
-
"tar",
|
|
1836
|
-
"ureq",
|
|
1837
|
-
]
|
|
1838
|
-
|
|
1839
2151
|
[[package]]
|
|
1840
2152
|
name = "lindera-cc-cedict"
|
|
1841
|
-
version = "0.
|
|
1842
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
-
checksum = "5f7618d9aa947fdd7c38eae2b79f0fd237ecb5067608f1363610ba20d20ab5a8"
|
|
1844
|
-
dependencies = [
|
|
1845
|
-
"bincode",
|
|
1846
|
-
"byteorder",
|
|
1847
|
-
"lindera-cc-cedict-builder",
|
|
1848
|
-
"lindera-core",
|
|
1849
|
-
"lindera-decompress",
|
|
1850
|
-
"once_cell",
|
|
1851
|
-
]
|
|
1852
|
-
|
|
1853
|
-
[[package]]
|
|
1854
|
-
name = "lindera-cc-cedict-builder"
|
|
1855
|
-
version = "0.32.3"
|
|
1856
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
-
checksum = "efdbcb809d81428935d601a78c94bfb39500749213f7320705f427a7a1d31aec"
|
|
1858
|
-
dependencies = [
|
|
1859
|
-
"anyhow",
|
|
1860
|
-
"lindera-core",
|
|
1861
|
-
"lindera-decompress",
|
|
1862
|
-
"lindera-dictionary-builder",
|
|
1863
|
-
]
|
|
1864
|
-
|
|
1865
|
-
[[package]]
|
|
1866
|
-
name = "lindera-compress"
|
|
1867
|
-
version = "0.32.3"
|
|
1868
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
-
checksum = "eac178afa2456dac469d3b1a2d7fbaf3e1ea796a1f52321e8ac29545a53c239c"
|
|
1870
|
-
dependencies = [
|
|
1871
|
-
"anyhow",
|
|
1872
|
-
"flate2",
|
|
1873
|
-
"lindera-decompress",
|
|
1874
|
-
]
|
|
1875
|
-
|
|
1876
|
-
[[package]]
|
|
1877
|
-
name = "lindera-core"
|
|
1878
|
-
version = "0.32.3"
|
|
2153
|
+
version = "0.43.3"
|
|
1879
2154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
-
checksum = "
|
|
2155
|
+
checksum = "4efb27e037efbd41fdce30e3771084a46040cdfdbec718425879f8aa7dfa16f2"
|
|
1881
2156
|
dependencies = [
|
|
1882
|
-
"anyhow",
|
|
1883
2157
|
"bincode",
|
|
1884
2158
|
"byteorder",
|
|
1885
|
-
"
|
|
1886
|
-
"log",
|
|
2159
|
+
"lindera-dictionary",
|
|
1887
2160
|
"once_cell",
|
|
1888
|
-
"
|
|
1889
|
-
"thiserror 1.0.69",
|
|
1890
|
-
"yada",
|
|
1891
|
-
]
|
|
1892
|
-
|
|
1893
|
-
[[package]]
|
|
1894
|
-
name = "lindera-decompress"
|
|
1895
|
-
version = "0.32.3"
|
|
1896
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
-
checksum = "9e3faaceb85e43ac250021866c6db3cdc9997b44b3d3ea498594d04edc91fc45"
|
|
1898
|
-
dependencies = [
|
|
1899
|
-
"anyhow",
|
|
1900
|
-
"flate2",
|
|
1901
|
-
"serde",
|
|
2161
|
+
"tokio",
|
|
1902
2162
|
]
|
|
1903
2163
|
|
|
1904
2164
|
[[package]]
|
|
1905
2165
|
name = "lindera-dictionary"
|
|
1906
|
-
version = "0.
|
|
1907
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
-
checksum = "31e15b2d2d8a4ad45f2e373a084931cf3dfbde15f124044e2436bb920af3366c"
|
|
1909
|
-
dependencies = [
|
|
1910
|
-
"anyhow",
|
|
1911
|
-
"bincode",
|
|
1912
|
-
"byteorder",
|
|
1913
|
-
"lindera-cc-cedict",
|
|
1914
|
-
"lindera-cc-cedict-builder",
|
|
1915
|
-
"lindera-core",
|
|
1916
|
-
"lindera-ipadic",
|
|
1917
|
-
"lindera-ipadic-builder",
|
|
1918
|
-
"lindera-ipadic-neologd",
|
|
1919
|
-
"lindera-ipadic-neologd-builder",
|
|
1920
|
-
"lindera-ko-dic",
|
|
1921
|
-
"lindera-ko-dic-builder",
|
|
1922
|
-
"lindera-unidic",
|
|
1923
|
-
"lindera-unidic-builder",
|
|
1924
|
-
"serde",
|
|
1925
|
-
"strum",
|
|
1926
|
-
"strum_macros",
|
|
1927
|
-
]
|
|
1928
|
-
|
|
1929
|
-
[[package]]
|
|
1930
|
-
name = "lindera-dictionary-builder"
|
|
1931
|
-
version = "0.32.3"
|
|
2166
|
+
version = "0.43.3"
|
|
1932
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
-
checksum = "
|
|
2168
|
+
checksum = "4cbb45e81527092e1af24c45bf068376df34faaa9f98d44a99ec59c7edfdb45a"
|
|
1934
2169
|
dependencies = [
|
|
1935
2170
|
"anyhow",
|
|
1936
2171
|
"bincode",
|
|
@@ -1940,182 +2175,83 @@ dependencies = [
|
|
|
1940
2175
|
"encoding",
|
|
1941
2176
|
"encoding_rs",
|
|
1942
2177
|
"encoding_rs_io",
|
|
2178
|
+
"flate2",
|
|
1943
2179
|
"glob",
|
|
1944
|
-
"lindera-compress",
|
|
1945
|
-
"lindera-core",
|
|
1946
|
-
"lindera-decompress",
|
|
1947
2180
|
"log",
|
|
1948
|
-
"
|
|
1949
|
-
]
|
|
1950
|
-
|
|
1951
|
-
[[package]]
|
|
1952
|
-
name = "lindera-filter"
|
|
1953
|
-
version = "0.32.3"
|
|
1954
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
-
checksum = "1320f118c3fc9e897f4ebfc16864e5ef8c0b06ba769c0a50e53f193f9d682bf8"
|
|
1956
|
-
dependencies = [
|
|
1957
|
-
"anyhow",
|
|
1958
|
-
"csv",
|
|
1959
|
-
"kanaria",
|
|
1960
|
-
"lindera-cc-cedict-builder",
|
|
1961
|
-
"lindera-core",
|
|
1962
|
-
"lindera-dictionary",
|
|
1963
|
-
"lindera-ipadic-builder",
|
|
1964
|
-
"lindera-ko-dic-builder",
|
|
1965
|
-
"lindera-unidic-builder",
|
|
2181
|
+
"md5",
|
|
1966
2182
|
"once_cell",
|
|
1967
|
-
"
|
|
2183
|
+
"rand 0.9.2",
|
|
2184
|
+
"reqwest",
|
|
1968
2185
|
"serde",
|
|
1969
|
-
"
|
|
1970
|
-
"
|
|
1971
|
-
"
|
|
1972
|
-
"unicode-segmentation",
|
|
2186
|
+
"tar",
|
|
2187
|
+
"thiserror 2.0.17",
|
|
2188
|
+
"tokio",
|
|
1973
2189
|
"yada",
|
|
1974
2190
|
]
|
|
1975
2191
|
|
|
1976
2192
|
[[package]]
|
|
1977
2193
|
name = "lindera-ipadic"
|
|
1978
|
-
version = "0.
|
|
2194
|
+
version = "0.43.3"
|
|
1979
2195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
-
checksum = "
|
|
2196
|
+
checksum = "447887ebb06c9faf7e9b41c03b491ae3e12aca2c0e119a865b682863a1b538aa"
|
|
1981
2197
|
dependencies = [
|
|
1982
2198
|
"bincode",
|
|
1983
2199
|
"byteorder",
|
|
1984
|
-
"lindera-
|
|
1985
|
-
"lindera-decompress",
|
|
1986
|
-
"lindera-ipadic-builder",
|
|
2200
|
+
"lindera-dictionary",
|
|
1987
2201
|
"once_cell",
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
[[package]]
|
|
1991
|
-
name = "lindera-ipadic-builder"
|
|
1992
|
-
version = "0.32.3"
|
|
1993
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
-
checksum = "309966c12e682f67205c3cd3c8dc55bbdcd1eb3b5c7c5cb41fb8acd18906d340"
|
|
1995
|
-
dependencies = [
|
|
1996
|
-
"anyhow",
|
|
1997
|
-
"lindera-core",
|
|
1998
|
-
"lindera-decompress",
|
|
1999
|
-
"lindera-dictionary-builder",
|
|
2202
|
+
"tokio",
|
|
2000
2203
|
]
|
|
2001
2204
|
|
|
2002
2205
|
[[package]]
|
|
2003
2206
|
name = "lindera-ipadic-neologd"
|
|
2004
|
-
version = "0.
|
|
2207
|
+
version = "0.43.3"
|
|
2005
2208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
-
checksum = "
|
|
2209
|
+
checksum = "8da7829c17dee5b1068f241c1989f83a2d98307ed5d3b87fcc91bd06b7a7b44e"
|
|
2007
2210
|
dependencies = [
|
|
2008
2211
|
"bincode",
|
|
2009
2212
|
"byteorder",
|
|
2010
|
-
"lindera-
|
|
2011
|
-
"lindera-decompress",
|
|
2012
|
-
"lindera-ipadic-neologd-builder",
|
|
2213
|
+
"lindera-dictionary",
|
|
2013
2214
|
"once_cell",
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
[[package]]
|
|
2017
|
-
name = "lindera-ipadic-neologd-builder"
|
|
2018
|
-
version = "0.32.3"
|
|
2019
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
-
checksum = "7e517df0d501f9f8bf3126da20fc8cb9a5e37921e0eec1824d7a62f096463e02"
|
|
2021
|
-
dependencies = [
|
|
2022
|
-
"anyhow",
|
|
2023
|
-
"lindera-core",
|
|
2024
|
-
"lindera-decompress",
|
|
2025
|
-
"lindera-dictionary-builder",
|
|
2215
|
+
"tokio",
|
|
2026
2216
|
]
|
|
2027
2217
|
|
|
2028
2218
|
[[package]]
|
|
2029
2219
|
name = "lindera-ko-dic"
|
|
2030
|
-
version = "0.
|
|
2220
|
+
version = "0.43.3"
|
|
2031
2221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
-
checksum = "
|
|
2222
|
+
checksum = "8dc88354c6f8fbdeb7aa3d44673eb0ca03b7ad6e8d4edb62332604bb7806d17b"
|
|
2033
2223
|
dependencies = [
|
|
2034
2224
|
"bincode",
|
|
2035
2225
|
"byteorder",
|
|
2036
|
-
"lindera-assets",
|
|
2037
|
-
"lindera-core",
|
|
2038
|
-
"lindera-decompress",
|
|
2039
|
-
"lindera-ko-dic-builder",
|
|
2040
|
-
"once_cell",
|
|
2041
|
-
]
|
|
2042
|
-
|
|
2043
|
-
[[package]]
|
|
2044
|
-
name = "lindera-ko-dic-builder"
|
|
2045
|
-
version = "0.32.3"
|
|
2046
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
-
checksum = "afc95884cc8f6dfb176caf5991043a4acf94c359215bbd039ea765e00454f271"
|
|
2048
|
-
dependencies = [
|
|
2049
|
-
"anyhow",
|
|
2050
|
-
"lindera-core",
|
|
2051
|
-
"lindera-decompress",
|
|
2052
|
-
"lindera-dictionary-builder",
|
|
2053
|
-
]
|
|
2054
|
-
|
|
2055
|
-
[[package]]
|
|
2056
|
-
name = "lindera-tokenizer"
|
|
2057
|
-
version = "0.32.3"
|
|
2058
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
|
-
checksum = "d122042e1232a55c3604692445952a134e523822e9b4b9ab32a53ff890037ad4"
|
|
2060
|
-
dependencies = [
|
|
2061
|
-
"bincode",
|
|
2062
|
-
"lindera-core",
|
|
2063
2226
|
"lindera-dictionary",
|
|
2064
2227
|
"once_cell",
|
|
2065
|
-
"
|
|
2066
|
-
"serde_json",
|
|
2228
|
+
"tokio",
|
|
2067
2229
|
]
|
|
2068
2230
|
|
|
2069
2231
|
[[package]]
|
|
2070
2232
|
name = "lindera-unidic"
|
|
2071
|
-
version = "0.
|
|
2233
|
+
version = "0.43.3"
|
|
2072
2234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
-
checksum = "
|
|
2235
|
+
checksum = "4cf374587e0202193c73f443cb0ba0d34ff0013949b2355aeeeb0f840679681e"
|
|
2074
2236
|
dependencies = [
|
|
2075
2237
|
"bincode",
|
|
2076
2238
|
"byteorder",
|
|
2077
|
-
"lindera-
|
|
2078
|
-
"lindera-core",
|
|
2079
|
-
"lindera-decompress",
|
|
2080
|
-
"lindera-unidic-builder",
|
|
2239
|
+
"lindera-dictionary",
|
|
2081
2240
|
"once_cell",
|
|
2241
|
+
"tokio",
|
|
2082
2242
|
]
|
|
2083
2243
|
|
|
2084
|
-
[[package]]
|
|
2085
|
-
name = "lindera-unidic-builder"
|
|
2086
|
-
version = "0.32.3"
|
|
2087
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
-
checksum = "fe50055327712ebd1bcc74b657cf78c728a78b9586e3f99d5dd0b6a0be221c5d"
|
|
2089
|
-
dependencies = [
|
|
2090
|
-
"anyhow",
|
|
2091
|
-
"lindera-core",
|
|
2092
|
-
"lindera-decompress",
|
|
2093
|
-
"lindera-dictionary-builder",
|
|
2094
|
-
]
|
|
2095
|
-
|
|
2096
|
-
[[package]]
|
|
2097
|
-
name = "linked-hash-map"
|
|
2098
|
-
version = "0.5.6"
|
|
2099
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
-
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
2101
|
-
|
|
2102
|
-
[[package]]
|
|
2103
|
-
name = "linux-raw-sys"
|
|
2104
|
-
version = "0.4.15"
|
|
2105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
-
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2107
|
-
|
|
2108
2244
|
[[package]]
|
|
2109
2245
|
name = "linux-raw-sys"
|
|
2110
|
-
version = "0.9.
|
|
2246
|
+
version = "0.9.4"
|
|
2111
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
-
checksum = "
|
|
2248
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
2113
2249
|
|
|
2114
2250
|
[[package]]
|
|
2115
2251
|
name = "litemap"
|
|
2116
|
-
version = "0.
|
|
2252
|
+
version = "0.8.0"
|
|
2117
2253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
-
checksum = "
|
|
2254
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
2119
2255
|
|
|
2120
2256
|
[[package]]
|
|
2121
2257
|
name = "local-channel"
|
|
@@ -2136,9 +2272,9 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
|
|
|
2136
2272
|
|
|
2137
2273
|
[[package]]
|
|
2138
2274
|
name = "lock_api"
|
|
2139
|
-
version = "0.4.
|
|
2275
|
+
version = "0.4.13"
|
|
2140
2276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
-
checksum = "
|
|
2277
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
2142
2278
|
dependencies = [
|
|
2143
2279
|
"autocfg",
|
|
2144
2280
|
"scopeguard",
|
|
@@ -2146,9 +2282,9 @@ dependencies = [
|
|
|
2146
2282
|
|
|
2147
2283
|
[[package]]
|
|
2148
2284
|
name = "log"
|
|
2149
|
-
version = "0.4.
|
|
2285
|
+
version = "0.4.27"
|
|
2150
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
-
checksum = "
|
|
2287
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
2152
2288
|
|
|
2153
2289
|
[[package]]
|
|
2154
2290
|
name = "lru"
|
|
@@ -2156,14 +2292,29 @@ version = "0.12.5"
|
|
|
2156
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
2293
|
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
2158
2294
|
dependencies = [
|
|
2159
|
-
"hashbrown 0.15.
|
|
2295
|
+
"hashbrown 0.15.5",
|
|
2296
|
+
]
|
|
2297
|
+
|
|
2298
|
+
[[package]]
|
|
2299
|
+
name = "lru"
|
|
2300
|
+
version = "0.16.2"
|
|
2301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2302
|
+
checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f"
|
|
2303
|
+
dependencies = [
|
|
2304
|
+
"hashbrown 0.16.0",
|
|
2160
2305
|
]
|
|
2161
2306
|
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "lru-slab"
|
|
2309
|
+
version = "0.1.2"
|
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
2312
|
+
|
|
2162
2313
|
[[package]]
|
|
2163
2314
|
name = "lz4_flex"
|
|
2164
|
-
version = "0.11.
|
|
2315
|
+
version = "0.11.5"
|
|
2165
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
-
checksum = "
|
|
2317
|
+
checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
|
|
2167
2318
|
|
|
2168
2319
|
[[package]]
|
|
2169
2320
|
name = "map-macro"
|
|
@@ -2171,27 +2322,32 @@ version = "0.3.0"
|
|
|
2171
2322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
2323
|
checksum = "fb950a42259642e5a3483115aca87eebed2a64886993463af9c9739c205b8d3a"
|
|
2173
2324
|
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "md5"
|
|
2327
|
+
version = "0.7.0"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
2330
|
+
|
|
2174
2331
|
[[package]]
|
|
2175
2332
|
name = "measure_time"
|
|
2176
|
-
version = "0.
|
|
2333
|
+
version = "0.9.0"
|
|
2177
2334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
-
checksum = "
|
|
2335
|
+
checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e"
|
|
2179
2336
|
dependencies = [
|
|
2180
|
-
"instant",
|
|
2181
2337
|
"log",
|
|
2182
2338
|
]
|
|
2183
2339
|
|
|
2184
2340
|
[[package]]
|
|
2185
2341
|
name = "memchr"
|
|
2186
|
-
version = "2.7.
|
|
2342
|
+
version = "2.7.5"
|
|
2187
2343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
-
checksum = "
|
|
2344
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
2189
2345
|
|
|
2190
2346
|
[[package]]
|
|
2191
2347
|
name = "memmap2"
|
|
2192
|
-
version = "0.9.
|
|
2348
|
+
version = "0.9.8"
|
|
2193
2349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
-
checksum = "
|
|
2350
|
+
checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
|
|
2195
2351
|
dependencies = [
|
|
2196
2352
|
"libc",
|
|
2197
2353
|
]
|
|
@@ -2207,9 +2363,9 @@ dependencies = [
|
|
|
2207
2363
|
|
|
2208
2364
|
[[package]]
|
|
2209
2365
|
name = "merge"
|
|
2210
|
-
version = "0.
|
|
2366
|
+
version = "0.2.0"
|
|
2211
2367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
-
checksum = "
|
|
2368
|
+
checksum = "56e520ba58faea3487f75df198b1d079644ec226ea3b0507d002c6fa4b8cf93a"
|
|
2213
2369
|
dependencies = [
|
|
2214
2370
|
"merge_derive",
|
|
2215
2371
|
"num-traits",
|
|
@@ -2217,14 +2373,14 @@ dependencies = [
|
|
|
2217
2373
|
|
|
2218
2374
|
[[package]]
|
|
2219
2375
|
name = "merge_derive"
|
|
2220
|
-
version = "0.
|
|
2376
|
+
version = "0.2.0"
|
|
2221
2377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
-
checksum = "
|
|
2378
|
+
checksum = "5c8f8ce6efff81cbc83caf4af0905c46e58cb46892f63ad3835e81b47eaf7968"
|
|
2223
2379
|
dependencies = [
|
|
2224
|
-
"proc-macro-
|
|
2380
|
+
"proc-macro-error2",
|
|
2225
2381
|
"proc-macro2",
|
|
2226
2382
|
"quote",
|
|
2227
|
-
"syn
|
|
2383
|
+
"syn 2.0.106",
|
|
2228
2384
|
]
|
|
2229
2385
|
|
|
2230
2386
|
[[package]]
|
|
@@ -2241,43 +2397,43 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2241
2397
|
|
|
2242
2398
|
[[package]]
|
|
2243
2399
|
name = "miniz_oxide"
|
|
2244
|
-
version = "0.8.
|
|
2400
|
+
version = "0.8.9"
|
|
2245
2401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
-
checksum = "
|
|
2402
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2247
2403
|
dependencies = [
|
|
2248
2404
|
"adler2",
|
|
2249
2405
|
]
|
|
2250
2406
|
|
|
2251
2407
|
[[package]]
|
|
2252
2408
|
name = "mio"
|
|
2253
|
-
version = "1.0.
|
|
2409
|
+
version = "1.0.4"
|
|
2254
2410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
-
checksum = "
|
|
2411
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
2256
2412
|
dependencies = [
|
|
2257
2413
|
"libc",
|
|
2258
2414
|
"log",
|
|
2259
|
-
"wasi 0.11.
|
|
2260
|
-
"windows-sys 0.
|
|
2415
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
2416
|
+
"windows-sys 0.59.0",
|
|
2261
2417
|
]
|
|
2262
2418
|
|
|
2263
2419
|
[[package]]
|
|
2264
2420
|
name = "munge"
|
|
2265
|
-
version = "0.4.
|
|
2421
|
+
version = "0.4.6"
|
|
2266
2422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
-
checksum = "
|
|
2423
|
+
checksum = "d7feb0b48aa0a25f9fe0899482c6e1379ee7a11b24a53073eacdecb9adb6dc60"
|
|
2268
2424
|
dependencies = [
|
|
2269
2425
|
"munge_macro",
|
|
2270
2426
|
]
|
|
2271
2427
|
|
|
2272
2428
|
[[package]]
|
|
2273
2429
|
name = "munge_macro"
|
|
2274
|
-
version = "0.4.
|
|
2430
|
+
version = "0.4.6"
|
|
2275
2431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
-
checksum = "
|
|
2432
|
+
checksum = "f2e3795a5d2da581a8b252fec6022eee01aea10161a4d1bf237d4cbe47f7e988"
|
|
2277
2433
|
dependencies = [
|
|
2278
2434
|
"proc-macro2",
|
|
2279
2435
|
"quote",
|
|
2280
|
-
"syn 2.0.
|
|
2436
|
+
"syn 2.0.106",
|
|
2281
2437
|
]
|
|
2282
2438
|
|
|
2283
2439
|
[[package]]
|
|
@@ -2288,61 +2444,67 @@ checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
|
|
|
2288
2444
|
|
|
2289
2445
|
[[package]]
|
|
2290
2446
|
name = "napi"
|
|
2291
|
-
version = "
|
|
2447
|
+
version = "3.3.0"
|
|
2292
2448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
-
checksum = "
|
|
2449
|
+
checksum = "f1b74e3dce5230795bb4d2821b941706dee733c7308752507254b0497f39cad7"
|
|
2294
2450
|
dependencies = [
|
|
2295
|
-
"bitflags 2.9.
|
|
2451
|
+
"bitflags 2.9.4",
|
|
2296
2452
|
"ctor",
|
|
2297
|
-
"napi-
|
|
2453
|
+
"napi-build",
|
|
2298
2454
|
"napi-sys",
|
|
2299
|
-
"
|
|
2455
|
+
"nohash-hasher",
|
|
2456
|
+
"rustc-hash",
|
|
2457
|
+
"tokio",
|
|
2300
2458
|
]
|
|
2301
2459
|
|
|
2302
2460
|
[[package]]
|
|
2303
2461
|
name = "napi-build"
|
|
2304
|
-
version = "2.
|
|
2462
|
+
version = "2.2.3"
|
|
2305
2463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
-
checksum = "
|
|
2464
|
+
checksum = "dcae8ad5609d14afb3a3b91dee88c757016261b151e9dcecabf1b2a31a6cab14"
|
|
2307
2465
|
|
|
2308
2466
|
[[package]]
|
|
2309
2467
|
name = "napi-derive"
|
|
2310
|
-
version = "2.
|
|
2468
|
+
version = "3.2.5"
|
|
2311
2469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
-
checksum = "
|
|
2470
|
+
checksum = "7552d5a579b834614bbd496db5109f1b9f1c758f08224b0dee1e408333adf0d0"
|
|
2313
2471
|
dependencies = [
|
|
2314
|
-
"cfg-if",
|
|
2315
2472
|
"convert_case",
|
|
2473
|
+
"ctor",
|
|
2316
2474
|
"napi-derive-backend",
|
|
2317
2475
|
"proc-macro2",
|
|
2318
2476
|
"quote",
|
|
2319
|
-
"syn 2.0.
|
|
2477
|
+
"syn 2.0.106",
|
|
2320
2478
|
]
|
|
2321
2479
|
|
|
2322
2480
|
[[package]]
|
|
2323
2481
|
name = "napi-derive-backend"
|
|
2324
|
-
version = "
|
|
2482
|
+
version = "2.2.0"
|
|
2325
2483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
-
checksum = "
|
|
2484
|
+
checksum = "5f6a81ac7486b70f2532a289603340862c06eea5a1e650c1ffeda2ce1238516a"
|
|
2327
2485
|
dependencies = [
|
|
2328
2486
|
"convert_case",
|
|
2329
|
-
"once_cell",
|
|
2330
2487
|
"proc-macro2",
|
|
2331
2488
|
"quote",
|
|
2332
|
-
"regex",
|
|
2333
2489
|
"semver",
|
|
2334
|
-
"syn 2.0.
|
|
2490
|
+
"syn 2.0.106",
|
|
2335
2491
|
]
|
|
2336
2492
|
|
|
2337
2493
|
[[package]]
|
|
2338
2494
|
name = "napi-sys"
|
|
2339
|
-
version = "
|
|
2495
|
+
version = "3.0.0"
|
|
2340
2496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2497
|
+
checksum = "3e4e7135a8f97aa0f1509cce21a8a1f9dcec1b50d8dee006b48a5adb69a9d64d"
|
|
2342
2498
|
dependencies = [
|
|
2343
2499
|
"libloading",
|
|
2344
2500
|
]
|
|
2345
2501
|
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "nohash-hasher"
|
|
2504
|
+
version = "0.2.0"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
2507
|
+
|
|
2346
2508
|
[[package]]
|
|
2347
2509
|
name = "nom"
|
|
2348
2510
|
version = "7.1.3"
|
|
@@ -2381,98 +2543,106 @@ dependencies = [
|
|
|
2381
2543
|
|
|
2382
2544
|
[[package]]
|
|
2383
2545
|
name = "num_cpus"
|
|
2384
|
-
version = "1.
|
|
2546
|
+
version = "1.17.0"
|
|
2385
2547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2386
|
-
checksum = "
|
|
2548
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
2387
2549
|
dependencies = [
|
|
2388
|
-
"hermit-abi
|
|
2550
|
+
"hermit-abi",
|
|
2389
2551
|
"libc",
|
|
2390
2552
|
]
|
|
2391
2553
|
|
|
2392
|
-
[[package]]
|
|
2393
|
-
name = "number_prefix"
|
|
2394
|
-
version = "0.4.0"
|
|
2395
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
-
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
2397
|
-
|
|
2398
|
-
[[package]]
|
|
2399
|
-
name = "object"
|
|
2400
|
-
version = "0.36.7"
|
|
2401
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2402
|
-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2403
|
-
dependencies = [
|
|
2404
|
-
"memchr",
|
|
2405
|
-
]
|
|
2406
|
-
|
|
2407
2554
|
[[package]]
|
|
2408
2555
|
name = "odict"
|
|
2409
|
-
version = "
|
|
2556
|
+
version = "3.0.0"
|
|
2410
2557
|
dependencies = [
|
|
2411
2558
|
"brotli",
|
|
2412
2559
|
"byteorder",
|
|
2413
2560
|
"charabia",
|
|
2414
2561
|
"criterion",
|
|
2415
2562
|
"dirs",
|
|
2563
|
+
"futures-util",
|
|
2416
2564
|
"insta",
|
|
2417
2565
|
"map-macro",
|
|
2418
2566
|
"pulldown-cmark",
|
|
2419
2567
|
"quick-xml",
|
|
2420
2568
|
"rayon",
|
|
2421
2569
|
"regex",
|
|
2570
|
+
"reqwest",
|
|
2571
|
+
"reqwest-middleware",
|
|
2572
|
+
"reqwest-retry",
|
|
2422
2573
|
"rkyv",
|
|
2423
2574
|
"sea-query",
|
|
2424
2575
|
"serde",
|
|
2425
2576
|
"serde_json",
|
|
2577
|
+
"structural-convert",
|
|
2578
|
+
"strum",
|
|
2426
2579
|
"tantivy",
|
|
2427
2580
|
"tempfile",
|
|
2428
|
-
"thiserror 2.0.
|
|
2581
|
+
"thiserror 2.0.17",
|
|
2582
|
+
"tokio",
|
|
2583
|
+
"url",
|
|
2429
2584
|
"uuid",
|
|
2430
|
-
"
|
|
2585
|
+
"wiremock",
|
|
2431
2586
|
]
|
|
2432
2587
|
|
|
2433
2588
|
[[package]]
|
|
2434
2589
|
name = "odict-cli"
|
|
2435
|
-
version = "
|
|
2590
|
+
version = "3.0.0"
|
|
2436
2591
|
dependencies = [
|
|
2437
2592
|
"actix-web",
|
|
2438
2593
|
"anyhow",
|
|
2439
2594
|
"clap",
|
|
2440
|
-
"console",
|
|
2595
|
+
"console 0.16.1",
|
|
2441
2596
|
"derive_more",
|
|
2442
2597
|
"env_logger",
|
|
2443
|
-
"humansize",
|
|
2444
2598
|
"indicatif",
|
|
2599
|
+
"internal",
|
|
2600
|
+
"lru 0.16.2",
|
|
2445
2601
|
"num-format",
|
|
2446
2602
|
"odict",
|
|
2447
2603
|
"pulldown-cmark",
|
|
2448
2604
|
"serde",
|
|
2605
|
+
"tokio",
|
|
2449
2606
|
]
|
|
2450
2607
|
|
|
2451
2608
|
[[package]]
|
|
2452
2609
|
name = "odict_node"
|
|
2453
|
-
version = "
|
|
2610
|
+
version = "1.1.1"
|
|
2454
2611
|
dependencies = [
|
|
2612
|
+
"internal",
|
|
2455
2613
|
"merge",
|
|
2456
2614
|
"napi",
|
|
2457
2615
|
"napi-build",
|
|
2458
2616
|
"napi-derive",
|
|
2459
2617
|
"odict",
|
|
2618
|
+
"structural-convert",
|
|
2460
2619
|
]
|
|
2461
2620
|
|
|
2462
2621
|
[[package]]
|
|
2463
2622
|
name = "odict_python"
|
|
2464
|
-
version = "
|
|
2623
|
+
version = "2.0.0"
|
|
2465
2624
|
dependencies = [
|
|
2466
2625
|
"either",
|
|
2626
|
+
"internal",
|
|
2627
|
+
"merge",
|
|
2467
2628
|
"odict",
|
|
2468
2629
|
"pyo3",
|
|
2630
|
+
"pyo3-async-runtimes",
|
|
2631
|
+
"structural-convert",
|
|
2632
|
+
"tokio",
|
|
2469
2633
|
]
|
|
2470
2634
|
|
|
2471
2635
|
[[package]]
|
|
2472
2636
|
name = "once_cell"
|
|
2473
|
-
version = "1.21.
|
|
2637
|
+
version = "1.21.3"
|
|
2474
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
-
checksum = "
|
|
2639
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2640
|
+
|
|
2641
|
+
[[package]]
|
|
2642
|
+
name = "once_cell_polyfill"
|
|
2643
|
+
version = "1.70.1"
|
|
2644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
2476
2646
|
|
|
2477
2647
|
[[package]]
|
|
2478
2648
|
name = "oneshot"
|
|
@@ -2493,42 +2663,67 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2493
2663
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2494
2664
|
|
|
2495
2665
|
[[package]]
|
|
2496
|
-
name = "ownedbytes"
|
|
2497
|
-
version = "0.
|
|
2666
|
+
name = "ownedbytes"
|
|
2667
|
+
version = "0.9.0"
|
|
2668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
+
checksum = "2fbd56f7631767e61784dc43f8580f403f4475bd4aaa4da003e6295e1bab4a7e"
|
|
2670
|
+
dependencies = [
|
|
2671
|
+
"stable_deref_trait",
|
|
2672
|
+
]
|
|
2673
|
+
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "parking_lot"
|
|
2676
|
+
version = "0.11.2"
|
|
2498
2677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
-
checksum = "
|
|
2678
|
+
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
|
2500
2679
|
dependencies = [
|
|
2501
|
-
"
|
|
2680
|
+
"instant",
|
|
2681
|
+
"lock_api",
|
|
2682
|
+
"parking_lot_core 0.8.6",
|
|
2502
2683
|
]
|
|
2503
2684
|
|
|
2504
2685
|
[[package]]
|
|
2505
2686
|
name = "parking_lot"
|
|
2506
|
-
version = "0.12.
|
|
2687
|
+
version = "0.12.4"
|
|
2507
2688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
-
checksum = "
|
|
2689
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
|
2509
2690
|
dependencies = [
|
|
2510
2691
|
"lock_api",
|
|
2511
|
-
"parking_lot_core",
|
|
2692
|
+
"parking_lot_core 0.9.11",
|
|
2693
|
+
]
|
|
2694
|
+
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "parking_lot_core"
|
|
2697
|
+
version = "0.8.6"
|
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
+
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
|
2700
|
+
dependencies = [
|
|
2701
|
+
"cfg-if",
|
|
2702
|
+
"instant",
|
|
2703
|
+
"libc",
|
|
2704
|
+
"redox_syscall 0.2.16",
|
|
2705
|
+
"smallvec",
|
|
2706
|
+
"winapi",
|
|
2512
2707
|
]
|
|
2513
2708
|
|
|
2514
2709
|
[[package]]
|
|
2515
2710
|
name = "parking_lot_core"
|
|
2516
|
-
version = "0.9.
|
|
2711
|
+
version = "0.9.11"
|
|
2517
2712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
|
-
checksum = "
|
|
2713
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
2519
2714
|
dependencies = [
|
|
2520
2715
|
"cfg-if",
|
|
2521
2716
|
"libc",
|
|
2522
|
-
"redox_syscall",
|
|
2717
|
+
"redox_syscall 0.5.17",
|
|
2523
2718
|
"smallvec",
|
|
2524
|
-
"windows-targets",
|
|
2719
|
+
"windows-targets 0.52.6",
|
|
2525
2720
|
]
|
|
2526
2721
|
|
|
2527
2722
|
[[package]]
|
|
2528
2723
|
name = "percent-encoding"
|
|
2529
|
-
version = "2.3.
|
|
2724
|
+
version = "2.3.2"
|
|
2530
2725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
-
checksum = "
|
|
2726
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2532
2727
|
|
|
2533
2728
|
[[package]]
|
|
2534
2729
|
name = "phf"
|
|
@@ -2568,26 +2763,6 @@ dependencies = [
|
|
|
2568
2763
|
"siphasher",
|
|
2569
2764
|
]
|
|
2570
2765
|
|
|
2571
|
-
[[package]]
|
|
2572
|
-
name = "pin-project"
|
|
2573
|
-
version = "1.1.10"
|
|
2574
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
-
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2576
|
-
dependencies = [
|
|
2577
|
-
"pin-project-internal",
|
|
2578
|
-
]
|
|
2579
|
-
|
|
2580
|
-
[[package]]
|
|
2581
|
-
name = "pin-project-internal"
|
|
2582
|
-
version = "1.1.10"
|
|
2583
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
-
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2585
|
-
dependencies = [
|
|
2586
|
-
"proc-macro2",
|
|
2587
|
-
"quote",
|
|
2588
|
-
"syn 2.0.100",
|
|
2589
|
-
]
|
|
2590
|
-
|
|
2591
2766
|
[[package]]
|
|
2592
2767
|
name = "pin-project-lite"
|
|
2593
2768
|
version = "0.2.16"
|
|
@@ -2636,9 +2811,9 @@ dependencies = [
|
|
|
2636
2811
|
|
|
2637
2812
|
[[package]]
|
|
2638
2813
|
name = "portable-atomic"
|
|
2639
|
-
version = "1.11.
|
|
2814
|
+
version = "1.11.1"
|
|
2640
2815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2641
|
-
checksum = "
|
|
2816
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
2642
2817
|
|
|
2643
2818
|
[[package]]
|
|
2644
2819
|
name = "portable-atomic-util"
|
|
@@ -2649,6 +2824,15 @@ dependencies = [
|
|
|
2649
2824
|
"portable-atomic",
|
|
2650
2825
|
]
|
|
2651
2826
|
|
|
2827
|
+
[[package]]
|
|
2828
|
+
name = "potential_utf"
|
|
2829
|
+
version = "0.1.3"
|
|
2830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2831
|
+
checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
|
|
2832
|
+
dependencies = [
|
|
2833
|
+
"zerovec",
|
|
2834
|
+
]
|
|
2835
|
+
|
|
2652
2836
|
[[package]]
|
|
2653
2837
|
name = "powerfmt"
|
|
2654
2838
|
version = "0.2.0"
|
|
@@ -2661,7 +2845,17 @@ version = "0.2.21"
|
|
|
2661
2845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
2846
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2663
2847
|
dependencies = [
|
|
2664
|
-
"zerocopy
|
|
2848
|
+
"zerocopy",
|
|
2849
|
+
]
|
|
2850
|
+
|
|
2851
|
+
[[package]]
|
|
2852
|
+
name = "prettyplease"
|
|
2853
|
+
version = "0.2.37"
|
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2856
|
+
dependencies = [
|
|
2857
|
+
"proc-macro2",
|
|
2858
|
+
"syn 2.0.106",
|
|
2665
2859
|
]
|
|
2666
2860
|
|
|
2667
2861
|
[[package]]
|
|
@@ -2688,11 +2882,33 @@ dependencies = [
|
|
|
2688
2882
|
"version_check",
|
|
2689
2883
|
]
|
|
2690
2884
|
|
|
2885
|
+
[[package]]
|
|
2886
|
+
name = "proc-macro-error-attr2"
|
|
2887
|
+
version = "2.0.0"
|
|
2888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2889
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
2890
|
+
dependencies = [
|
|
2891
|
+
"proc-macro2",
|
|
2892
|
+
"quote",
|
|
2893
|
+
]
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "proc-macro-error2"
|
|
2897
|
+
version = "2.0.1"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
2900
|
+
dependencies = [
|
|
2901
|
+
"proc-macro-error-attr2",
|
|
2902
|
+
"proc-macro2",
|
|
2903
|
+
"quote",
|
|
2904
|
+
"syn 2.0.106",
|
|
2905
|
+
]
|
|
2906
|
+
|
|
2691
2907
|
[[package]]
|
|
2692
2908
|
name = "proc-macro2"
|
|
2693
|
-
version = "1.0.
|
|
2909
|
+
version = "1.0.101"
|
|
2694
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2695
|
-
checksum = "
|
|
2911
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
2696
2912
|
dependencies = [
|
|
2697
2913
|
"unicode-ident",
|
|
2698
2914
|
]
|
|
@@ -2714,7 +2930,7 @@ checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1"
|
|
|
2714
2930
|
dependencies = [
|
|
2715
2931
|
"proc-macro2",
|
|
2716
2932
|
"quote",
|
|
2717
|
-
"syn 2.0.
|
|
2933
|
+
"syn 2.0.106",
|
|
2718
2934
|
]
|
|
2719
2935
|
|
|
2720
2936
|
[[package]]
|
|
@@ -2723,7 +2939,7 @@ version = "0.13.0"
|
|
|
2723
2939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
2940
|
checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
|
|
2725
2941
|
dependencies = [
|
|
2726
|
-
"bitflags 2.9.
|
|
2942
|
+
"bitflags 2.9.4",
|
|
2727
2943
|
"getopts",
|
|
2728
2944
|
"memchr",
|
|
2729
2945
|
"pulldown-cmark-escape",
|
|
@@ -2738,11 +2954,10 @@ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
|
|
|
2738
2954
|
|
|
2739
2955
|
[[package]]
|
|
2740
2956
|
name = "pyo3"
|
|
2741
|
-
version = "0.
|
|
2957
|
+
version = "0.26.0"
|
|
2742
2958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
-
checksum = "
|
|
2959
|
+
checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
|
|
2744
2960
|
dependencies = [
|
|
2745
|
-
"cfg-if",
|
|
2746
2961
|
"either",
|
|
2747
2962
|
"indoc",
|
|
2748
2963
|
"libc",
|
|
@@ -2756,20 +2971,44 @@ dependencies = [
|
|
|
2756
2971
|
]
|
|
2757
2972
|
|
|
2758
2973
|
[[package]]
|
|
2759
|
-
name = "pyo3-
|
|
2760
|
-
version = "0.
|
|
2974
|
+
name = "pyo3-async-runtimes"
|
|
2975
|
+
version = "0.26.0"
|
|
2761
2976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
-
checksum = "
|
|
2977
|
+
checksum = "e6ee6d4cb3e8d5b925f5cdb38da183e0ff18122eb2048d4041c9e7034d026e23"
|
|
2763
2978
|
dependencies = [
|
|
2979
|
+
"futures",
|
|
2764
2980
|
"once_cell",
|
|
2981
|
+
"pin-project-lite",
|
|
2982
|
+
"pyo3",
|
|
2983
|
+
"pyo3-async-runtimes-macros",
|
|
2984
|
+
"tokio",
|
|
2985
|
+
]
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "pyo3-async-runtimes-macros"
|
|
2989
|
+
version = "0.26.0"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "c29bc5c673e36a8102d0b9179149c1bb59990d8db4f3ae58bd7dceccab90b951"
|
|
2992
|
+
dependencies = [
|
|
2993
|
+
"proc-macro2",
|
|
2994
|
+
"quote",
|
|
2995
|
+
"syn 2.0.106",
|
|
2996
|
+
]
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "pyo3-build-config"
|
|
3000
|
+
version = "0.26.0"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
|
|
3003
|
+
dependencies = [
|
|
2765
3004
|
"target-lexicon",
|
|
2766
3005
|
]
|
|
2767
3006
|
|
|
2768
3007
|
[[package]]
|
|
2769
3008
|
name = "pyo3-ffi"
|
|
2770
|
-
version = "0.
|
|
3009
|
+
version = "0.26.0"
|
|
2771
3010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2772
|
-
checksum = "
|
|
3011
|
+
checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
|
|
2773
3012
|
dependencies = [
|
|
2774
3013
|
"libc",
|
|
2775
3014
|
"pyo3-build-config",
|
|
@@ -2777,39 +3016,94 @@ dependencies = [
|
|
|
2777
3016
|
|
|
2778
3017
|
[[package]]
|
|
2779
3018
|
name = "pyo3-macros"
|
|
2780
|
-
version = "0.
|
|
3019
|
+
version = "0.26.0"
|
|
2781
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
-
checksum = "
|
|
3021
|
+
checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
|
|
2783
3022
|
dependencies = [
|
|
2784
3023
|
"proc-macro2",
|
|
2785
3024
|
"pyo3-macros-backend",
|
|
2786
3025
|
"quote",
|
|
2787
|
-
"syn 2.0.
|
|
3026
|
+
"syn 2.0.106",
|
|
2788
3027
|
]
|
|
2789
3028
|
|
|
2790
3029
|
[[package]]
|
|
2791
3030
|
name = "pyo3-macros-backend"
|
|
2792
|
-
version = "0.
|
|
3031
|
+
version = "0.26.0"
|
|
2793
3032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
-
checksum = "
|
|
3033
|
+
checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
|
|
2795
3034
|
dependencies = [
|
|
2796
3035
|
"heck 0.5.0",
|
|
2797
3036
|
"proc-macro2",
|
|
2798
3037
|
"pyo3-build-config",
|
|
2799
3038
|
"quote",
|
|
2800
|
-
"syn 2.0.
|
|
3039
|
+
"syn 2.0.106",
|
|
2801
3040
|
]
|
|
2802
3041
|
|
|
2803
3042
|
[[package]]
|
|
2804
3043
|
name = "quick-xml"
|
|
2805
|
-
version = "0.
|
|
3044
|
+
version = "0.38.3"
|
|
2806
3045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2807
|
-
checksum = "
|
|
3046
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
|
2808
3047
|
dependencies = [
|
|
2809
3048
|
"memchr",
|
|
2810
3049
|
"serde",
|
|
2811
3050
|
]
|
|
2812
3051
|
|
|
3052
|
+
[[package]]
|
|
3053
|
+
name = "quinn"
|
|
3054
|
+
version = "0.11.9"
|
|
3055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3056
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
3057
|
+
dependencies = [
|
|
3058
|
+
"bytes",
|
|
3059
|
+
"cfg_aliases",
|
|
3060
|
+
"pin-project-lite",
|
|
3061
|
+
"quinn-proto",
|
|
3062
|
+
"quinn-udp",
|
|
3063
|
+
"rustc-hash",
|
|
3064
|
+
"rustls",
|
|
3065
|
+
"socket2 0.5.10",
|
|
3066
|
+
"thiserror 2.0.17",
|
|
3067
|
+
"tokio",
|
|
3068
|
+
"tracing",
|
|
3069
|
+
"web-time",
|
|
3070
|
+
]
|
|
3071
|
+
|
|
3072
|
+
[[package]]
|
|
3073
|
+
name = "quinn-proto"
|
|
3074
|
+
version = "0.11.13"
|
|
3075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
3077
|
+
dependencies = [
|
|
3078
|
+
"bytes",
|
|
3079
|
+
"getrandom 0.3.3",
|
|
3080
|
+
"lru-slab",
|
|
3081
|
+
"rand 0.9.2",
|
|
3082
|
+
"ring",
|
|
3083
|
+
"rustc-hash",
|
|
3084
|
+
"rustls",
|
|
3085
|
+
"rustls-pki-types",
|
|
3086
|
+
"slab",
|
|
3087
|
+
"thiserror 2.0.17",
|
|
3088
|
+
"tinyvec",
|
|
3089
|
+
"tracing",
|
|
3090
|
+
"web-time",
|
|
3091
|
+
]
|
|
3092
|
+
|
|
3093
|
+
[[package]]
|
|
3094
|
+
name = "quinn-udp"
|
|
3095
|
+
version = "0.5.14"
|
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3097
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
3098
|
+
dependencies = [
|
|
3099
|
+
"cfg_aliases",
|
|
3100
|
+
"libc",
|
|
3101
|
+
"once_cell",
|
|
3102
|
+
"socket2 0.5.10",
|
|
3103
|
+
"tracing",
|
|
3104
|
+
"windows-sys 0.60.2",
|
|
3105
|
+
]
|
|
3106
|
+
|
|
2813
3107
|
[[package]]
|
|
2814
3108
|
name = "quote"
|
|
2815
3109
|
version = "1.0.40"
|
|
@@ -2821,9 +3115,9 @@ dependencies = [
|
|
|
2821
3115
|
|
|
2822
3116
|
[[package]]
|
|
2823
3117
|
name = "r-efi"
|
|
2824
|
-
version = "5.
|
|
3118
|
+
version = "5.3.0"
|
|
2825
3119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
-
checksum = "
|
|
3120
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2827
3121
|
|
|
2828
3122
|
[[package]]
|
|
2829
3123
|
name = "rancor"
|
|
@@ -2847,13 +3141,12 @@ dependencies = [
|
|
|
2847
3141
|
|
|
2848
3142
|
[[package]]
|
|
2849
3143
|
name = "rand"
|
|
2850
|
-
version = "0.9.
|
|
3144
|
+
version = "0.9.2"
|
|
2851
3145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
-
checksum = "
|
|
3146
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2853
3147
|
dependencies = [
|
|
2854
3148
|
"rand_chacha 0.9.0",
|
|
2855
3149
|
"rand_core 0.9.3",
|
|
2856
|
-
"zerocopy 0.8.24",
|
|
2857
3150
|
]
|
|
2858
3151
|
|
|
2859
3152
|
[[package]]
|
|
@@ -2882,7 +3175,7 @@ version = "0.6.4"
|
|
|
2882
3175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
3176
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2884
3177
|
dependencies = [
|
|
2885
|
-
"getrandom 0.2.
|
|
3178
|
+
"getrandom 0.2.16",
|
|
2886
3179
|
]
|
|
2887
3180
|
|
|
2888
3181
|
[[package]]
|
|
@@ -2891,7 +3184,7 @@ version = "0.9.3"
|
|
|
2891
3184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
3185
|
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2893
3186
|
dependencies = [
|
|
2894
|
-
"getrandom 0.3.
|
|
3187
|
+
"getrandom 0.3.3",
|
|
2895
3188
|
]
|
|
2896
3189
|
|
|
2897
3190
|
[[package]]
|
|
@@ -2906,9 +3199,9 @@ dependencies = [
|
|
|
2906
3199
|
|
|
2907
3200
|
[[package]]
|
|
2908
3201
|
name = "rayon"
|
|
2909
|
-
version = "1.
|
|
3202
|
+
version = "1.11.0"
|
|
2910
3203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
-
checksum = "
|
|
3204
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2912
3205
|
dependencies = [
|
|
2913
3206
|
"either",
|
|
2914
3207
|
"rayon-core",
|
|
@@ -2916,9 +3209,9 @@ dependencies = [
|
|
|
2916
3209
|
|
|
2917
3210
|
[[package]]
|
|
2918
3211
|
name = "rayon-core"
|
|
2919
|
-
version = "1.
|
|
3212
|
+
version = "1.13.0"
|
|
2920
3213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
-
checksum = "
|
|
3214
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2922
3215
|
dependencies = [
|
|
2923
3216
|
"crossbeam-deque",
|
|
2924
3217
|
"crossbeam-utils",
|
|
@@ -2926,29 +3219,38 @@ dependencies = [
|
|
|
2926
3219
|
|
|
2927
3220
|
[[package]]
|
|
2928
3221
|
name = "redox_syscall"
|
|
2929
|
-
version = "0.
|
|
3222
|
+
version = "0.2.16"
|
|
2930
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
|
-
checksum = "
|
|
3224
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
2932
3225
|
dependencies = [
|
|
2933
|
-
"bitflags
|
|
3226
|
+
"bitflags 1.3.2",
|
|
3227
|
+
]
|
|
3228
|
+
|
|
3229
|
+
[[package]]
|
|
3230
|
+
name = "redox_syscall"
|
|
3231
|
+
version = "0.5.17"
|
|
3232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3233
|
+
checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
|
|
3234
|
+
dependencies = [
|
|
3235
|
+
"bitflags 2.9.4",
|
|
2934
3236
|
]
|
|
2935
3237
|
|
|
2936
3238
|
[[package]]
|
|
2937
3239
|
name = "redox_users"
|
|
2938
|
-
version = "0.5.
|
|
3240
|
+
version = "0.5.2"
|
|
2939
3241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
-
checksum = "
|
|
3242
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
2941
3243
|
dependencies = [
|
|
2942
|
-
"getrandom 0.2.
|
|
3244
|
+
"getrandom 0.2.16",
|
|
2943
3245
|
"libredox",
|
|
2944
|
-
"thiserror 2.0.
|
|
3246
|
+
"thiserror 2.0.17",
|
|
2945
3247
|
]
|
|
2946
3248
|
|
|
2947
3249
|
[[package]]
|
|
2948
3250
|
name = "regex"
|
|
2949
|
-
version = "1.
|
|
3251
|
+
version = "1.12.2"
|
|
2950
3252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
-
checksum = "
|
|
3253
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
2952
3254
|
dependencies = [
|
|
2953
3255
|
"aho-corasick",
|
|
2954
3256
|
"memchr",
|
|
@@ -2958,9 +3260,9 @@ dependencies = [
|
|
|
2958
3260
|
|
|
2959
3261
|
[[package]]
|
|
2960
3262
|
name = "regex-automata"
|
|
2961
|
-
version = "0.4.
|
|
3263
|
+
version = "0.4.12"
|
|
2962
3264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2963
|
-
checksum = "
|
|
3265
|
+
checksum = "722166aa0d7438abbaa4d5cc2c649dac844e8c56d82fb3d33e9c34b5cd268fc6"
|
|
2964
3266
|
dependencies = [
|
|
2965
3267
|
"aho-corasick",
|
|
2966
3268
|
"memchr",
|
|
@@ -2969,15 +3271,15 @@ dependencies = [
|
|
|
2969
3271
|
|
|
2970
3272
|
[[package]]
|
|
2971
3273
|
name = "regex-lite"
|
|
2972
|
-
version = "0.1.
|
|
3274
|
+
version = "0.1.7"
|
|
2973
3275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
-
checksum = "
|
|
3276
|
+
checksum = "943f41321c63ef1c92fd763bfe054d2668f7f225a5c29f0105903dc2fc04ba30"
|
|
2975
3277
|
|
|
2976
3278
|
[[package]]
|
|
2977
3279
|
name = "regex-syntax"
|
|
2978
|
-
version = "0.8.
|
|
3280
|
+
version = "0.8.6"
|
|
2979
3281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
-
checksum = "
|
|
3282
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
2981
3283
|
|
|
2982
3284
|
[[package]]
|
|
2983
3285
|
name = "rend"
|
|
@@ -2988,6 +3290,94 @@ dependencies = [
|
|
|
2988
3290
|
"bytecheck",
|
|
2989
3291
|
]
|
|
2990
3292
|
|
|
3293
|
+
[[package]]
|
|
3294
|
+
name = "reqwest"
|
|
3295
|
+
version = "0.12.24"
|
|
3296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
+
checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
|
|
3298
|
+
dependencies = [
|
|
3299
|
+
"base64",
|
|
3300
|
+
"bytes",
|
|
3301
|
+
"futures-core",
|
|
3302
|
+
"futures-util",
|
|
3303
|
+
"h2 0.4.12",
|
|
3304
|
+
"http 1.3.1",
|
|
3305
|
+
"http-body",
|
|
3306
|
+
"http-body-util",
|
|
3307
|
+
"hyper",
|
|
3308
|
+
"hyper-rustls",
|
|
3309
|
+
"hyper-util",
|
|
3310
|
+
"js-sys",
|
|
3311
|
+
"log",
|
|
3312
|
+
"percent-encoding",
|
|
3313
|
+
"pin-project-lite",
|
|
3314
|
+
"quinn",
|
|
3315
|
+
"rustls",
|
|
3316
|
+
"rustls-pki-types",
|
|
3317
|
+
"serde",
|
|
3318
|
+
"serde_json",
|
|
3319
|
+
"serde_urlencoded",
|
|
3320
|
+
"sync_wrapper",
|
|
3321
|
+
"tokio",
|
|
3322
|
+
"tokio-rustls",
|
|
3323
|
+
"tokio-util",
|
|
3324
|
+
"tower",
|
|
3325
|
+
"tower-http",
|
|
3326
|
+
"tower-service",
|
|
3327
|
+
"url",
|
|
3328
|
+
"wasm-bindgen",
|
|
3329
|
+
"wasm-bindgen-futures",
|
|
3330
|
+
"wasm-streams",
|
|
3331
|
+
"web-sys",
|
|
3332
|
+
"webpki-roots",
|
|
3333
|
+
]
|
|
3334
|
+
|
|
3335
|
+
[[package]]
|
|
3336
|
+
name = "reqwest-middleware"
|
|
3337
|
+
version = "0.4.2"
|
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
+
checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e"
|
|
3340
|
+
dependencies = [
|
|
3341
|
+
"anyhow",
|
|
3342
|
+
"async-trait",
|
|
3343
|
+
"http 1.3.1",
|
|
3344
|
+
"reqwest",
|
|
3345
|
+
"serde",
|
|
3346
|
+
"thiserror 1.0.69",
|
|
3347
|
+
"tower-service",
|
|
3348
|
+
]
|
|
3349
|
+
|
|
3350
|
+
[[package]]
|
|
3351
|
+
name = "reqwest-retry"
|
|
3352
|
+
version = "0.7.0"
|
|
3353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3354
|
+
checksum = "29c73e4195a6bfbcb174b790d9b3407ab90646976c55de58a6515da25d851178"
|
|
3355
|
+
dependencies = [
|
|
3356
|
+
"anyhow",
|
|
3357
|
+
"async-trait",
|
|
3358
|
+
"futures",
|
|
3359
|
+
"getrandom 0.2.16",
|
|
3360
|
+
"http 1.3.1",
|
|
3361
|
+
"hyper",
|
|
3362
|
+
"parking_lot 0.11.2",
|
|
3363
|
+
"reqwest",
|
|
3364
|
+
"reqwest-middleware",
|
|
3365
|
+
"retry-policies",
|
|
3366
|
+
"thiserror 1.0.69",
|
|
3367
|
+
"tokio",
|
|
3368
|
+
"tracing",
|
|
3369
|
+
"wasm-timer",
|
|
3370
|
+
]
|
|
3371
|
+
|
|
3372
|
+
[[package]]
|
|
3373
|
+
name = "retry-policies"
|
|
3374
|
+
version = "0.4.0"
|
|
3375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3376
|
+
checksum = "5875471e6cab2871bc150ecb8c727db5113c9338cc3354dc5ee3425b6aa40a1c"
|
|
3377
|
+
dependencies = [
|
|
3378
|
+
"rand 0.8.5",
|
|
3379
|
+
]
|
|
3380
|
+
|
|
2991
3381
|
[[package]]
|
|
2992
3382
|
name = "ring"
|
|
2993
3383
|
version = "0.17.14"
|
|
@@ -2996,7 +3386,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
2996
3386
|
dependencies = [
|
|
2997
3387
|
"cc",
|
|
2998
3388
|
"cfg-if",
|
|
2999
|
-
"getrandom 0.2.
|
|
3389
|
+
"getrandom 0.2.16",
|
|
3000
3390
|
"libc",
|
|
3001
3391
|
"untrusted",
|
|
3002
3392
|
"windows-sys 0.52.0",
|
|
@@ -3004,13 +3394,13 @@ dependencies = [
|
|
|
3004
3394
|
|
|
3005
3395
|
[[package]]
|
|
3006
3396
|
name = "rkyv"
|
|
3007
|
-
version = "0.8.
|
|
3397
|
+
version = "0.8.12"
|
|
3008
3398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
-
checksum = "
|
|
3399
|
+
checksum = "35a640b26f007713818e9a9b65d34da1cf58538207b052916a83d80e43f3ffa4"
|
|
3010
3400
|
dependencies = [
|
|
3011
3401
|
"bytecheck",
|
|
3012
3402
|
"bytes",
|
|
3013
|
-
"hashbrown 0.15.
|
|
3403
|
+
"hashbrown 0.15.5",
|
|
3014
3404
|
"indexmap",
|
|
3015
3405
|
"munge",
|
|
3016
3406
|
"ptr_meta",
|
|
@@ -3023,13 +3413,13 @@ dependencies = [
|
|
|
3023
3413
|
|
|
3024
3414
|
[[package]]
|
|
3025
3415
|
name = "rkyv_derive"
|
|
3026
|
-
version = "0.8.
|
|
3416
|
+
version = "0.8.12"
|
|
3027
3417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3028
|
-
checksum = "
|
|
3418
|
+
checksum = "bd83f5f173ff41e00337d97f6572e416d022ef8a19f371817259ae960324c482"
|
|
3029
3419
|
dependencies = [
|
|
3030
3420
|
"proc-macro2",
|
|
3031
3421
|
"quote",
|
|
3032
|
-
"syn 2.0.
|
|
3422
|
+
"syn 2.0.106",
|
|
3033
3423
|
]
|
|
3034
3424
|
|
|
3035
3425
|
[[package]]
|
|
@@ -3048,51 +3438,31 @@ dependencies = [
|
|
|
3048
3438
|
"serde_derive",
|
|
3049
3439
|
]
|
|
3050
3440
|
|
|
3051
|
-
[[package]]
|
|
3052
|
-
name = "rustc-demangle"
|
|
3053
|
-
version = "0.1.24"
|
|
3054
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
3056
|
-
|
|
3057
3441
|
[[package]]
|
|
3058
3442
|
name = "rustc-hash"
|
|
3059
|
-
version = "1.1
|
|
3443
|
+
version = "2.1.1"
|
|
3060
3444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
-
checksum = "
|
|
3445
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3062
3446
|
|
|
3063
3447
|
[[package]]
|
|
3064
3448
|
name = "rustix"
|
|
3065
|
-
version = "0.
|
|
3449
|
+
version = "1.0.8"
|
|
3066
3450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
|
-
checksum = "
|
|
3451
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
|
3068
3452
|
dependencies = [
|
|
3069
|
-
"bitflags 2.9.
|
|
3453
|
+
"bitflags 2.9.4",
|
|
3070
3454
|
"errno",
|
|
3071
3455
|
"libc",
|
|
3072
|
-
"linux-raw-sys
|
|
3073
|
-
"windows-sys 0.
|
|
3074
|
-
]
|
|
3075
|
-
|
|
3076
|
-
[[package]]
|
|
3077
|
-
name = "rustix"
|
|
3078
|
-
version = "1.0.3"
|
|
3079
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3080
|
-
checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
|
|
3081
|
-
dependencies = [
|
|
3082
|
-
"bitflags 2.9.0",
|
|
3083
|
-
"errno",
|
|
3084
|
-
"libc",
|
|
3085
|
-
"linux-raw-sys 0.9.3",
|
|
3086
|
-
"windows-sys 0.52.0",
|
|
3456
|
+
"linux-raw-sys",
|
|
3457
|
+
"windows-sys 0.60.2",
|
|
3087
3458
|
]
|
|
3088
3459
|
|
|
3089
3460
|
[[package]]
|
|
3090
3461
|
name = "rustls"
|
|
3091
|
-
version = "0.23.
|
|
3462
|
+
version = "0.23.31"
|
|
3092
3463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
-
checksum = "
|
|
3464
|
+
checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
|
|
3094
3465
|
dependencies = [
|
|
3095
|
-
"log",
|
|
3096
3466
|
"once_cell",
|
|
3097
3467
|
"ring",
|
|
3098
3468
|
"rustls-pki-types",
|
|
@@ -3103,15 +3473,19 @@ dependencies = [
|
|
|
3103
3473
|
|
|
3104
3474
|
[[package]]
|
|
3105
3475
|
name = "rustls-pki-types"
|
|
3106
|
-
version = "1.
|
|
3476
|
+
version = "1.12.0"
|
|
3107
3477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3108
|
-
checksum = "
|
|
3478
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
3479
|
+
dependencies = [
|
|
3480
|
+
"web-time",
|
|
3481
|
+
"zeroize",
|
|
3482
|
+
]
|
|
3109
3483
|
|
|
3110
3484
|
[[package]]
|
|
3111
3485
|
name = "rustls-webpki"
|
|
3112
|
-
version = "0.103.
|
|
3486
|
+
version = "0.103.4"
|
|
3113
3487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
-
checksum = "
|
|
3488
|
+
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
|
|
3115
3489
|
dependencies = [
|
|
3116
3490
|
"ring",
|
|
3117
3491
|
"rustls-pki-types",
|
|
@@ -3120,9 +3494,9 @@ dependencies = [
|
|
|
3120
3494
|
|
|
3121
3495
|
[[package]]
|
|
3122
3496
|
name = "rustversion"
|
|
3123
|
-
version = "1.0.
|
|
3497
|
+
version = "1.0.22"
|
|
3124
3498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
-
checksum = "
|
|
3499
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3126
3500
|
|
|
3127
3501
|
[[package]]
|
|
3128
3502
|
name = "ryu"
|
|
@@ -3147,9 +3521,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
3147
3521
|
|
|
3148
3522
|
[[package]]
|
|
3149
3523
|
name = "sea-query"
|
|
3150
|
-
version = "0.32.
|
|
3524
|
+
version = "0.32.7"
|
|
3151
3525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
-
checksum = "
|
|
3526
|
+
checksum = "8a5d1c518eaf5eda38e5773f902b26ab6d5e9e9e2bb2349ca6c64cf96f80448c"
|
|
3153
3527
|
dependencies = [
|
|
3154
3528
|
"inherent",
|
|
3155
3529
|
"sea-query-derive",
|
|
@@ -3161,12 +3535,12 @@ version = "0.4.3"
|
|
|
3161
3535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
3536
|
checksum = "bae0cbad6ab996955664982739354128c58d16e126114fe88c2a493642502aab"
|
|
3163
3537
|
dependencies = [
|
|
3164
|
-
"darling",
|
|
3538
|
+
"darling 0.20.11",
|
|
3165
3539
|
"heck 0.4.1",
|
|
3166
3540
|
"proc-macro2",
|
|
3167
3541
|
"quote",
|
|
3168
|
-
"syn 2.0.
|
|
3169
|
-
"thiserror 2.0.
|
|
3542
|
+
"syn 2.0.106",
|
|
3543
|
+
"thiserror 2.0.17",
|
|
3170
3544
|
]
|
|
3171
3545
|
|
|
3172
3546
|
[[package]]
|
|
@@ -3177,34 +3551,45 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
|
3177
3551
|
|
|
3178
3552
|
[[package]]
|
|
3179
3553
|
name = "serde"
|
|
3180
|
-
version = "1.0.
|
|
3554
|
+
version = "1.0.228"
|
|
3555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3556
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3557
|
+
dependencies = [
|
|
3558
|
+
"serde_core",
|
|
3559
|
+
"serde_derive",
|
|
3560
|
+
]
|
|
3561
|
+
|
|
3562
|
+
[[package]]
|
|
3563
|
+
name = "serde_core"
|
|
3564
|
+
version = "1.0.228"
|
|
3181
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
-
checksum = "
|
|
3566
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3183
3567
|
dependencies = [
|
|
3184
3568
|
"serde_derive",
|
|
3185
3569
|
]
|
|
3186
3570
|
|
|
3187
3571
|
[[package]]
|
|
3188
3572
|
name = "serde_derive"
|
|
3189
|
-
version = "1.0.
|
|
3573
|
+
version = "1.0.228"
|
|
3190
3574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3191
|
-
checksum = "
|
|
3575
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3192
3576
|
dependencies = [
|
|
3193
3577
|
"proc-macro2",
|
|
3194
3578
|
"quote",
|
|
3195
|
-
"syn 2.0.
|
|
3579
|
+
"syn 2.0.106",
|
|
3196
3580
|
]
|
|
3197
3581
|
|
|
3198
3582
|
[[package]]
|
|
3199
3583
|
name = "serde_json"
|
|
3200
|
-
version = "1.0.
|
|
3584
|
+
version = "1.0.145"
|
|
3201
3585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3586
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
3203
3587
|
dependencies = [
|
|
3204
3588
|
"itoa",
|
|
3205
3589
|
"memchr",
|
|
3206
3590
|
"ryu",
|
|
3207
3591
|
"serde",
|
|
3592
|
+
"serde_core",
|
|
3208
3593
|
]
|
|
3209
3594
|
|
|
3210
3595
|
[[package]]
|
|
@@ -3219,6 +3604,19 @@ dependencies = [
|
|
|
3219
3604
|
"serde",
|
|
3220
3605
|
]
|
|
3221
3606
|
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "serde_yaml"
|
|
3609
|
+
version = "0.9.34+deprecated"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3612
|
+
dependencies = [
|
|
3613
|
+
"indexmap",
|
|
3614
|
+
"itoa",
|
|
3615
|
+
"ryu",
|
|
3616
|
+
"serde",
|
|
3617
|
+
"unsafe-libyaml",
|
|
3618
|
+
]
|
|
3619
|
+
|
|
3222
3620
|
[[package]]
|
|
3223
3621
|
name = "sha1"
|
|
3224
3622
|
version = "0.10.6"
|
|
@@ -3238,9 +3636,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
3238
3636
|
|
|
3239
3637
|
[[package]]
|
|
3240
3638
|
name = "signal-hook-registry"
|
|
3241
|
-
version = "1.4.
|
|
3639
|
+
version = "1.4.6"
|
|
3242
3640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "
|
|
3641
|
+
checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
|
|
3244
3642
|
dependencies = [
|
|
3245
3643
|
"libc",
|
|
3246
3644
|
]
|
|
@@ -3265,21 +3663,18 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
|
3265
3663
|
|
|
3266
3664
|
[[package]]
|
|
3267
3665
|
name = "sketches-ddsketch"
|
|
3268
|
-
version = "0.
|
|
3666
|
+
version = "0.3.0"
|
|
3269
3667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3270
|
-
checksum = "
|
|
3668
|
+
checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
|
|
3271
3669
|
dependencies = [
|
|
3272
3670
|
"serde",
|
|
3273
3671
|
]
|
|
3274
3672
|
|
|
3275
3673
|
[[package]]
|
|
3276
3674
|
name = "slab"
|
|
3277
|
-
version = "0.4.
|
|
3675
|
+
version = "0.4.11"
|
|
3278
3676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
-
checksum = "
|
|
3280
|
-
dependencies = [
|
|
3281
|
-
"autocfg",
|
|
3282
|
-
]
|
|
3677
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3283
3678
|
|
|
3284
3679
|
[[package]]
|
|
3285
3680
|
name = "slice-group-by"
|
|
@@ -3289,20 +3684,30 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
|
|
3289
3684
|
|
|
3290
3685
|
[[package]]
|
|
3291
3686
|
name = "smallvec"
|
|
3292
|
-
version = "1.
|
|
3687
|
+
version = "1.15.1"
|
|
3293
3688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
|
-
checksum = "
|
|
3689
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3295
3690
|
|
|
3296
3691
|
[[package]]
|
|
3297
3692
|
name = "socket2"
|
|
3298
|
-
version = "0.5.
|
|
3693
|
+
version = "0.5.10"
|
|
3299
3694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
|
-
checksum = "
|
|
3695
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
3301
3696
|
dependencies = [
|
|
3302
3697
|
"libc",
|
|
3303
3698
|
"windows-sys 0.52.0",
|
|
3304
3699
|
]
|
|
3305
3700
|
|
|
3701
|
+
[[package]]
|
|
3702
|
+
name = "socket2"
|
|
3703
|
+
version = "0.6.0"
|
|
3704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3705
|
+
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
|
3706
|
+
dependencies = [
|
|
3707
|
+
"libc",
|
|
3708
|
+
"windows-sys 0.59.0",
|
|
3709
|
+
]
|
|
3710
|
+
|
|
3306
3711
|
[[package]]
|
|
3307
3712
|
name = "stable_deref_trait"
|
|
3308
3713
|
version = "1.2.0"
|
|
@@ -3310,31 +3715,57 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3310
3715
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3311
3716
|
|
|
3312
3717
|
[[package]]
|
|
3313
|
-
name = "strsim"
|
|
3314
|
-
version = "0.
|
|
3718
|
+
name = "strsim"
|
|
3719
|
+
version = "0.10.0"
|
|
3720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3721
|
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
3722
|
+
|
|
3723
|
+
[[package]]
|
|
3724
|
+
name = "strsim"
|
|
3725
|
+
version = "0.11.1"
|
|
3726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3727
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3728
|
+
|
|
3729
|
+
[[package]]
|
|
3730
|
+
name = "structural-convert"
|
|
3731
|
+
version = "0.13.0"
|
|
3732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3733
|
+
checksum = "e7c8b1faa3959a2aa326258e7ce07e28e0342f0c17d1d6ad092ddaa7057219d6"
|
|
3734
|
+
dependencies = [
|
|
3735
|
+
"structural-convert-derive",
|
|
3736
|
+
]
|
|
3737
|
+
|
|
3738
|
+
[[package]]
|
|
3739
|
+
name = "structural-convert-derive"
|
|
3740
|
+
version = "0.3.0"
|
|
3315
3741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
-
checksum = "
|
|
3742
|
+
checksum = "6a5b3e4f58827163c8e46f249d87f48e508ffedd04cf4f03f2cbf115761c9d99"
|
|
3743
|
+
dependencies = [
|
|
3744
|
+
"darling 0.14.4",
|
|
3745
|
+
"proc-macro2",
|
|
3746
|
+
"quote",
|
|
3747
|
+
"syn 1.0.109",
|
|
3748
|
+
]
|
|
3317
3749
|
|
|
3318
3750
|
[[package]]
|
|
3319
3751
|
name = "strum"
|
|
3320
|
-
version = "0.
|
|
3752
|
+
version = "0.27.2"
|
|
3321
3753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3322
|
-
checksum = "
|
|
3754
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
3323
3755
|
dependencies = [
|
|
3324
3756
|
"strum_macros",
|
|
3325
3757
|
]
|
|
3326
3758
|
|
|
3327
3759
|
[[package]]
|
|
3328
3760
|
name = "strum_macros"
|
|
3329
|
-
version = "0.
|
|
3761
|
+
version = "0.27.2"
|
|
3330
3762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
|
-
checksum = "
|
|
3763
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
3332
3764
|
dependencies = [
|
|
3333
3765
|
"heck 0.5.0",
|
|
3334
3766
|
"proc-macro2",
|
|
3335
3767
|
"quote",
|
|
3336
|
-
"
|
|
3337
|
-
"syn 2.0.100",
|
|
3768
|
+
"syn 2.0.106",
|
|
3338
3769
|
]
|
|
3339
3770
|
|
|
3340
3771
|
[[package]]
|
|
@@ -3356,36 +3787,46 @@ dependencies = [
|
|
|
3356
3787
|
|
|
3357
3788
|
[[package]]
|
|
3358
3789
|
name = "syn"
|
|
3359
|
-
version = "2.0.
|
|
3790
|
+
version = "2.0.106"
|
|
3360
3791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3361
|
-
checksum = "
|
|
3792
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
3362
3793
|
dependencies = [
|
|
3363
3794
|
"proc-macro2",
|
|
3364
3795
|
"quote",
|
|
3365
3796
|
"unicode-ident",
|
|
3366
3797
|
]
|
|
3367
3798
|
|
|
3799
|
+
[[package]]
|
|
3800
|
+
name = "sync_wrapper"
|
|
3801
|
+
version = "1.0.2"
|
|
3802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3804
|
+
dependencies = [
|
|
3805
|
+
"futures-core",
|
|
3806
|
+
]
|
|
3807
|
+
|
|
3368
3808
|
[[package]]
|
|
3369
3809
|
name = "synstructure"
|
|
3370
|
-
version = "0.13.
|
|
3810
|
+
version = "0.13.2"
|
|
3371
3811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
-
checksum = "
|
|
3812
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3373
3813
|
dependencies = [
|
|
3374
3814
|
"proc-macro2",
|
|
3375
3815
|
"quote",
|
|
3376
|
-
"syn 2.0.
|
|
3816
|
+
"syn 2.0.106",
|
|
3377
3817
|
]
|
|
3378
3818
|
|
|
3379
3819
|
[[package]]
|
|
3380
3820
|
name = "tantivy"
|
|
3381
|
-
version = "0.
|
|
3821
|
+
version = "0.25.0"
|
|
3382
3822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3383
|
-
checksum = "
|
|
3823
|
+
checksum = "502915c7381c5cb2d2781503962610cb880ad8f1a0ca95df1bae645d5ebf2545"
|
|
3384
3824
|
dependencies = [
|
|
3385
3825
|
"aho-corasick",
|
|
3386
3826
|
"arc-swap",
|
|
3387
3827
|
"base64",
|
|
3388
3828
|
"bitpacking",
|
|
3829
|
+
"bon",
|
|
3389
3830
|
"byteorder",
|
|
3390
3831
|
"census",
|
|
3391
3832
|
"crc32fast",
|
|
@@ -3395,14 +3836,14 @@ dependencies = [
|
|
|
3395
3836
|
"fnv",
|
|
3396
3837
|
"fs4",
|
|
3397
3838
|
"htmlescape",
|
|
3398
|
-
"
|
|
3839
|
+
"hyperloglogplus",
|
|
3840
|
+
"itertools 0.14.0",
|
|
3399
3841
|
"levenshtein_automata",
|
|
3400
3842
|
"log",
|
|
3401
|
-
"lru",
|
|
3843
|
+
"lru 0.12.5",
|
|
3402
3844
|
"lz4_flex",
|
|
3403
3845
|
"measure_time",
|
|
3404
3846
|
"memmap2",
|
|
3405
|
-
"num_cpus",
|
|
3406
3847
|
"once_cell",
|
|
3407
3848
|
"oneshot",
|
|
3408
3849
|
"rayon",
|
|
@@ -3421,7 +3862,7 @@ dependencies = [
|
|
|
3421
3862
|
"tantivy-stacker",
|
|
3422
3863
|
"tantivy-tokenizer-api",
|
|
3423
3864
|
"tempfile",
|
|
3424
|
-
"thiserror
|
|
3865
|
+
"thiserror 2.0.17",
|
|
3425
3866
|
"time",
|
|
3426
3867
|
"uuid",
|
|
3427
3868
|
"winapi",
|
|
@@ -3429,22 +3870,22 @@ dependencies = [
|
|
|
3429
3870
|
|
|
3430
3871
|
[[package]]
|
|
3431
3872
|
name = "tantivy-bitpacker"
|
|
3432
|
-
version = "0.
|
|
3873
|
+
version = "0.9.0"
|
|
3433
3874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3434
|
-
checksum = "
|
|
3875
|
+
checksum = "c3b04eed5108d8283607da6710fe17a7663523440eaf7ea5a1a440d19a1448b6"
|
|
3435
3876
|
dependencies = [
|
|
3436
3877
|
"bitpacking",
|
|
3437
3878
|
]
|
|
3438
3879
|
|
|
3439
3880
|
[[package]]
|
|
3440
3881
|
name = "tantivy-columnar"
|
|
3441
|
-
version = "0.
|
|
3882
|
+
version = "0.6.0"
|
|
3442
3883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
-
checksum = "
|
|
3884
|
+
checksum = "8b628488ae936c83e92b5c4056833054ca56f76c0e616aee8339e24ac89119cd"
|
|
3444
3885
|
dependencies = [
|
|
3445
3886
|
"downcast-rs",
|
|
3446
3887
|
"fastdivide",
|
|
3447
|
-
"itertools 0.
|
|
3888
|
+
"itertools 0.14.0",
|
|
3448
3889
|
"serde",
|
|
3449
3890
|
"tantivy-bitpacker",
|
|
3450
3891
|
"tantivy-common",
|
|
@@ -3454,9 +3895,9 @@ dependencies = [
|
|
|
3454
3895
|
|
|
3455
3896
|
[[package]]
|
|
3456
3897
|
name = "tantivy-common"
|
|
3457
|
-
version = "0.
|
|
3898
|
+
version = "0.10.0"
|
|
3458
3899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3459
|
-
checksum = "
|
|
3900
|
+
checksum = "f880aa7cab0c063a47b62596d10991cdd0b6e0e0575d9c5eeb298b307a25de55"
|
|
3460
3901
|
dependencies = [
|
|
3461
3902
|
"async-trait",
|
|
3462
3903
|
"byteorder",
|
|
@@ -3478,19 +3919,23 @@ dependencies = [
|
|
|
3478
3919
|
|
|
3479
3920
|
[[package]]
|
|
3480
3921
|
name = "tantivy-query-grammar"
|
|
3481
|
-
version = "0.
|
|
3922
|
+
version = "0.25.0"
|
|
3482
3923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
-
checksum = "
|
|
3924
|
+
checksum = "768fccdc84d60d86235d42d7e4c33acf43c418258ff5952abf07bd7837fcd26b"
|
|
3484
3925
|
dependencies = [
|
|
3485
3926
|
"nom",
|
|
3927
|
+
"serde",
|
|
3928
|
+
"serde_json",
|
|
3486
3929
|
]
|
|
3487
3930
|
|
|
3488
3931
|
[[package]]
|
|
3489
3932
|
name = "tantivy-sstable"
|
|
3490
|
-
version = "0.
|
|
3933
|
+
version = "0.6.0"
|
|
3491
3934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
-
checksum = "
|
|
3935
|
+
checksum = "f8292095d1a8a2c2b36380ec455f910ab52dde516af36321af332c93f20ab7d5"
|
|
3493
3936
|
dependencies = [
|
|
3937
|
+
"futures-util",
|
|
3938
|
+
"itertools 0.14.0",
|
|
3494
3939
|
"tantivy-bitpacker",
|
|
3495
3940
|
"tantivy-common",
|
|
3496
3941
|
"tantivy-fst",
|
|
@@ -3499,9 +3944,9 @@ dependencies = [
|
|
|
3499
3944
|
|
|
3500
3945
|
[[package]]
|
|
3501
3946
|
name = "tantivy-stacker"
|
|
3502
|
-
version = "0.
|
|
3947
|
+
version = "0.6.0"
|
|
3503
3948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3504
|
-
checksum = "
|
|
3949
|
+
checksum = "23d38a379411169f0b3002c9cba61cdfe315f757e9d4f239c00c282497a0749d"
|
|
3505
3950
|
dependencies = [
|
|
3506
3951
|
"murmurhash32",
|
|
3507
3952
|
"rand_distr",
|
|
@@ -3510,9 +3955,9 @@ dependencies = [
|
|
|
3510
3955
|
|
|
3511
3956
|
[[package]]
|
|
3512
3957
|
name = "tantivy-tokenizer-api"
|
|
3513
|
-
version = "0.
|
|
3958
|
+
version = "0.6.0"
|
|
3514
3959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3515
|
-
checksum = "
|
|
3960
|
+
checksum = "23024f6aeb25ceb1a0e27740c84bdb0fae52626737b7e9a9de6ad5aa25c7b038"
|
|
3516
3961
|
dependencies = [
|
|
3517
3962
|
"serde",
|
|
3518
3963
|
]
|
|
@@ -3536,15 +3981,15 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
|
3536
3981
|
|
|
3537
3982
|
[[package]]
|
|
3538
3983
|
name = "tempfile"
|
|
3539
|
-
version = "3.
|
|
3984
|
+
version = "3.23.0"
|
|
3540
3985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
-
checksum = "
|
|
3986
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
3542
3987
|
dependencies = [
|
|
3543
3988
|
"fastrand",
|
|
3544
|
-
"getrandom 0.3.
|
|
3989
|
+
"getrandom 0.3.3",
|
|
3545
3990
|
"once_cell",
|
|
3546
|
-
"rustix
|
|
3547
|
-
"windows-sys 0.
|
|
3991
|
+
"rustix",
|
|
3992
|
+
"windows-sys 0.61.0",
|
|
3548
3993
|
]
|
|
3549
3994
|
|
|
3550
3995
|
[[package]]
|
|
@@ -3558,11 +4003,11 @@ dependencies = [
|
|
|
3558
4003
|
|
|
3559
4004
|
[[package]]
|
|
3560
4005
|
name = "thiserror"
|
|
3561
|
-
version = "2.0.
|
|
4006
|
+
version = "2.0.17"
|
|
3562
4007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
-
checksum = "
|
|
4008
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3564
4009
|
dependencies = [
|
|
3565
|
-
"thiserror-impl 2.0.
|
|
4010
|
+
"thiserror-impl 2.0.17",
|
|
3566
4011
|
]
|
|
3567
4012
|
|
|
3568
4013
|
[[package]]
|
|
@@ -3573,28 +4018,27 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3573
4018
|
dependencies = [
|
|
3574
4019
|
"proc-macro2",
|
|
3575
4020
|
"quote",
|
|
3576
|
-
"syn 2.0.
|
|
4021
|
+
"syn 2.0.106",
|
|
3577
4022
|
]
|
|
3578
4023
|
|
|
3579
4024
|
[[package]]
|
|
3580
4025
|
name = "thiserror-impl"
|
|
3581
|
-
version = "2.0.
|
|
4026
|
+
version = "2.0.17"
|
|
3582
4027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3583
|
-
checksum = "
|
|
4028
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3584
4029
|
dependencies = [
|
|
3585
4030
|
"proc-macro2",
|
|
3586
4031
|
"quote",
|
|
3587
|
-
"syn 2.0.
|
|
4032
|
+
"syn 2.0.106",
|
|
3588
4033
|
]
|
|
3589
4034
|
|
|
3590
4035
|
[[package]]
|
|
3591
4036
|
name = "time"
|
|
3592
|
-
version = "0.3.
|
|
4037
|
+
version = "0.3.42"
|
|
3593
4038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
-
checksum = "
|
|
4039
|
+
checksum = "8ca967379f9d8eb8058d86ed467d81d03e81acd45757e4ca341c24affbe8e8e3"
|
|
3595
4040
|
dependencies = [
|
|
3596
4041
|
"deranged",
|
|
3597
|
-
"itoa",
|
|
3598
4042
|
"num-conv",
|
|
3599
4043
|
"powerfmt",
|
|
3600
4044
|
"serde",
|
|
@@ -3604,15 +4048,15 @@ dependencies = [
|
|
|
3604
4048
|
|
|
3605
4049
|
[[package]]
|
|
3606
4050
|
name = "time-core"
|
|
3607
|
-
version = "0.1.
|
|
4051
|
+
version = "0.1.5"
|
|
3608
4052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3609
|
-
checksum = "
|
|
4053
|
+
checksum = "a9108bb380861b07264b950ded55a44a14a4adc68b9f5efd85aafc3aa4d40a68"
|
|
3610
4054
|
|
|
3611
4055
|
[[package]]
|
|
3612
4056
|
name = "time-macros"
|
|
3613
|
-
version = "0.2.
|
|
4057
|
+
version = "0.2.23"
|
|
3614
4058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3615
|
-
checksum = "
|
|
4059
|
+
checksum = "7182799245a7264ce590b349d90338f1c1affad93d2639aed5f8f69c090b334c"
|
|
3616
4060
|
dependencies = [
|
|
3617
4061
|
"num-conv",
|
|
3618
4062
|
"time-core",
|
|
@@ -3620,9 +4064,9 @@ dependencies = [
|
|
|
3620
4064
|
|
|
3621
4065
|
[[package]]
|
|
3622
4066
|
name = "tinystr"
|
|
3623
|
-
version = "0.
|
|
4067
|
+
version = "0.8.1"
|
|
3624
4068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
-
checksum = "
|
|
4069
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
3626
4070
|
dependencies = [
|
|
3627
4071
|
"displaydoc",
|
|
3628
4072
|
"zerovec",
|
|
@@ -3640,9 +4084,9 @@ dependencies = [
|
|
|
3640
4084
|
|
|
3641
4085
|
[[package]]
|
|
3642
4086
|
name = "tinyvec"
|
|
3643
|
-
version = "1.
|
|
4087
|
+
version = "1.10.0"
|
|
3644
4088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3645
|
-
checksum = "
|
|
4089
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3646
4090
|
dependencies = [
|
|
3647
4091
|
"tinyvec_macros",
|
|
3648
4092
|
]
|
|
@@ -3655,26 +4099,47 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3655
4099
|
|
|
3656
4100
|
[[package]]
|
|
3657
4101
|
name = "tokio"
|
|
3658
|
-
version = "1.
|
|
4102
|
+
version = "1.48.0"
|
|
3659
4103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
-
checksum = "
|
|
4104
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
3661
4105
|
dependencies = [
|
|
3662
|
-
"backtrace",
|
|
3663
4106
|
"bytes",
|
|
3664
4107
|
"libc",
|
|
3665
4108
|
"mio",
|
|
3666
|
-
"parking_lot",
|
|
4109
|
+
"parking_lot 0.12.4",
|
|
3667
4110
|
"pin-project-lite",
|
|
3668
4111
|
"signal-hook-registry",
|
|
3669
|
-
"socket2",
|
|
3670
|
-
"
|
|
4112
|
+
"socket2 0.6.0",
|
|
4113
|
+
"tokio-macros",
|
|
4114
|
+
"windows-sys 0.61.0",
|
|
4115
|
+
]
|
|
4116
|
+
|
|
4117
|
+
[[package]]
|
|
4118
|
+
name = "tokio-macros"
|
|
4119
|
+
version = "2.6.0"
|
|
4120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4121
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
4122
|
+
dependencies = [
|
|
4123
|
+
"proc-macro2",
|
|
4124
|
+
"quote",
|
|
4125
|
+
"syn 2.0.106",
|
|
4126
|
+
]
|
|
4127
|
+
|
|
4128
|
+
[[package]]
|
|
4129
|
+
name = "tokio-rustls"
|
|
4130
|
+
version = "0.26.2"
|
|
4131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4132
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
4133
|
+
dependencies = [
|
|
4134
|
+
"rustls",
|
|
4135
|
+
"tokio",
|
|
3671
4136
|
]
|
|
3672
4137
|
|
|
3673
4138
|
[[package]]
|
|
3674
4139
|
name = "tokio-util"
|
|
3675
|
-
version = "0.7.
|
|
4140
|
+
version = "0.7.16"
|
|
3676
4141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3677
|
-
checksum = "
|
|
4142
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
3678
4143
|
dependencies = [
|
|
3679
4144
|
"bytes",
|
|
3680
4145
|
"futures-core",
|
|
@@ -3683,6 +4148,51 @@ dependencies = [
|
|
|
3683
4148
|
"tokio",
|
|
3684
4149
|
]
|
|
3685
4150
|
|
|
4151
|
+
[[package]]
|
|
4152
|
+
name = "tower"
|
|
4153
|
+
version = "0.5.2"
|
|
4154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4155
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
4156
|
+
dependencies = [
|
|
4157
|
+
"futures-core",
|
|
4158
|
+
"futures-util",
|
|
4159
|
+
"pin-project-lite",
|
|
4160
|
+
"sync_wrapper",
|
|
4161
|
+
"tokio",
|
|
4162
|
+
"tower-layer",
|
|
4163
|
+
"tower-service",
|
|
4164
|
+
]
|
|
4165
|
+
|
|
4166
|
+
[[package]]
|
|
4167
|
+
name = "tower-http"
|
|
4168
|
+
version = "0.6.6"
|
|
4169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4170
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
4171
|
+
dependencies = [
|
|
4172
|
+
"bitflags 2.9.4",
|
|
4173
|
+
"bytes",
|
|
4174
|
+
"futures-util",
|
|
4175
|
+
"http 1.3.1",
|
|
4176
|
+
"http-body",
|
|
4177
|
+
"iri-string",
|
|
4178
|
+
"pin-project-lite",
|
|
4179
|
+
"tower",
|
|
4180
|
+
"tower-layer",
|
|
4181
|
+
"tower-service",
|
|
4182
|
+
]
|
|
4183
|
+
|
|
4184
|
+
[[package]]
|
|
4185
|
+
name = "tower-layer"
|
|
4186
|
+
version = "0.3.3"
|
|
4187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4188
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
4189
|
+
|
|
4190
|
+
[[package]]
|
|
4191
|
+
name = "tower-service"
|
|
4192
|
+
version = "0.3.3"
|
|
4193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4194
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
4195
|
+
|
|
3686
4196
|
[[package]]
|
|
3687
4197
|
name = "tracing"
|
|
3688
4198
|
version = "0.1.41"
|
|
@@ -3697,24 +4207,30 @@ dependencies = [
|
|
|
3697
4207
|
|
|
3698
4208
|
[[package]]
|
|
3699
4209
|
name = "tracing-attributes"
|
|
3700
|
-
version = "0.1.
|
|
4210
|
+
version = "0.1.30"
|
|
3701
4211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3702
|
-
checksum = "
|
|
4212
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
3703
4213
|
dependencies = [
|
|
3704
4214
|
"proc-macro2",
|
|
3705
4215
|
"quote",
|
|
3706
|
-
"syn 2.0.
|
|
4216
|
+
"syn 2.0.106",
|
|
3707
4217
|
]
|
|
3708
4218
|
|
|
3709
4219
|
[[package]]
|
|
3710
4220
|
name = "tracing-core"
|
|
3711
|
-
version = "0.1.
|
|
4221
|
+
version = "0.1.34"
|
|
3712
4222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
-
checksum = "
|
|
4223
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
3714
4224
|
dependencies = [
|
|
3715
4225
|
"once_cell",
|
|
3716
4226
|
]
|
|
3717
4227
|
|
|
4228
|
+
[[package]]
|
|
4229
|
+
name = "try-lock"
|
|
4230
|
+
version = "0.2.5"
|
|
4231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4232
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
4233
|
+
|
|
3718
4234
|
[[package]]
|
|
3719
4235
|
name = "typenum"
|
|
3720
4236
|
version = "1.18.0"
|
|
@@ -3735,9 +4251,9 @@ checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b"
|
|
|
3735
4251
|
|
|
3736
4252
|
[[package]]
|
|
3737
4253
|
name = "unicode-ident"
|
|
3738
|
-
version = "1.0.
|
|
4254
|
+
version = "1.0.19"
|
|
3739
4255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3740
|
-
checksum = "
|
|
4256
|
+
checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
|
|
3741
4257
|
|
|
3742
4258
|
[[package]]
|
|
3743
4259
|
name = "unicode-normalization"
|
|
@@ -3756,15 +4272,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
|
3756
4272
|
|
|
3757
4273
|
[[package]]
|
|
3758
4274
|
name = "unicode-width"
|
|
3759
|
-
version = "0.1
|
|
3760
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3762
|
-
|
|
3763
|
-
[[package]]
|
|
3764
|
-
name = "unicode-width"
|
|
3765
|
-
version = "0.2.0"
|
|
4275
|
+
version = "0.2.1"
|
|
3766
4276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
|
-
checksum = "
|
|
4277
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
3768
4278
|
|
|
3769
4279
|
[[package]]
|
|
3770
4280
|
name = "unicode-xid"
|
|
@@ -3778,6 +4288,18 @@ version = "0.2.4"
|
|
|
3778
4288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
4289
|
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3780
4290
|
|
|
4291
|
+
[[package]]
|
|
4292
|
+
name = "unit-prefix"
|
|
4293
|
+
version = "0.5.1"
|
|
4294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4295
|
+
checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817"
|
|
4296
|
+
|
|
4297
|
+
[[package]]
|
|
4298
|
+
name = "unsafe-libyaml"
|
|
4299
|
+
version = "0.2.11"
|
|
4300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4301
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
4302
|
+
|
|
3781
4303
|
[[package]]
|
|
3782
4304
|
name = "untrusted"
|
|
3783
4305
|
version = "0.9.0"
|
|
@@ -3785,37 +4307,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3785
4307
|
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3786
4308
|
|
|
3787
4309
|
[[package]]
|
|
3788
|
-
name = "
|
|
3789
|
-
version = "
|
|
4310
|
+
name = "unty"
|
|
4311
|
+
version = "0.0.4"
|
|
3790
4312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
|
-
checksum = "
|
|
3792
|
-
dependencies = [
|
|
3793
|
-
"base64",
|
|
3794
|
-
"log",
|
|
3795
|
-
"once_cell",
|
|
3796
|
-
"rustls",
|
|
3797
|
-
"rustls-pki-types",
|
|
3798
|
-
"url",
|
|
3799
|
-
"webpki-roots",
|
|
3800
|
-
]
|
|
4313
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
3801
4314
|
|
|
3802
4315
|
[[package]]
|
|
3803
4316
|
name = "url"
|
|
3804
|
-
version = "2.5.
|
|
4317
|
+
version = "2.5.7"
|
|
3805
4318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3806
|
-
checksum = "
|
|
4319
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3807
4320
|
dependencies = [
|
|
3808
4321
|
"form_urlencoded",
|
|
3809
4322
|
"idna",
|
|
3810
4323
|
"percent-encoding",
|
|
4324
|
+
"serde",
|
|
3811
4325
|
]
|
|
3812
4326
|
|
|
3813
|
-
[[package]]
|
|
3814
|
-
name = "utf16_iter"
|
|
3815
|
-
version = "1.0.5"
|
|
3816
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3817
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3818
|
-
|
|
3819
4327
|
[[package]]
|
|
3820
4328
|
name = "utf8-ranges"
|
|
3821
4329
|
version = "1.0.5"
|
|
@@ -3836,13 +4344,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3836
4344
|
|
|
3837
4345
|
[[package]]
|
|
3838
4346
|
name = "uuid"
|
|
3839
|
-
version = "1.
|
|
4347
|
+
version = "1.18.1"
|
|
3840
4348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3841
|
-
checksum = "
|
|
4349
|
+
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
3842
4350
|
dependencies = [
|
|
3843
|
-
"getrandom 0.3.
|
|
4351
|
+
"getrandom 0.3.3",
|
|
3844
4352
|
"js-sys",
|
|
3845
|
-
"rand 0.9.
|
|
4353
|
+
"rand 0.9.2",
|
|
3846
4354
|
"serde",
|
|
3847
4355
|
"uuid-macro-internal",
|
|
3848
4356
|
"wasm-bindgen",
|
|
@@ -3850,27 +4358,27 @@ dependencies = [
|
|
|
3850
4358
|
|
|
3851
4359
|
[[package]]
|
|
3852
4360
|
name = "uuid-macro-internal"
|
|
3853
|
-
version = "1.
|
|
4361
|
+
version = "1.18.1"
|
|
3854
4362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3855
|
-
checksum = "
|
|
4363
|
+
checksum = "d9384a660318abfbd7f8932c34d67e4d1ec511095f95972ddc01e19d7ba8413f"
|
|
3856
4364
|
dependencies = [
|
|
3857
4365
|
"proc-macro2",
|
|
3858
4366
|
"quote",
|
|
3859
|
-
"syn 2.0.
|
|
4367
|
+
"syn 2.0.106",
|
|
3860
4368
|
]
|
|
3861
4369
|
|
|
3862
|
-
[[package]]
|
|
3863
|
-
name = "validation"
|
|
3864
|
-
version = "0.0.1"
|
|
3865
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3866
|
-
checksum = "3fb8044f0b8a3e94bc8cd089c6a2e42e435553093800b76762418d4bbc3289cc"
|
|
3867
|
-
|
|
3868
4370
|
[[package]]
|
|
3869
4371
|
name = "version_check"
|
|
3870
4372
|
version = "0.9.5"
|
|
3871
4373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
4374
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3873
4375
|
|
|
4376
|
+
[[package]]
|
|
4377
|
+
name = "virtue"
|
|
4378
|
+
version = "0.0.18"
|
|
4379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4380
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
4381
|
+
|
|
3874
4382
|
[[package]]
|
|
3875
4383
|
name = "walkdir"
|
|
3876
4384
|
version = "2.5.0"
|
|
@@ -3881,19 +4389,28 @@ dependencies = [
|
|
|
3881
4389
|
"winapi-util",
|
|
3882
4390
|
]
|
|
3883
4391
|
|
|
4392
|
+
[[package]]
|
|
4393
|
+
name = "want"
|
|
4394
|
+
version = "0.3.1"
|
|
4395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4396
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4397
|
+
dependencies = [
|
|
4398
|
+
"try-lock",
|
|
4399
|
+
]
|
|
4400
|
+
|
|
3884
4401
|
[[package]]
|
|
3885
4402
|
name = "wasi"
|
|
3886
|
-
version = "0.11.
|
|
4403
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3887
4404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3888
|
-
checksum = "
|
|
4405
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3889
4406
|
|
|
3890
4407
|
[[package]]
|
|
3891
4408
|
name = "wasi"
|
|
3892
|
-
version = "0.14.
|
|
4409
|
+
version = "0.14.3+wasi-0.2.4"
|
|
3893
4410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
-
checksum = "
|
|
4411
|
+
checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
|
|
3895
4412
|
dependencies = [
|
|
3896
|
-
"wit-bindgen
|
|
4413
|
+
"wit-bindgen",
|
|
3897
4414
|
]
|
|
3898
4415
|
|
|
3899
4416
|
[[package]]
|
|
@@ -3918,10 +4435,23 @@ dependencies = [
|
|
|
3918
4435
|
"log",
|
|
3919
4436
|
"proc-macro2",
|
|
3920
4437
|
"quote",
|
|
3921
|
-
"syn 2.0.
|
|
4438
|
+
"syn 2.0.106",
|
|
3922
4439
|
"wasm-bindgen-shared",
|
|
3923
4440
|
]
|
|
3924
4441
|
|
|
4442
|
+
[[package]]
|
|
4443
|
+
name = "wasm-bindgen-futures"
|
|
4444
|
+
version = "0.4.50"
|
|
4445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4446
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
4447
|
+
dependencies = [
|
|
4448
|
+
"cfg-if",
|
|
4449
|
+
"js-sys",
|
|
4450
|
+
"once_cell",
|
|
4451
|
+
"wasm-bindgen",
|
|
4452
|
+
"web-sys",
|
|
4453
|
+
]
|
|
4454
|
+
|
|
3925
4455
|
[[package]]
|
|
3926
4456
|
name = "wasm-bindgen-macro"
|
|
3927
4457
|
version = "0.2.100"
|
|
@@ -3940,7 +4470,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3940
4470
|
dependencies = [
|
|
3941
4471
|
"proc-macro2",
|
|
3942
4472
|
"quote",
|
|
3943
|
-
"syn 2.0.
|
|
4473
|
+
"syn 2.0.106",
|
|
3944
4474
|
"wasm-bindgen-backend",
|
|
3945
4475
|
"wasm-bindgen-shared",
|
|
3946
4476
|
]
|
|
@@ -3954,6 +4484,34 @@ dependencies = [
|
|
|
3954
4484
|
"unicode-ident",
|
|
3955
4485
|
]
|
|
3956
4486
|
|
|
4487
|
+
[[package]]
|
|
4488
|
+
name = "wasm-streams"
|
|
4489
|
+
version = "0.4.2"
|
|
4490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4491
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
4492
|
+
dependencies = [
|
|
4493
|
+
"futures-util",
|
|
4494
|
+
"js-sys",
|
|
4495
|
+
"wasm-bindgen",
|
|
4496
|
+
"wasm-bindgen-futures",
|
|
4497
|
+
"web-sys",
|
|
4498
|
+
]
|
|
4499
|
+
|
|
4500
|
+
[[package]]
|
|
4501
|
+
name = "wasm-timer"
|
|
4502
|
+
version = "0.2.5"
|
|
4503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4504
|
+
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
|
|
4505
|
+
dependencies = [
|
|
4506
|
+
"futures",
|
|
4507
|
+
"js-sys",
|
|
4508
|
+
"parking_lot 0.11.2",
|
|
4509
|
+
"pin-utils",
|
|
4510
|
+
"wasm-bindgen",
|
|
4511
|
+
"wasm-bindgen-futures",
|
|
4512
|
+
"web-sys",
|
|
4513
|
+
]
|
|
4514
|
+
|
|
3957
4515
|
[[package]]
|
|
3958
4516
|
name = "web-sys"
|
|
3959
4517
|
version = "0.3.77"
|
|
@@ -3976,9 +4534,9 @@ dependencies = [
|
|
|
3976
4534
|
|
|
3977
4535
|
[[package]]
|
|
3978
4536
|
name = "webpki-roots"
|
|
3979
|
-
version = "0.
|
|
4537
|
+
version = "1.0.2"
|
|
3980
4538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3981
|
-
checksum = "
|
|
4539
|
+
checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
|
|
3982
4540
|
dependencies = [
|
|
3983
4541
|
"rustls-pki-types",
|
|
3984
4542
|
]
|
|
@@ -4011,11 +4569,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
4011
4569
|
|
|
4012
4570
|
[[package]]
|
|
4013
4571
|
name = "winapi-util"
|
|
4014
|
-
version = "0.1.
|
|
4572
|
+
version = "0.1.10"
|
|
4015
4573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4016
|
-
checksum = "
|
|
4574
|
+
checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
|
|
4017
4575
|
dependencies = [
|
|
4018
|
-
"windows-sys 0.
|
|
4576
|
+
"windows-sys 0.60.2",
|
|
4019
4577
|
]
|
|
4020
4578
|
|
|
4021
4579
|
[[package]]
|
|
@@ -4024,13 +4582,25 @@ version = "0.4.0"
|
|
|
4024
4582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4025
4583
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4026
4584
|
|
|
4585
|
+
[[package]]
|
|
4586
|
+
name = "windows-link"
|
|
4587
|
+
version = "0.1.3"
|
|
4588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4589
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
4590
|
+
|
|
4591
|
+
[[package]]
|
|
4592
|
+
name = "windows-link"
|
|
4593
|
+
version = "0.2.0"
|
|
4594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4595
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
4596
|
+
|
|
4027
4597
|
[[package]]
|
|
4028
4598
|
name = "windows-sys"
|
|
4029
4599
|
version = "0.52.0"
|
|
4030
4600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4031
4601
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4032
4602
|
dependencies = [
|
|
4033
|
-
"windows-targets",
|
|
4603
|
+
"windows-targets 0.52.6",
|
|
4034
4604
|
]
|
|
4035
4605
|
|
|
4036
4606
|
[[package]]
|
|
@@ -4039,7 +4609,25 @@ version = "0.59.0"
|
|
|
4039
4609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4040
4610
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4041
4611
|
dependencies = [
|
|
4042
|
-
"windows-targets",
|
|
4612
|
+
"windows-targets 0.52.6",
|
|
4613
|
+
]
|
|
4614
|
+
|
|
4615
|
+
[[package]]
|
|
4616
|
+
name = "windows-sys"
|
|
4617
|
+
version = "0.60.2"
|
|
4618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4619
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4620
|
+
dependencies = [
|
|
4621
|
+
"windows-targets 0.53.3",
|
|
4622
|
+
]
|
|
4623
|
+
|
|
4624
|
+
[[package]]
|
|
4625
|
+
name = "windows-sys"
|
|
4626
|
+
version = "0.61.0"
|
|
4627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4628
|
+
checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
|
|
4629
|
+
dependencies = [
|
|
4630
|
+
"windows-link 0.2.0",
|
|
4043
4631
|
]
|
|
4044
4632
|
|
|
4045
4633
|
[[package]]
|
|
@@ -4048,14 +4636,31 @@ version = "0.52.6"
|
|
|
4048
4636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4049
4637
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4050
4638
|
dependencies = [
|
|
4051
|
-
"windows_aarch64_gnullvm",
|
|
4052
|
-
"windows_aarch64_msvc",
|
|
4053
|
-
"windows_i686_gnu",
|
|
4054
|
-
"windows_i686_gnullvm",
|
|
4055
|
-
"windows_i686_msvc",
|
|
4056
|
-
"windows_x86_64_gnu",
|
|
4057
|
-
"windows_x86_64_gnullvm",
|
|
4058
|
-
"windows_x86_64_msvc",
|
|
4639
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4640
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4641
|
+
"windows_i686_gnu 0.52.6",
|
|
4642
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4643
|
+
"windows_i686_msvc 0.52.6",
|
|
4644
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4645
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4646
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4647
|
+
]
|
|
4648
|
+
|
|
4649
|
+
[[package]]
|
|
4650
|
+
name = "windows-targets"
|
|
4651
|
+
version = "0.53.3"
|
|
4652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4653
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
4654
|
+
dependencies = [
|
|
4655
|
+
"windows-link 0.1.3",
|
|
4656
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
4657
|
+
"windows_aarch64_msvc 0.53.0",
|
|
4658
|
+
"windows_i686_gnu 0.53.0",
|
|
4659
|
+
"windows_i686_gnullvm 0.53.0",
|
|
4660
|
+
"windows_i686_msvc 0.53.0",
|
|
4661
|
+
"windows_x86_64_gnu 0.53.0",
|
|
4662
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
4663
|
+
"windows_x86_64_msvc 0.53.0",
|
|
4059
4664
|
]
|
|
4060
4665
|
|
|
4061
4666
|
[[package]]
|
|
@@ -4064,42 +4669,84 @@ version = "0.52.6"
|
|
|
4064
4669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4065
4670
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4066
4671
|
|
|
4672
|
+
[[package]]
|
|
4673
|
+
name = "windows_aarch64_gnullvm"
|
|
4674
|
+
version = "0.53.0"
|
|
4675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4676
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
4677
|
+
|
|
4067
4678
|
[[package]]
|
|
4068
4679
|
name = "windows_aarch64_msvc"
|
|
4069
4680
|
version = "0.52.6"
|
|
4070
4681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4071
4682
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4072
4683
|
|
|
4684
|
+
[[package]]
|
|
4685
|
+
name = "windows_aarch64_msvc"
|
|
4686
|
+
version = "0.53.0"
|
|
4687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4688
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
4689
|
+
|
|
4073
4690
|
[[package]]
|
|
4074
4691
|
name = "windows_i686_gnu"
|
|
4075
4692
|
version = "0.52.6"
|
|
4076
4693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4077
4694
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4078
4695
|
|
|
4696
|
+
[[package]]
|
|
4697
|
+
name = "windows_i686_gnu"
|
|
4698
|
+
version = "0.53.0"
|
|
4699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4700
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
4701
|
+
|
|
4079
4702
|
[[package]]
|
|
4080
4703
|
name = "windows_i686_gnullvm"
|
|
4081
4704
|
version = "0.52.6"
|
|
4082
4705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
4706
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4084
4707
|
|
|
4708
|
+
[[package]]
|
|
4709
|
+
name = "windows_i686_gnullvm"
|
|
4710
|
+
version = "0.53.0"
|
|
4711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4712
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
4713
|
+
|
|
4085
4714
|
[[package]]
|
|
4086
4715
|
name = "windows_i686_msvc"
|
|
4087
4716
|
version = "0.52.6"
|
|
4088
4717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4089
4718
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4090
4719
|
|
|
4720
|
+
[[package]]
|
|
4721
|
+
name = "windows_i686_msvc"
|
|
4722
|
+
version = "0.53.0"
|
|
4723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4724
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
4725
|
+
|
|
4091
4726
|
[[package]]
|
|
4092
4727
|
name = "windows_x86_64_gnu"
|
|
4093
4728
|
version = "0.52.6"
|
|
4094
4729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4095
4730
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4096
4731
|
|
|
4732
|
+
[[package]]
|
|
4733
|
+
name = "windows_x86_64_gnu"
|
|
4734
|
+
version = "0.53.0"
|
|
4735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4736
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
4737
|
+
|
|
4097
4738
|
[[package]]
|
|
4098
4739
|
name = "windows_x86_64_gnullvm"
|
|
4099
4740
|
version = "0.52.6"
|
|
4100
4741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4101
4742
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4102
4743
|
|
|
4744
|
+
[[package]]
|
|
4745
|
+
name = "windows_x86_64_gnullvm"
|
|
4746
|
+
version = "0.53.0"
|
|
4747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4748
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
4749
|
+
|
|
4103
4750
|
[[package]]
|
|
4104
4751
|
name = "windows_x86_64_msvc"
|
|
4105
4752
|
version = "0.52.6"
|
|
@@ -4107,34 +4754,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4107
4754
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4108
4755
|
|
|
4109
4756
|
[[package]]
|
|
4110
|
-
name = "
|
|
4111
|
-
version = "0.
|
|
4757
|
+
name = "windows_x86_64_msvc"
|
|
4758
|
+
version = "0.53.0"
|
|
4759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4760
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
4761
|
+
|
|
4762
|
+
[[package]]
|
|
4763
|
+
name = "wiremock"
|
|
4764
|
+
version = "0.6.5"
|
|
4112
4765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4113
|
-
checksum = "
|
|
4766
|
+
checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
|
|
4114
4767
|
dependencies = [
|
|
4115
|
-
"
|
|
4768
|
+
"assert-json-diff",
|
|
4769
|
+
"base64",
|
|
4770
|
+
"deadpool",
|
|
4771
|
+
"futures",
|
|
4772
|
+
"http 1.3.1",
|
|
4773
|
+
"http-body-util",
|
|
4774
|
+
"hyper",
|
|
4775
|
+
"hyper-util",
|
|
4776
|
+
"log",
|
|
4777
|
+
"once_cell",
|
|
4778
|
+
"regex",
|
|
4779
|
+
"serde",
|
|
4780
|
+
"serde_json",
|
|
4781
|
+
"tokio",
|
|
4782
|
+
"url",
|
|
4116
4783
|
]
|
|
4117
4784
|
|
|
4118
4785
|
[[package]]
|
|
4119
|
-
name = "
|
|
4120
|
-
version = "
|
|
4786
|
+
name = "wit-bindgen"
|
|
4787
|
+
version = "0.45.0"
|
|
4121
4788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4122
|
-
checksum = "
|
|
4789
|
+
checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
|
|
4123
4790
|
|
|
4124
4791
|
[[package]]
|
|
4125
4792
|
name = "writeable"
|
|
4126
|
-
version = "0.
|
|
4793
|
+
version = "0.6.1"
|
|
4127
4794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4128
|
-
checksum = "
|
|
4795
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
4129
4796
|
|
|
4130
4797
|
[[package]]
|
|
4131
4798
|
name = "xattr"
|
|
4132
|
-
version = "1.5.
|
|
4799
|
+
version = "1.5.1"
|
|
4133
4800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4134
|
-
checksum = "
|
|
4801
|
+
checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
|
|
4135
4802
|
dependencies = [
|
|
4136
4803
|
"libc",
|
|
4137
|
-
"rustix
|
|
4804
|
+
"rustix",
|
|
4138
4805
|
]
|
|
4139
4806
|
|
|
4140
4807
|
[[package]]
|
|
@@ -4145,9 +4812,9 @@ checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
|
|
|
4145
4812
|
|
|
4146
4813
|
[[package]]
|
|
4147
4814
|
name = "yoke"
|
|
4148
|
-
version = "0.
|
|
4815
|
+
version = "0.8.0"
|
|
4149
4816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4150
|
-
checksum = "
|
|
4817
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
4151
4818
|
dependencies = [
|
|
4152
4819
|
"serde",
|
|
4153
4820
|
"stable_deref_trait",
|
|
@@ -4157,54 +4824,34 @@ dependencies = [
|
|
|
4157
4824
|
|
|
4158
4825
|
[[package]]
|
|
4159
4826
|
name = "yoke-derive"
|
|
4160
|
-
version = "0.
|
|
4827
|
+
version = "0.8.0"
|
|
4161
4828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
-
checksum = "
|
|
4829
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
4163
4830
|
dependencies = [
|
|
4164
4831
|
"proc-macro2",
|
|
4165
4832
|
"quote",
|
|
4166
|
-
"syn 2.0.
|
|
4833
|
+
"syn 2.0.106",
|
|
4167
4834
|
"synstructure",
|
|
4168
4835
|
]
|
|
4169
4836
|
|
|
4170
4837
|
[[package]]
|
|
4171
4838
|
name = "zerocopy"
|
|
4172
|
-
version = "0.
|
|
4173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4174
|
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4175
|
-
dependencies = [
|
|
4176
|
-
"zerocopy-derive 0.7.35",
|
|
4177
|
-
]
|
|
4178
|
-
|
|
4179
|
-
[[package]]
|
|
4180
|
-
name = "zerocopy"
|
|
4181
|
-
version = "0.8.24"
|
|
4182
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
-
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
4184
|
-
dependencies = [
|
|
4185
|
-
"zerocopy-derive 0.8.24",
|
|
4186
|
-
]
|
|
4187
|
-
|
|
4188
|
-
[[package]]
|
|
4189
|
-
name = "zerocopy-derive"
|
|
4190
|
-
version = "0.7.35"
|
|
4839
|
+
version = "0.8.26"
|
|
4191
4840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4192
|
-
checksum = "
|
|
4841
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
|
4193
4842
|
dependencies = [
|
|
4194
|
-
"
|
|
4195
|
-
"quote",
|
|
4196
|
-
"syn 2.0.100",
|
|
4843
|
+
"zerocopy-derive",
|
|
4197
4844
|
]
|
|
4198
4845
|
|
|
4199
4846
|
[[package]]
|
|
4200
4847
|
name = "zerocopy-derive"
|
|
4201
|
-
version = "0.8.
|
|
4848
|
+
version = "0.8.26"
|
|
4202
4849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4203
|
-
checksum = "
|
|
4850
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
4204
4851
|
dependencies = [
|
|
4205
4852
|
"proc-macro2",
|
|
4206
4853
|
"quote",
|
|
4207
|
-
"syn 2.0.
|
|
4854
|
+
"syn 2.0.106",
|
|
4208
4855
|
]
|
|
4209
4856
|
|
|
4210
4857
|
[[package]]
|
|
@@ -4224,7 +4871,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
4224
4871
|
dependencies = [
|
|
4225
4872
|
"proc-macro2",
|
|
4226
4873
|
"quote",
|
|
4227
|
-
"syn 2.0.
|
|
4874
|
+
"syn 2.0.106",
|
|
4228
4875
|
"synstructure",
|
|
4229
4876
|
]
|
|
4230
4877
|
|
|
@@ -4234,11 +4881,22 @@ version = "1.8.1"
|
|
|
4234
4881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4235
4882
|
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
4236
4883
|
|
|
4884
|
+
[[package]]
|
|
4885
|
+
name = "zerotrie"
|
|
4886
|
+
version = "0.2.2"
|
|
4887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4888
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
4889
|
+
dependencies = [
|
|
4890
|
+
"displaydoc",
|
|
4891
|
+
"yoke",
|
|
4892
|
+
"zerofrom",
|
|
4893
|
+
]
|
|
4894
|
+
|
|
4237
4895
|
[[package]]
|
|
4238
4896
|
name = "zerovec"
|
|
4239
|
-
version = "0.
|
|
4897
|
+
version = "0.11.4"
|
|
4240
4898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4241
|
-
checksum = "
|
|
4899
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
4242
4900
|
dependencies = [
|
|
4243
4901
|
"yoke",
|
|
4244
4902
|
"zerofrom",
|
|
@@ -4247,13 +4905,13 @@ dependencies = [
|
|
|
4247
4905
|
|
|
4248
4906
|
[[package]]
|
|
4249
4907
|
name = "zerovec-derive"
|
|
4250
|
-
version = "0.
|
|
4908
|
+
version = "0.11.1"
|
|
4251
4909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4252
|
-
checksum = "
|
|
4910
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
4253
4911
|
dependencies = [
|
|
4254
4912
|
"proc-macro2",
|
|
4255
4913
|
"quote",
|
|
4256
|
-
"syn 2.0.
|
|
4914
|
+
"syn 2.0.106",
|
|
4257
4915
|
]
|
|
4258
4916
|
|
|
4259
4917
|
[[package]]
|