-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.lock
More file actions
102 lines (90 loc) · 1.89 KB
/
Cargo.lock
File metadata and controls
102 lines (90 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "aho-corasick"
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
dependencies = [
"memchr",
]
[[package]]
name = "memchr"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
[[package]]
name = "regex"
version = "1.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.8.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
[[package]]
name = "wb-ast"
version = "0.1.0"
dependencies = [
"wb-diagnostics",
]
[[package]]
name = "wb-core"
version = "0.1.0"
dependencies = [
"wb-ast",
"wb-diagnostics",
"wb-lexer",
"wb-parser",
"wb-runtime",
]
[[package]]
name = "wb-diagnostics"
version = "0.1.0"
[[package]]
name = "wb-lexer"
version = "0.1.0"
dependencies = [
"wb-diagnostics",
]
[[package]]
name = "wb-parser"
version = "0.1.0"
dependencies = [
"wb-ast",
"wb-diagnostics",
"wb-lexer",
]
[[package]]
name = "wb-runtime"
version = "0.1.0"
dependencies = [
"regex",
"wb-ast",
"wb-diagnostics",
]
[[package]]
name = "wibu"
version = "0.1.0"
dependencies = [
"wb-core",
"wb-diagnostics",
]