-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.lock
85 lines (74 loc) · 1.79 KB
/
Cargo.lock
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
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "arbitrary"
version = "1.3.0"
source = "registry https://github.com/rust-lang/crates.io-index"
checksum = "e2d098ff73c1ca148721f37baad5ea6a465a13f9573aba8641fbbbae8164a54e"
[[package]]
name = "cc"
version = "1.0.79"
source = "registry https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
dependencies = [
"jobserver",
]
[[package]]
name = "jobserver"
version = "0.1.26"
source = "registry https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
dependencies = [
"libc",
]
[[package]]
name = "libc"
version = "0.2.144"
source = "registry https://github.com/rust-lang/crates.io-index"
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
[[package]]
name = "libfuzzer-sys"
version = "0.4.6"
source = "registry https://github.com/rust-lang/crates.io-index"
checksum = "beb09950ae85a0a94b27676cccf37da5ff13f27076aa1adbc6545dd0d0e1bd4e"
dependencies = [
"arbitrary",
"cc",
"once_cell",
]
[[package]]
name = "once_cell"
version = "1.17.1"
source = "registry https://github.com/rust-lang/crates.io-index"
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
[[package]]
name = "wain-ast"
version = "0.2.1"
[[package]]
name = "wain-fuzz"
version = "0.0.0"
dependencies = [
"libfuzzer-sys",
"wain-syntax-binary",
"wain-syntax-text",
"wain-validate",
]
[[package]]
name = "wain-syntax-binary"
version = "0.1.4"
dependencies = [
"wain-ast",
]
[[package]]
name = "wain-syntax-text"
version = "0.2.0"
dependencies = [
"wain-ast",
]
[[package]]
name = "wain-validate"
version = "0.1.4"
dependencies = [
"wain-ast",
]