polyglot-sql 0.1.10__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.
- polyglot_sql-0.1.10/Cargo.lock +1415 -0
- polyglot_sql-0.1.10/Cargo.toml +45 -0
- polyglot_sql-0.1.10/PKG-INFO +168 -0
- polyglot_sql-0.1.10/README.md +140 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/Cargo.toml +102 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/README.md +305 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/benches/in_list.rs +95 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/benches/parsing.rs +131 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/benches/rust_parsing.rs +197 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/benches/transpile.rs +176 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/examples/basic_usage.rs +159 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/examples/bench_json.rs +510 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/ast_transforms.rs +631 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/builder.rs +3234 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/athena.rs +457 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/bigquery.rs +1596 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/clickhouse.rs +628 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/cockroachdb.rs +307 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/databricks.rs +965 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/datafusion.rs +164 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/doris.rs +328 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/dremio.rs +153 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/drill.rs +176 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/druid.rs +84 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/duckdb.rs +6816 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/dune.rs +55 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/exasol.rs +445 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/fabric.rs +533 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/generic.rs +12 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/hive.rs +621 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/materialize.rs +296 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/mod.rs +31625 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/mysql.rs +1260 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/oracle.rs +456 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/postgres.rs +1766 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/presto.rs +1029 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/redshift.rs +568 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/risingwave.rs +292 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/singlestore.rs +613 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/snowflake.rs +3787 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/solr.rs +59 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/spark.rs +986 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/sqlite.rs +515 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/starrocks.rs +400 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/tableau.rs +137 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/teradata.rs +404 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/tidb.rs +272 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/trino.rs +484 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/dialects/tsql.rs +1320 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/diff.rs +1157 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/error.rs +376 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/expressions.rs +12736 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/function_catalog.rs +182 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/function_registry.rs +2861 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/generator.rs +36705 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/helper.rs +1071 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/lib.rs +809 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/lineage.rs +2132 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/annotate_types.rs +1604 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/canonicalize.rs +612 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/eliminate_ctes.rs +264 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/eliminate_joins.rs +737 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/isolate_table_selects.rs +576 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/mod.rs +76 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/normalize.rs +499 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/normalize_identifiers.rs +468 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/optimize_joins.rs +356 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/optimizer.rs +420 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/pushdown_predicates.rs +706 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/pushdown_projections.rs +463 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/qualify_columns.rs +2939 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/qualify_tables.rs +535 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/simplify.rs +1698 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/optimizer/subquery.rs +1607 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/parser.rs +56504 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/planner.rs +555 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/resolver.rs +565 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/schema.rs +835 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/scope.rs +1375 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/time.rs +946 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/tokens.rs +3756 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/transforms.rs +5623 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/traversal.rs +1803 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/trie.rs +330 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/validation/tests.rs +986 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/src/validation.rs +3509 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/analyze_failures.rs +337 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/common/known_failures.rs +215 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/common/mod.rs +15 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/common/test_data.rs +177 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/common/test_runner.rs +351 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_clickhouse_coverage.rs +95 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_clickhouse_parser.rs +139 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_dialect.rs +273 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_dialect_tests.rs +274 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/ddl.json +95 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/dml.json +47 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/functions.json +417 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/identity.json +226 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/operators.json +146 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/select.json +131 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/transpilation.json +739 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/custom_fixtures/datafusion/types.json +128 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/dialect_matrix.rs +1315 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/error_handling.rs +461 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/identity_roundtrip.rs +1063 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_compat.rs +1821 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_dialect_identity.rs +292 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_identity.rs +220 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_identity_detailed.rs +74 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_parser.rs +153 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_pretty.rs +149 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_transpilation.rs +302 -0
- polyglot_sql-0.1.10/crates/polyglot-sql/tests/sqlglot_transpile.rs +148 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-function-catalogs/Cargo.toml +17 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-function-catalogs/README.md +225 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-function-catalogs/src/clickhouse.rs +3310 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-function-catalogs/src/duckdb.rs +1651 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-function-catalogs/src/lib.rs +163 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-function-catalogs/tools/clickhouse/extract_functions.py +259 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-function-catalogs/tools/duckdb/extract_functions.py +189 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/Cargo.toml +27 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/README.md +140 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/docs/api.md +56 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/docs/index.md +46 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/mkdocs.yml +15 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/dialects.rs +51 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/diff.rs +67 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/errors.rs +56 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/format.rs +37 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/generate.rs +33 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/helpers.rs +58 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/lib.rs +38 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/lineage.rs +54 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/optimize.rs +32 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/parse.rs +28 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/tokenize.rs +11 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/transpile.rs +47 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/types.rs +106 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/src/validate.rs +63 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/conftest.py +1 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_compat.py +80 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_dialects.py +22 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_diff.py +21 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_format.py +44 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_generate.py +42 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_lineage.py +32 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_optimize.py +20 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_parse.py +44 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_transpile.py +78 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/tests/test_validate.py +36 -0
- polyglot_sql-0.1.10/crates/polyglot-sql-python/uv.lock +251 -0
- polyglot_sql-0.1.10/pyproject.toml +49 -0
- polyglot_sql-0.1.10/python/polyglot_sql/__init__.py +51 -0
- polyglot_sql-0.1.10/python/polyglot_sql/__init__.pyi +101 -0
- polyglot_sql-0.1.10/python/polyglot_sql/py.typed +1 -0
|
@@ -0,0 +1,1415 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anes"
|
|
16
|
+
version = "0.1.6"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "0.6.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.13"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "0.2.7"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anyhow"
|
|
72
|
+
version = "1.0.102"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "async-trait"
|
|
78
|
+
version = "0.1.89"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"proc-macro2",
|
|
83
|
+
"quote",
|
|
84
|
+
"syn",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "autocfg"
|
|
89
|
+
version = "1.5.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "bitflags"
|
|
95
|
+
version = "2.11.0"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "bumpalo"
|
|
101
|
+
version = "3.19.1"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "cast"
|
|
107
|
+
version = "0.3.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "cbindgen"
|
|
113
|
+
version = "0.29.2"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"clap",
|
|
118
|
+
"heck",
|
|
119
|
+
"indexmap",
|
|
120
|
+
"log",
|
|
121
|
+
"proc-macro2",
|
|
122
|
+
"quote",
|
|
123
|
+
"serde",
|
|
124
|
+
"serde_json",
|
|
125
|
+
"syn",
|
|
126
|
+
"tempfile",
|
|
127
|
+
"toml",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "cc"
|
|
132
|
+
version = "1.2.52"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"find-msvc-tools",
|
|
137
|
+
"shlex",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "cfg-if"
|
|
142
|
+
version = "1.0.4"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "ciborium"
|
|
148
|
+
version = "0.2.2"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"ciborium-io",
|
|
153
|
+
"ciborium-ll",
|
|
154
|
+
"serde",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "ciborium-io"
|
|
159
|
+
version = "0.2.2"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "ciborium-ll"
|
|
165
|
+
version = "0.2.2"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"ciborium-io",
|
|
170
|
+
"half",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "clap"
|
|
175
|
+
version = "4.5.54"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"clap_builder",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "clap_builder"
|
|
184
|
+
version = "4.5.54"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"anstream",
|
|
189
|
+
"anstyle",
|
|
190
|
+
"clap_lex",
|
|
191
|
+
"strsim",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "clap_lex"
|
|
196
|
+
version = "0.7.7"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "colorchoice"
|
|
202
|
+
version = "1.0.4"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "console_error_panic_hook"
|
|
208
|
+
version = "0.1.7"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"cfg-if",
|
|
213
|
+
"wasm-bindgen",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "criterion"
|
|
218
|
+
version = "0.5.1"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"anes",
|
|
223
|
+
"cast",
|
|
224
|
+
"ciborium",
|
|
225
|
+
"clap",
|
|
226
|
+
"criterion-plot",
|
|
227
|
+
"is-terminal",
|
|
228
|
+
"itertools",
|
|
229
|
+
"num-traits",
|
|
230
|
+
"once_cell",
|
|
231
|
+
"oorandom",
|
|
232
|
+
"plotters",
|
|
233
|
+
"rayon",
|
|
234
|
+
"regex",
|
|
235
|
+
"serde",
|
|
236
|
+
"serde_derive",
|
|
237
|
+
"serde_json",
|
|
238
|
+
"tinytemplate",
|
|
239
|
+
"walkdir",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "criterion-plot"
|
|
244
|
+
version = "0.5.0"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"cast",
|
|
249
|
+
"itertools",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "crossbeam-deque"
|
|
254
|
+
version = "0.8.6"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"crossbeam-epoch",
|
|
259
|
+
"crossbeam-utils",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "crossbeam-epoch"
|
|
264
|
+
version = "0.9.18"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"crossbeam-utils",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "crossbeam-utils"
|
|
273
|
+
version = "0.8.21"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "crunchy"
|
|
279
|
+
version = "0.2.4"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "diff"
|
|
285
|
+
version = "0.1.13"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "either"
|
|
291
|
+
version = "1.15.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "equivalent"
|
|
297
|
+
version = "1.0.2"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "errno"
|
|
303
|
+
version = "0.3.14"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"libc",
|
|
308
|
+
"windows-sys",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "fastrand"
|
|
313
|
+
version = "2.3.0"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "find-msvc-tools"
|
|
319
|
+
version = "0.1.7"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "foldhash"
|
|
325
|
+
version = "0.1.5"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "futures-core"
|
|
331
|
+
version = "0.3.31"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "futures-task"
|
|
337
|
+
version = "0.3.31"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "futures-util"
|
|
343
|
+
version = "0.3.31"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"futures-core",
|
|
348
|
+
"futures-task",
|
|
349
|
+
"pin-project-lite",
|
|
350
|
+
"pin-utils",
|
|
351
|
+
"slab",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "getrandom"
|
|
356
|
+
version = "0.4.1"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"cfg-if",
|
|
361
|
+
"libc",
|
|
362
|
+
"r-efi",
|
|
363
|
+
"wasip2",
|
|
364
|
+
"wasip3",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "half"
|
|
369
|
+
version = "2.7.1"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"cfg-if",
|
|
374
|
+
"crunchy",
|
|
375
|
+
"zerocopy",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "hashbrown"
|
|
380
|
+
version = "0.15.5"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"foldhash",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "hashbrown"
|
|
389
|
+
version = "0.16.1"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "heck"
|
|
395
|
+
version = "0.5.0"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "hermit-abi"
|
|
401
|
+
version = "0.5.2"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "id-arena"
|
|
407
|
+
version = "2.3.0"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "indexmap"
|
|
413
|
+
version = "2.13.0"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"equivalent",
|
|
418
|
+
"hashbrown 0.16.1",
|
|
419
|
+
"serde",
|
|
420
|
+
"serde_core",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "is-terminal"
|
|
425
|
+
version = "0.4.17"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"hermit-abi",
|
|
430
|
+
"libc",
|
|
431
|
+
"windows-sys",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "is_terminal_polyfill"
|
|
436
|
+
version = "1.70.2"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "itertools"
|
|
442
|
+
version = "0.10.5"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"either",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "itoa"
|
|
451
|
+
version = "1.0.17"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "js-sys"
|
|
457
|
+
version = "0.3.85"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"once_cell",
|
|
462
|
+
"wasm-bindgen",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "leb128fmt"
|
|
467
|
+
version = "0.1.0"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "libc"
|
|
473
|
+
version = "0.2.182"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "libm"
|
|
479
|
+
version = "0.2.15"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "linux-raw-sys"
|
|
485
|
+
version = "0.12.1"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "log"
|
|
491
|
+
version = "0.4.29"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "memchr"
|
|
497
|
+
version = "2.7.6"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "minicov"
|
|
503
|
+
version = "0.3.8"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"cc",
|
|
508
|
+
"walkdir",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "nu-ansi-term"
|
|
513
|
+
version = "0.50.3"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"windows-sys",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "num-traits"
|
|
522
|
+
version = "0.2.19"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"autocfg",
|
|
527
|
+
"libm",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "once_cell"
|
|
532
|
+
version = "1.21.3"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "once_cell_polyfill"
|
|
538
|
+
version = "1.70.2"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "oorandom"
|
|
544
|
+
version = "11.1.5"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "pin-project-lite"
|
|
550
|
+
version = "0.2.16"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "pin-utils"
|
|
556
|
+
version = "0.1.0"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "plotters"
|
|
562
|
+
version = "0.3.7"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"num-traits",
|
|
567
|
+
"plotters-backend",
|
|
568
|
+
"plotters-svg",
|
|
569
|
+
"wasm-bindgen",
|
|
570
|
+
"web-sys",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "plotters-backend"
|
|
575
|
+
version = "0.3.7"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "plotters-svg"
|
|
581
|
+
version = "0.3.7"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"plotters-backend",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "polyglot-sql"
|
|
590
|
+
version = "0.1.10"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"criterion",
|
|
593
|
+
"once_cell",
|
|
594
|
+
"polyglot-sql-function-catalogs",
|
|
595
|
+
"pretty_assertions",
|
|
596
|
+
"serde",
|
|
597
|
+
"serde_json",
|
|
598
|
+
"thiserror 1.0.69",
|
|
599
|
+
"ts-rs",
|
|
600
|
+
"unicode-segmentation",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "polyglot-sql-ffi"
|
|
605
|
+
version = "0.1.10"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"cbindgen",
|
|
608
|
+
"polyglot-sql",
|
|
609
|
+
"serde",
|
|
610
|
+
"serde_json",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "polyglot-sql-function-catalogs"
|
|
615
|
+
version = "0.1.10"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "polyglot-sql-python"
|
|
619
|
+
version = "0.1.10"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"polyglot-sql",
|
|
622
|
+
"pyo3",
|
|
623
|
+
"pythonize",
|
|
624
|
+
"serde",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "polyglot-sql-wasm"
|
|
629
|
+
version = "0.1.10"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"console_error_panic_hook",
|
|
632
|
+
"js-sys",
|
|
633
|
+
"polyglot-sql",
|
|
634
|
+
"serde",
|
|
635
|
+
"serde-wasm-bindgen",
|
|
636
|
+
"serde_json",
|
|
637
|
+
"wasm-bindgen",
|
|
638
|
+
"wasm-bindgen-test",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "portable-atomic"
|
|
643
|
+
version = "1.13.1"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "pretty_assertions"
|
|
649
|
+
version = "1.4.1"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"diff",
|
|
654
|
+
"yansi",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "prettyplease"
|
|
659
|
+
version = "0.2.37"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"proc-macro2",
|
|
664
|
+
"syn",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "proc-macro2"
|
|
669
|
+
version = "1.0.105"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"unicode-ident",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "pyo3"
|
|
678
|
+
version = "0.28.2"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"libc",
|
|
683
|
+
"once_cell",
|
|
684
|
+
"portable-atomic",
|
|
685
|
+
"pyo3-build-config",
|
|
686
|
+
"pyo3-ffi",
|
|
687
|
+
"pyo3-macros",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "pyo3-build-config"
|
|
692
|
+
version = "0.28.2"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"target-lexicon",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "pyo3-ffi"
|
|
701
|
+
version = "0.28.2"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"libc",
|
|
706
|
+
"pyo3-build-config",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "pyo3-macros"
|
|
711
|
+
version = "0.28.2"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"proc-macro2",
|
|
716
|
+
"pyo3-macros-backend",
|
|
717
|
+
"quote",
|
|
718
|
+
"syn",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "pyo3-macros-backend"
|
|
723
|
+
version = "0.28.2"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"heck",
|
|
728
|
+
"proc-macro2",
|
|
729
|
+
"pyo3-build-config",
|
|
730
|
+
"quote",
|
|
731
|
+
"syn",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "pythonize"
|
|
736
|
+
version = "0.28.0"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "0b79f670c9626c8b651c0581011b57b6ba6970bb69faf01a7c4c0cfc81c43f95"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"pyo3",
|
|
741
|
+
"serde",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "quote"
|
|
746
|
+
version = "1.0.43"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"proc-macro2",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "r-efi"
|
|
755
|
+
version = "5.3.0"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "rayon"
|
|
761
|
+
version = "1.11.0"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"either",
|
|
766
|
+
"rayon-core",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "rayon-core"
|
|
771
|
+
version = "1.13.0"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"crossbeam-deque",
|
|
776
|
+
"crossbeam-utils",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "regex"
|
|
781
|
+
version = "1.12.2"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"aho-corasick",
|
|
786
|
+
"memchr",
|
|
787
|
+
"regex-automata",
|
|
788
|
+
"regex-syntax",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "regex-automata"
|
|
793
|
+
version = "0.4.13"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"aho-corasick",
|
|
798
|
+
"memchr",
|
|
799
|
+
"regex-syntax",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "regex-syntax"
|
|
804
|
+
version = "0.8.8"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "rustix"
|
|
810
|
+
version = "1.1.4"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"bitflags",
|
|
815
|
+
"errno",
|
|
816
|
+
"libc",
|
|
817
|
+
"linux-raw-sys",
|
|
818
|
+
"windows-sys",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "rustversion"
|
|
823
|
+
version = "1.0.22"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "same-file"
|
|
829
|
+
version = "1.0.6"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"winapi-util",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "semver"
|
|
838
|
+
version = "1.0.27"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "serde"
|
|
844
|
+
version = "1.0.228"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"serde_core",
|
|
849
|
+
"serde_derive",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "serde-wasm-bindgen"
|
|
854
|
+
version = "0.6.5"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"js-sys",
|
|
859
|
+
"serde",
|
|
860
|
+
"wasm-bindgen",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "serde_core"
|
|
865
|
+
version = "1.0.228"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"serde_derive",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "serde_derive"
|
|
874
|
+
version = "1.0.228"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"proc-macro2",
|
|
879
|
+
"quote",
|
|
880
|
+
"syn",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "serde_json"
|
|
885
|
+
version = "1.0.149"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"itoa",
|
|
890
|
+
"memchr",
|
|
891
|
+
"serde",
|
|
892
|
+
"serde_core",
|
|
893
|
+
"zmij",
|
|
894
|
+
]
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "serde_spanned"
|
|
898
|
+
version = "1.0.4"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"serde_core",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "shlex"
|
|
907
|
+
version = "1.3.0"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "slab"
|
|
913
|
+
version = "0.4.11"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "strsim"
|
|
919
|
+
version = "0.11.1"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "syn"
|
|
925
|
+
version = "2.0.114"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"proc-macro2",
|
|
930
|
+
"quote",
|
|
931
|
+
"unicode-ident",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "target-lexicon"
|
|
936
|
+
version = "0.13.5"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "tempfile"
|
|
942
|
+
version = "3.25.0"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"fastrand",
|
|
947
|
+
"getrandom",
|
|
948
|
+
"once_cell",
|
|
949
|
+
"rustix",
|
|
950
|
+
"windows-sys",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "termcolor"
|
|
955
|
+
version = "1.4.1"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"winapi-util",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "thiserror"
|
|
964
|
+
version = "1.0.69"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"thiserror-impl 1.0.69",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "thiserror"
|
|
973
|
+
version = "2.0.17"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"thiserror-impl 2.0.17",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "thiserror-impl"
|
|
982
|
+
version = "1.0.69"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"proc-macro2",
|
|
987
|
+
"quote",
|
|
988
|
+
"syn",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "thiserror-impl"
|
|
993
|
+
version = "2.0.17"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"proc-macro2",
|
|
998
|
+
"quote",
|
|
999
|
+
"syn",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "tinytemplate"
|
|
1004
|
+
version = "1.2.1"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"serde",
|
|
1009
|
+
"serde_json",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "toml"
|
|
1014
|
+
version = "0.9.12+spec-1.1.0"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"indexmap",
|
|
1019
|
+
"serde_core",
|
|
1020
|
+
"serde_spanned",
|
|
1021
|
+
"toml_datetime",
|
|
1022
|
+
"toml_parser",
|
|
1023
|
+
"toml_writer",
|
|
1024
|
+
"winnow",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "toml_datetime"
|
|
1029
|
+
version = "0.7.5+spec-1.1.0"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"serde_core",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "toml_parser"
|
|
1038
|
+
version = "1.0.9+spec-1.1.0"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"winnow",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "toml_writer"
|
|
1047
|
+
version = "1.0.6+spec-1.1.0"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "ts-rs"
|
|
1053
|
+
version = "12.0.1"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "756050066659291d47a554a9f558125db17428b073c5ffce1daf5dcb0f7231d8"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"thiserror 2.0.17",
|
|
1058
|
+
"ts-rs-macros",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "ts-rs-macros"
|
|
1063
|
+
version = "12.0.1"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "38d90eea51bc7988ef9e674bf80a85ba6804739e535e9cab48e4bb34a8b652aa"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"proc-macro2",
|
|
1068
|
+
"quote",
|
|
1069
|
+
"syn",
|
|
1070
|
+
"termcolor",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "unicode-ident"
|
|
1075
|
+
version = "1.0.22"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "unicode-segmentation"
|
|
1081
|
+
version = "1.12.0"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "unicode-xid"
|
|
1087
|
+
version = "0.2.6"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "utf8parse"
|
|
1093
|
+
version = "0.2.2"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "walkdir"
|
|
1099
|
+
version = "2.5.0"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"same-file",
|
|
1104
|
+
"winapi-util",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "wasip2"
|
|
1109
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"wit-bindgen",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "wasip3"
|
|
1118
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"wit-bindgen",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "wasm-bindgen"
|
|
1127
|
+
version = "0.2.108"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"cfg-if",
|
|
1132
|
+
"once_cell",
|
|
1133
|
+
"rustversion",
|
|
1134
|
+
"wasm-bindgen-macro",
|
|
1135
|
+
"wasm-bindgen-shared",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "wasm-bindgen-futures"
|
|
1140
|
+
version = "0.4.58"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"cfg-if",
|
|
1145
|
+
"futures-util",
|
|
1146
|
+
"js-sys",
|
|
1147
|
+
"once_cell",
|
|
1148
|
+
"wasm-bindgen",
|
|
1149
|
+
"web-sys",
|
|
1150
|
+
]
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "wasm-bindgen-macro"
|
|
1154
|
+
version = "0.2.108"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"quote",
|
|
1159
|
+
"wasm-bindgen-macro-support",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "wasm-bindgen-macro-support"
|
|
1164
|
+
version = "0.2.108"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"bumpalo",
|
|
1169
|
+
"proc-macro2",
|
|
1170
|
+
"quote",
|
|
1171
|
+
"syn",
|
|
1172
|
+
"wasm-bindgen-shared",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "wasm-bindgen-shared"
|
|
1177
|
+
version = "0.2.108"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"unicode-ident",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "wasm-bindgen-test"
|
|
1186
|
+
version = "0.3.58"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "45649196a53b0b7a15101d845d44d2dda7374fc1b5b5e2bbf58b7577ff4b346d"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"async-trait",
|
|
1191
|
+
"cast",
|
|
1192
|
+
"js-sys",
|
|
1193
|
+
"libm",
|
|
1194
|
+
"minicov",
|
|
1195
|
+
"nu-ansi-term",
|
|
1196
|
+
"num-traits",
|
|
1197
|
+
"oorandom",
|
|
1198
|
+
"serde",
|
|
1199
|
+
"serde_json",
|
|
1200
|
+
"wasm-bindgen",
|
|
1201
|
+
"wasm-bindgen-futures",
|
|
1202
|
+
"wasm-bindgen-test-macro",
|
|
1203
|
+
"wasm-bindgen-test-shared",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "wasm-bindgen-test-macro"
|
|
1208
|
+
version = "0.3.58"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "f579cdd0123ac74b94e1a4a72bd963cf30ebac343f2df347da0b8df24cdebed2"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"proc-macro2",
|
|
1213
|
+
"quote",
|
|
1214
|
+
"syn",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "wasm-bindgen-test-shared"
|
|
1219
|
+
version = "0.2.108"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "a8145dd1593bf0fb137dbfa85b8be79ec560a447298955877804640e40c2d6ea"
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "wasm-encoder"
|
|
1225
|
+
version = "0.244.0"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1228
|
+
dependencies = [
|
|
1229
|
+
"leb128fmt",
|
|
1230
|
+
"wasmparser",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "wasm-metadata"
|
|
1235
|
+
version = "0.244.0"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"anyhow",
|
|
1240
|
+
"indexmap",
|
|
1241
|
+
"wasm-encoder",
|
|
1242
|
+
"wasmparser",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "wasmparser"
|
|
1247
|
+
version = "0.244.0"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"bitflags",
|
|
1252
|
+
"hashbrown 0.15.5",
|
|
1253
|
+
"indexmap",
|
|
1254
|
+
"semver",
|
|
1255
|
+
]
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "web-sys"
|
|
1259
|
+
version = "0.3.85"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"js-sys",
|
|
1264
|
+
"wasm-bindgen",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "winapi-util"
|
|
1269
|
+
version = "0.1.11"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"windows-sys",
|
|
1274
|
+
]
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "windows-link"
|
|
1278
|
+
version = "0.2.1"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "windows-sys"
|
|
1284
|
+
version = "0.61.2"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"windows-link",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "winnow"
|
|
1293
|
+
version = "0.7.14"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "wit-bindgen"
|
|
1299
|
+
version = "0.51.0"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"wit-bindgen-rust-macro",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "wit-bindgen-core"
|
|
1308
|
+
version = "0.51.0"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"anyhow",
|
|
1313
|
+
"heck",
|
|
1314
|
+
"wit-parser",
|
|
1315
|
+
]
|
|
1316
|
+
|
|
1317
|
+
[[package]]
|
|
1318
|
+
name = "wit-bindgen-rust"
|
|
1319
|
+
version = "0.51.0"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1322
|
+
dependencies = [
|
|
1323
|
+
"anyhow",
|
|
1324
|
+
"heck",
|
|
1325
|
+
"indexmap",
|
|
1326
|
+
"prettyplease",
|
|
1327
|
+
"syn",
|
|
1328
|
+
"wasm-metadata",
|
|
1329
|
+
"wit-bindgen-core",
|
|
1330
|
+
"wit-component",
|
|
1331
|
+
]
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "wit-bindgen-rust-macro"
|
|
1335
|
+
version = "0.51.0"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"anyhow",
|
|
1340
|
+
"prettyplease",
|
|
1341
|
+
"proc-macro2",
|
|
1342
|
+
"quote",
|
|
1343
|
+
"syn",
|
|
1344
|
+
"wit-bindgen-core",
|
|
1345
|
+
"wit-bindgen-rust",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "wit-component"
|
|
1350
|
+
version = "0.244.0"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"anyhow",
|
|
1355
|
+
"bitflags",
|
|
1356
|
+
"indexmap",
|
|
1357
|
+
"log",
|
|
1358
|
+
"serde",
|
|
1359
|
+
"serde_derive",
|
|
1360
|
+
"serde_json",
|
|
1361
|
+
"wasm-encoder",
|
|
1362
|
+
"wasm-metadata",
|
|
1363
|
+
"wasmparser",
|
|
1364
|
+
"wit-parser",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "wit-parser"
|
|
1369
|
+
version = "0.244.0"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"anyhow",
|
|
1374
|
+
"id-arena",
|
|
1375
|
+
"indexmap",
|
|
1376
|
+
"log",
|
|
1377
|
+
"semver",
|
|
1378
|
+
"serde",
|
|
1379
|
+
"serde_derive",
|
|
1380
|
+
"serde_json",
|
|
1381
|
+
"unicode-xid",
|
|
1382
|
+
"wasmparser",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "yansi"
|
|
1387
|
+
version = "1.0.1"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "zerocopy"
|
|
1393
|
+
version = "0.8.33"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
1396
|
+
dependencies = [
|
|
1397
|
+
"zerocopy-derive",
|
|
1398
|
+
]
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "zerocopy-derive"
|
|
1402
|
+
version = "0.8.33"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
1405
|
+
dependencies = [
|
|
1406
|
+
"proc-macro2",
|
|
1407
|
+
"quote",
|
|
1408
|
+
"syn",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "zmij"
|
|
1413
|
+
version = "1.0.14"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea"
|