koatl 0.2.3__tar.gz → 0.3.2__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.
- koatl-0.3.2/Cargo.lock +726 -0
- {koatl-0.2.3 → koatl-0.3.2}/PKG-INFO +1 -1
- {koatl-0.2.3 → koatl-0.3.2}/koatl/Cargo.toml +1 -1
- {koatl-0.2.3 → koatl-0.3.2/koatl}/python/koatl/prelude/__init__.tl +5 -5
- {koatl-0.2.3 → koatl-0.3.2/koatl}/python/koatl/std/alg/async.tl +7 -7
- {koatl-0.2.3 → koatl-0.3.2/koatl}/python/koatl/std/alg/base.tl +5 -5
- {koatl-0.2.3 → koatl-0.3.2/koatl}/python/koatl/std/alg/do.tl +1 -1
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/alg/env.tl +4 -4
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/alg/memo.tl +6 -6
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/alg/result.tl +2 -2
- {koatl-0.2.3 → koatl-0.3.2/koatl}/python/koatl/std/data/list.tl +2 -2
- {koatl-0.2.3 → koatl-0.3.2/koatl}/python/koatl/std/iter.tl +1 -1
- {koatl-0.2.3 → koatl-0.3.2/koatl}/python/koatl/std/re.tl +2 -2
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/fstr.tl +2 -2
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/memo.tl +2 -2
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/virtual.tl +7 -7
- koatl-0.3.2/koatl/tests/parse/deco.tl +2 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/Cargo.toml +1 -4
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/lift_cst.rs +51 -91
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/main.rs +35 -11
- {koatl-0.2.3 → koatl-0.3.2}/koatl-parser/src/cst.rs +49 -49
- {koatl-0.2.3 → koatl-0.3.2}/koatl-parser/src/lexer.rs +156 -113
- {koatl-0.2.3 → koatl-0.3.2}/koatl-parser/src/lib.rs +1 -1
- {koatl-0.2.3 → koatl-0.3.2}/koatl-parser/src/parser.rs +194 -92
- {koatl-0.2.3 → koatl-0.3.2}/koatl-parser/src/simple_fmt.rs +50 -46
- {koatl-0.2.3/koatl → koatl-0.3.2}/python/koatl/prelude/__init__.tl +5 -5
- {koatl-0.2.3/koatl → koatl-0.3.2}/python/koatl/std/alg/async.tl +7 -7
- {koatl-0.2.3/koatl → koatl-0.3.2}/python/koatl/std/alg/base.tl +5 -5
- {koatl-0.2.3/koatl → koatl-0.3.2}/python/koatl/std/alg/do.tl +1 -1
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/alg/env.tl +4 -4
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/alg/memo.tl +6 -6
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/alg/result.tl +2 -2
- {koatl-0.2.3/koatl → koatl-0.3.2}/python/koatl/std/data/list.tl +2 -2
- {koatl-0.2.3/koatl → koatl-0.3.2}/python/koatl/std/iter.tl +1 -1
- {koatl-0.2.3/koatl → koatl-0.3.2}/python/koatl/std/re.tl +2 -2
- koatl-0.2.3/Cargo.lock +0 -218
- koatl-0.2.3/koatl/tests/parse/deco.tl +0 -2
- koatl-0.2.3/koatl-core/src/parse_timer.rs +0 -34
- {koatl-0.2.3 → koatl-0.3.2}/Cargo.toml +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/README.md +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/.github/workflows/CI.yml +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/.gitignore +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/LICENSE +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/README.md +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/__init__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/__main__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/cli.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/notebook/__init__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/notebook/magic.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/runtime/__init__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/runtime/meta_finder.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/runtime/record.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/runtime/vattr.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/alg/__init__.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/data/__init__.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/data/record.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/ext.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/io.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/json.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/lazy_module.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/pickle.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/python/koatl/std/trait.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/requirements.txt +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/src/emit_py.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/src/lib.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/containers.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/data.txt +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/decorators.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/destructure-for-and-fn.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/destructure.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/escape_ident.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/functions.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/generator.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/if_expr.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/loops.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/match.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/nary-list.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/placeholder.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/precedence.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/scopes.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/semantic_whitespace.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/short_circuit.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/base/with.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/async.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/aug_assign.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/coal.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/env.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/imports.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/iterables.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/list.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/record.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/result.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/slice.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/prelude/try.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/util/__init__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/util/module0.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/util/module1.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/e2e/util/module2.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/parse/arith.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/parse/assign.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/parse/block-comments.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/parse/func.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/parse/matches.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/parse/numbers.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/test_e2e.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl/tests/test_parse.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/ast.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/ast_builder.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/inference.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/lib.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/py/ast.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/py/ast_builder.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/py/emit.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/py/mod.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/resolve_scopes.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/transform.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/types.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-core/src/util.rs +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/koatl-parser/Cargo.toml +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/pyproject.toml +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/__init__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/__main__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/cli.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/notebook/__init__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/notebook/magic.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/runtime/__init__.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/runtime/meta_finder.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/runtime/record.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/runtime/vattr.py +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/alg/__init__.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/data/__init__.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/data/record.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/ext.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/io.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/json.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/lazy_module.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/pickle.tl +0 -0
- {koatl-0.2.3 → koatl-0.3.2}/python/koatl/std/trait.py +0 -0
koatl-0.3.2/Cargo.lock
ADDED
|
@@ -0,0 +1,726 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anstream"
|
|
7
|
+
version = "0.6.20"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"anstyle",
|
|
12
|
+
"anstyle-parse",
|
|
13
|
+
"anstyle-query",
|
|
14
|
+
"anstyle-wincon",
|
|
15
|
+
"colorchoice",
|
|
16
|
+
"is_terminal_polyfill",
|
|
17
|
+
"utf8parse",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.11"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle-parse"
|
|
28
|
+
version = "0.2.7"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-query"
|
|
37
|
+
version = "1.1.4"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"windows-sys",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-wincon"
|
|
46
|
+
version = "3.0.10"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"once_cell_polyfill",
|
|
52
|
+
"windows-sys",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anyhow"
|
|
57
|
+
version = "1.0.99"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "ariadne"
|
|
63
|
+
version = "0.5.1"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "36f5e3dca4e09a6f340a61a0e9c7b61e030c69fc27bf29d73218f7e5e3b7638f"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"unicode-width",
|
|
68
|
+
"yansi",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "autocfg"
|
|
73
|
+
version = "1.5.0"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "bitflags"
|
|
79
|
+
version = "2.9.3"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "clap"
|
|
85
|
+
version = "4.5.46"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "2c5e4fcf9c21d2e544ca1ee9d8552de13019a42aa7dbf32747fa7aaf1df76e57"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"clap_builder",
|
|
90
|
+
"clap_derive",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "clap_builder"
|
|
95
|
+
version = "4.5.46"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "fecb53a0e6fcfb055f686001bc2e2592fa527efaf38dbe81a6a9563562e57d41"
|
|
98
|
+
dependencies = [
|
|
99
|
+
"anstream",
|
|
100
|
+
"anstyle",
|
|
101
|
+
"clap_lex",
|
|
102
|
+
"strsim",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "clap_derive"
|
|
107
|
+
version = "4.5.45"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"heck 0.5.0",
|
|
112
|
+
"proc-macro2",
|
|
113
|
+
"quote",
|
|
114
|
+
"syn",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "clap_lex"
|
|
119
|
+
version = "0.7.5"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "colorchoice"
|
|
125
|
+
version = "1.0.4"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "equivalent"
|
|
131
|
+
version = "1.0.2"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "hashbrown"
|
|
137
|
+
version = "0.15.5"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "heck"
|
|
143
|
+
version = "0.4.1"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"unicode-segmentation",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "heck"
|
|
152
|
+
version = "0.5.0"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "id-arena"
|
|
158
|
+
version = "2.2.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "indexmap"
|
|
164
|
+
version = "2.11.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"equivalent",
|
|
169
|
+
"hashbrown",
|
|
170
|
+
"serde",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "indoc"
|
|
175
|
+
version = "2.0.6"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "is_terminal_polyfill"
|
|
181
|
+
version = "1.70.1"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "itoa"
|
|
187
|
+
version = "1.0.15"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "koatl"
|
|
193
|
+
version = "0.3.2"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"ariadne",
|
|
196
|
+
"koatl-core",
|
|
197
|
+
"once_cell",
|
|
198
|
+
"pyo3",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "koatl-core"
|
|
203
|
+
version = "0.1.0"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"ariadne",
|
|
206
|
+
"clap",
|
|
207
|
+
"koatl-parser",
|
|
208
|
+
"once_cell",
|
|
209
|
+
"slotmap",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "koatl-parser"
|
|
214
|
+
version = "0.1.0"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "leb128"
|
|
218
|
+
version = "0.2.5"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "libc"
|
|
224
|
+
version = "0.2.174"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "log"
|
|
230
|
+
version = "0.4.27"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "memchr"
|
|
236
|
+
version = "2.7.5"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "memoffset"
|
|
242
|
+
version = "0.9.1"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"autocfg",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "ohtli"
|
|
251
|
+
version = "0.1.0"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"anyhow",
|
|
254
|
+
"clap",
|
|
255
|
+
"koatl-parser",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "once_cell"
|
|
260
|
+
version = "1.21.3"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "once_cell_polyfill"
|
|
266
|
+
version = "1.70.1"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "portable-atomic"
|
|
272
|
+
version = "1.11.1"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "proc-macro2"
|
|
278
|
+
version = "1.0.95"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
281
|
+
dependencies = [
|
|
282
|
+
"unicode-ident",
|
|
283
|
+
]
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "profiling"
|
|
287
|
+
version = "0.1.0"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"anyhow",
|
|
290
|
+
"clap",
|
|
291
|
+
"koatl-core",
|
|
292
|
+
"koatl-parser",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "pyo3"
|
|
297
|
+
version = "0.25.1"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"indoc",
|
|
302
|
+
"libc",
|
|
303
|
+
"memoffset",
|
|
304
|
+
"once_cell",
|
|
305
|
+
"portable-atomic",
|
|
306
|
+
"pyo3-build-config",
|
|
307
|
+
"pyo3-ffi",
|
|
308
|
+
"pyo3-macros",
|
|
309
|
+
"unindent",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "pyo3-build-config"
|
|
314
|
+
version = "0.25.1"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"once_cell",
|
|
319
|
+
"target-lexicon",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "pyo3-ffi"
|
|
324
|
+
version = "0.25.1"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"libc",
|
|
329
|
+
"pyo3-build-config",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "pyo3-macros"
|
|
334
|
+
version = "0.25.1"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"proc-macro2",
|
|
339
|
+
"pyo3-macros-backend",
|
|
340
|
+
"quote",
|
|
341
|
+
"syn",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "pyo3-macros-backend"
|
|
346
|
+
version = "0.25.1"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"heck 0.5.0",
|
|
351
|
+
"proc-macro2",
|
|
352
|
+
"pyo3-build-config",
|
|
353
|
+
"quote",
|
|
354
|
+
"syn",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "quetzal"
|
|
359
|
+
version = "0.1.0"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"ohtli",
|
|
362
|
+
"similar",
|
|
363
|
+
"wit-bindgen",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "quote"
|
|
368
|
+
version = "1.0.40"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"proc-macro2",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "ryu"
|
|
377
|
+
version = "1.0.20"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "semver"
|
|
383
|
+
version = "1.0.26"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "serde"
|
|
389
|
+
version = "1.0.219"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"serde_derive",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "serde_derive"
|
|
398
|
+
version = "1.0.219"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"proc-macro2",
|
|
403
|
+
"quote",
|
|
404
|
+
"syn",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "serde_json"
|
|
409
|
+
version = "1.0.143"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"itoa",
|
|
414
|
+
"memchr",
|
|
415
|
+
"ryu",
|
|
416
|
+
"serde",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "similar"
|
|
421
|
+
version = "2.7.0"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "slotmap"
|
|
427
|
+
version = "1.0.7"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"version_check",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "smallvec"
|
|
436
|
+
version = "1.15.1"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "spdx"
|
|
442
|
+
version = "0.10.9"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "c3e17e880bafaeb362a7b751ec46bdc5b61445a188f80e0606e68167cd540fa3"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"smallvec",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "strsim"
|
|
451
|
+
version = "0.11.1"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "syn"
|
|
457
|
+
version = "2.0.106"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"proc-macro2",
|
|
462
|
+
"quote",
|
|
463
|
+
"unicode-ident",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "target-lexicon"
|
|
468
|
+
version = "0.13.2"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "unicode-ident"
|
|
474
|
+
version = "1.0.18"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "unicode-segmentation"
|
|
480
|
+
version = "1.12.0"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "unicode-width"
|
|
486
|
+
version = "0.1.14"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "unicode-xid"
|
|
492
|
+
version = "0.2.6"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "unindent"
|
|
498
|
+
version = "0.2.4"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "utf8parse"
|
|
504
|
+
version = "0.2.2"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "version_check"
|
|
510
|
+
version = "0.9.5"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "wasm-encoder"
|
|
516
|
+
version = "0.201.0"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "b9c7d2731df60006819b013f64ccc2019691deccf6e11a1804bc850cd6748f1a"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"leb128",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "wasm-metadata"
|
|
525
|
+
version = "0.201.0"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "0fd83062c17b9f4985d438603cde0a5e8c5c8198201a6937f778b607924c7da2"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"anyhow",
|
|
530
|
+
"indexmap",
|
|
531
|
+
"serde",
|
|
532
|
+
"serde_derive",
|
|
533
|
+
"serde_json",
|
|
534
|
+
"spdx",
|
|
535
|
+
"wasm-encoder",
|
|
536
|
+
"wasmparser",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "wasmparser"
|
|
541
|
+
version = "0.201.0"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "84e5df6dba6c0d7fafc63a450f1738451ed7a0b52295d83e868218fa286bf708"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"bitflags",
|
|
546
|
+
"indexmap",
|
|
547
|
+
"semver",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "windows-link"
|
|
552
|
+
version = "0.1.3"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "windows-sys"
|
|
558
|
+
version = "0.60.2"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"windows-targets",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "windows-targets"
|
|
567
|
+
version = "0.53.3"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"windows-link",
|
|
572
|
+
"windows_aarch64_gnullvm",
|
|
573
|
+
"windows_aarch64_msvc",
|
|
574
|
+
"windows_i686_gnu",
|
|
575
|
+
"windows_i686_gnullvm",
|
|
576
|
+
"windows_i686_msvc",
|
|
577
|
+
"windows_x86_64_gnu",
|
|
578
|
+
"windows_x86_64_gnullvm",
|
|
579
|
+
"windows_x86_64_msvc",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "windows_aarch64_gnullvm"
|
|
584
|
+
version = "0.53.0"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "windows_aarch64_msvc"
|
|
590
|
+
version = "0.53.0"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "windows_i686_gnu"
|
|
596
|
+
version = "0.53.0"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "windows_i686_gnullvm"
|
|
602
|
+
version = "0.53.0"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "windows_i686_msvc"
|
|
608
|
+
version = "0.53.0"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "windows_x86_64_gnu"
|
|
614
|
+
version = "0.53.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "windows_x86_64_gnullvm"
|
|
620
|
+
version = "0.53.0"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "windows_x86_64_msvc"
|
|
626
|
+
version = "0.53.0"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "wit-bindgen"
|
|
632
|
+
version = "0.21.0"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "dbdedb8dd38c89c2cfa71e7450515f1c17f94cc2853881652d005b10f3f2559c"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"bitflags",
|
|
637
|
+
"wit-bindgen-rt",
|
|
638
|
+
"wit-bindgen-rust-macro",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "wit-bindgen-core"
|
|
643
|
+
version = "0.21.0"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "4ebcbf07363368a9e6e8b89c18bff176c4f35ed2dd2f2f5f9c473bb56813369b"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"anyhow",
|
|
648
|
+
"wit-parser",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "wit-bindgen-rt"
|
|
653
|
+
version = "0.21.0"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "026d24a27f6712541fa534f2954bd9e0eb66172f033c2157c0f31d106255c497"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "wit-bindgen-rust"
|
|
659
|
+
version = "0.21.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "a2a4d36bf13b5ef534599d24dae792b1ae2b40fe1248c2754fd3f7343fb2ca70"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"anyhow",
|
|
664
|
+
"heck 0.4.1",
|
|
665
|
+
"indexmap",
|
|
666
|
+
"wasm-metadata",
|
|
667
|
+
"wit-bindgen-core",
|
|
668
|
+
"wit-component",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "wit-bindgen-rust-macro"
|
|
673
|
+
version = "0.21.0"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "bf4bf1b15b5227d1ca9ba7fc6a7850c72f9df0fbac3c46a0855763cc454ff11a"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"anyhow",
|
|
678
|
+
"proc-macro2",
|
|
679
|
+
"quote",
|
|
680
|
+
"syn",
|
|
681
|
+
"wit-bindgen-core",
|
|
682
|
+
"wit-bindgen-rust",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "wit-component"
|
|
687
|
+
version = "0.201.0"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "421c0c848a0660a8c22e2fd217929a0191f14476b68962afd2af89fd22e39825"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"anyhow",
|
|
692
|
+
"bitflags",
|
|
693
|
+
"indexmap",
|
|
694
|
+
"log",
|
|
695
|
+
"serde",
|
|
696
|
+
"serde_derive",
|
|
697
|
+
"serde_json",
|
|
698
|
+
"wasm-encoder",
|
|
699
|
+
"wasm-metadata",
|
|
700
|
+
"wasmparser",
|
|
701
|
+
"wit-parser",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "wit-parser"
|
|
706
|
+
version = "0.201.0"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "196d3ecfc4b759a8573bf86a9b3f8996b304b3732e4c7de81655f875f6efdca6"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"anyhow",
|
|
711
|
+
"id-arena",
|
|
712
|
+
"indexmap",
|
|
713
|
+
"log",
|
|
714
|
+
"semver",
|
|
715
|
+
"serde",
|
|
716
|
+
"serde_derive",
|
|
717
|
+
"serde_json",
|
|
718
|
+
"unicode-xid",
|
|
719
|
+
"wasmparser",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "yansi"
|
|
724
|
+
version = "1.0.1"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|