diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 179 |
1 files changed, 179 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..73188a4 --- /dev/null +++ b/Cargo.lock | |||
@@ -0,0 +1,179 @@ | |||
1 | # This file is automatically @generated by Cargo. | ||
2 | # It is not intended for manual editing. | ||
3 | version = 3 | ||
4 | |||
5 | [[package]] | ||
6 | name = "ariadne" | ||
7 | version = "0.1.3" | ||
8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
9 | checksum = "7080ae01b2f0c312065d4914cd0f0de045eb8832e9415b355106a6cff3073cb4" | ||
10 | dependencies = [ | ||
11 | "yansi", | ||
12 | ] | ||
13 | |||
14 | [[package]] | ||
15 | name = "autocfg" | ||
16 | version = "1.0.1" | ||
17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
18 | checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" | ||
19 | |||
20 | [[package]] | ||
21 | name = "bin" | ||
22 | version = "0.1.0" | ||
23 | dependencies = [ | ||
24 | "ariadne", | ||
25 | "lib", | ||
26 | ] | ||
27 | |||
28 | [[package]] | ||
29 | name = "cbitset" | ||
30 | version = "0.2.0" | ||
31 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
32 | checksum = "29b6ad25ae296159fb0da12b970b2fe179b234584d7cd294c891e2bbb284466b" | ||
33 | dependencies = [ | ||
34 | "num-traits", | ||
35 | ] | ||
36 | |||
37 | [[package]] | ||
38 | name = "countme" | ||
39 | version = "2.0.4" | ||
40 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
41 | checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58" | ||
42 | |||
43 | [[package]] | ||
44 | name = "hashbrown" | ||
45 | version = "0.9.1" | ||
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
47 | checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" | ||
48 | |||
49 | [[package]] | ||
50 | name = "if_chain" | ||
51 | version = "1.0.2" | ||
52 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
53 | checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" | ||
54 | |||
55 | [[package]] | ||
56 | name = "lazy_static" | ||
57 | version = "1.4.0" | ||
58 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
59 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
60 | |||
61 | [[package]] | ||
62 | name = "lib" | ||
63 | version = "0.1.0" | ||
64 | dependencies = [ | ||
65 | "if_chain", | ||
66 | "lazy_static", | ||
67 | "macros", | ||
68 | "rnix", | ||
69 | ] | ||
70 | |||
71 | [[package]] | ||
72 | name = "macros" | ||
73 | version = "0.1.0" | ||
74 | dependencies = [ | ||
75 | "proc-macro2", | ||
76 | "quote", | ||
77 | "syn", | ||
78 | ] | ||
79 | |||
80 | [[package]] | ||
81 | name = "memoffset" | ||
82 | version = "0.6.4" | ||
83 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
84 | checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" | ||
85 | dependencies = [ | ||
86 | "autocfg", | ||
87 | ] | ||
88 | |||
89 | [[package]] | ||
90 | name = "num-traits" | ||
91 | version = "0.2.14" | ||
92 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
93 | checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" | ||
94 | dependencies = [ | ||
95 | "autocfg", | ||
96 | ] | ||
97 | |||
98 | [[package]] | ||
99 | name = "proc-macro2" | ||
100 | version = "1.0.29" | ||
101 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
102 | checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d" | ||
103 | dependencies = [ | ||
104 | "unicode-xid", | ||
105 | ] | ||
106 | |||
107 | [[package]] | ||
108 | name = "quote" | ||
109 | version = "1.0.9" | ||
110 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
111 | checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" | ||
112 | dependencies = [ | ||
113 | "proc-macro2", | ||
114 | ] | ||
115 | |||
116 | [[package]] | ||
117 | name = "rnix" | ||
118 | version = "0.9.0" | ||
119 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
120 | checksum = "1b37f8af07a0354606141df076458660af7e22238e4117a041c21c548080addd" | ||
121 | dependencies = [ | ||
122 | "cbitset", | ||
123 | "rowan", | ||
124 | "smol_str", | ||
125 | ] | ||
126 | |||
127 | [[package]] | ||
128 | name = "rowan" | ||
129 | version = "0.12.6" | ||
130 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
131 | checksum = "a1b36e449f3702f3b0c821411db1cbdf30fb451726a9456dce5dabcd44420043" | ||
132 | dependencies = [ | ||
133 | "countme", | ||
134 | "hashbrown", | ||
135 | "memoffset", | ||
136 | "rustc-hash", | ||
137 | "text-size", | ||
138 | ] | ||
139 | |||
140 | [[package]] | ||
141 | name = "rustc-hash" | ||
142 | version = "1.1.0" | ||
143 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
144 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" | ||
145 | |||
146 | [[package]] | ||
147 | name = "smol_str" | ||
148 | version = "0.1.18" | ||
149 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
150 | checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0" | ||
151 | |||
152 | [[package]] | ||
153 | name = "syn" | ||
154 | version = "1.0.76" | ||
155 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
156 | checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84" | ||
157 | dependencies = [ | ||
158 | "proc-macro2", | ||
159 | "quote", | ||
160 | "unicode-xid", | ||
161 | ] | ||
162 | |||
163 | [[package]] | ||
164 | name = "text-size" | ||
165 | version = "1.1.0" | ||
166 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
167 | checksum = "288cb548dbe72b652243ea797201f3d481a0609a967980fcc5b2315ea811560a" | ||
168 | |||
169 | [[package]] | ||
170 | name = "unicode-xid" | ||
171 | version = "0.2.2" | ||
172 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
173 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" | ||
174 | |||
175 | [[package]] | ||
176 | name = "yansi" | ||
177 | version = "0.5.0" | ||
178 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
179 | checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71" | ||