brewery
notashelf /
35ea43577618fa2e62dc7247aaf1d4b0ecba782f

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.lock270 lines6.8 KB
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 = "anyhow"
16
version = "1.0.102"
17
source = "registry+https://github.com/rust-lang/crates.io-index"
18
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
19
20
[[package]]
21
name = "beer"
22
version = "0.0.0"
23
dependencies = [
24
 "anyhow",
25
 "pound",
26
 "tracing",
27
 "tracing-subscriber",
28
]
29
30
[[package]]
31
name = "cfg-if"
32
version = "1.0.4"
33
source = "registry+https://github.com/rust-lang/crates.io-index"
34
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
35
36
[[package]]
37
name = "lazy_static"
38
version = "1.5.0"
39
source = "registry+https://github.com/rust-lang/crates.io-index"
40
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
41
42
[[package]]
43
name = "log"
44
version = "0.4.32"
45
source = "registry+https://github.com/rust-lang/crates.io-index"
46
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
47
48
[[package]]
49
name = "matchers"
50
version = "0.2.0"
51
source = "registry+https://github.com/rust-lang/crates.io-index"
52
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
53
dependencies = [
54
 "regex-automata",
55
]
56
57
[[package]]
58
name = "memchr"
59
version = "2.8.2"
60
source = "registry+https://github.com/rust-lang/crates.io-index"
61
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
62
63
[[package]]
64
name = "nu-ansi-term"
65
version = "0.50.3"
66
source = "registry+https://github.com/rust-lang/crates.io-index"
67
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
68
dependencies = [
69
 "windows-sys",
70
]
71
72
[[package]]
73
name = "once_cell"
74
version = "1.21.4"
75
source = "registry+https://github.com/rust-lang/crates.io-index"
76
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
77
78
[[package]]
79
name = "pin-project-lite"
80
version = "0.2.17"
81
source = "registry+https://github.com/rust-lang/crates.io-index"
82
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
83
84
[[package]]
85
name = "pound"
86
version = "0.1.6"
87
source = "registry+https://github.com/rust-lang/crates.io-index"
88
checksum = "b29188deca8885da40aaafd27d756c5d94420fb8ba8a569663c7a87fef6d28ad"
89
dependencies = [
90
 "pound-derive",
91
]
92
93
[[package]]
94
name = "pound-derive"
95
version = "0.1.6"
96
source = "registry+https://github.com/rust-lang/crates.io-index"
97
checksum = "215966bbf23c9af48d9014a71bc426ecf9be95ffb04b5f1ae3e64f8d8a2a920c"
98
dependencies = [
99
 "proc-macro2",
100
 "quote",
101
 "venial",
102
]
103
104
[[package]]
105
name = "proc-macro2"
106
version = "1.0.106"
107
source = "registry+https://github.com/rust-lang/crates.io-index"
108
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
109
dependencies = [
110
 "unicode-ident",
111
]
112
113
[[package]]
114
name = "quote"
115
version = "1.0.45"
116
source = "registry+https://github.com/rust-lang/crates.io-index"
117
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
118
dependencies = [
119
 "proc-macro2",
120
]
121
122
[[package]]
123
name = "regex-automata"
124
version = "0.4.14"
125
source = "registry+https://github.com/rust-lang/crates.io-index"
126
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
127
dependencies = [
128
 "aho-corasick",
129
 "memchr",
130
 "regex-syntax",
131
]
132
133
[[package]]
134
name = "regex-syntax"
135
version = "0.8.11"
136
source = "registry+https://github.com/rust-lang/crates.io-index"
137
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
138
139
[[package]]
140
name = "sharded-slab"
141
version = "0.1.7"
142
source = "registry+https://github.com/rust-lang/crates.io-index"
143
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
144
dependencies = [
145
 "lazy_static",
146
]
147
148
[[package]]
149
name = "smallvec"
150
version = "1.15.2"
151
source = "registry+https://github.com/rust-lang/crates.io-index"
152
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
153
154
[[package]]
155
name = "syn"
156
version = "2.0.118"
157
source = "registry+https://github.com/rust-lang/crates.io-index"
158
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
159
dependencies = [
160
 "proc-macro2",
161
 "quote",
162
 "unicode-ident",
163
]
164
165
[[package]]
166
name = "thread_local"
167
version = "1.1.9"
168
source = "registry+https://github.com/rust-lang/crates.io-index"
169
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
170
dependencies = [
171
 "cfg-if",
172
]
173
174
[[package]]
175
name = "tracing"
176
version = "0.1.44"
177
source = "registry+https://github.com/rust-lang/crates.io-index"
178
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
179
dependencies = [
180
 "pin-project-lite",
181
 "tracing-attributes",
182
 "tracing-core",
183
]
184
185
[[package]]
186
name = "tracing-attributes"
187
version = "0.1.31"
188
source = "registry+https://github.com/rust-lang/crates.io-index"
189
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
190
dependencies = [
191
 "proc-macro2",
192
 "quote",
193
 "syn",
194
]
195
196
[[package]]
197
name = "tracing-core"
198
version = "0.1.36"
199
source = "registry+https://github.com/rust-lang/crates.io-index"
200
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
201
dependencies = [
202
 "once_cell",
203
 "valuable",
204
]
205
206
[[package]]
207
name = "tracing-log"
208
version = "0.2.0"
209
source = "registry+https://github.com/rust-lang/crates.io-index"
210
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
211
dependencies = [
212
 "log",
213
 "once_cell",
214
 "tracing-core",
215
]
216
217
[[package]]
218
name = "tracing-subscriber"
219
version = "0.3.23"
220
source = "registry+https://github.com/rust-lang/crates.io-index"
221
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
222
dependencies = [
223
 "matchers",
224
 "nu-ansi-term",
225
 "once_cell",
226
 "regex-automata",
227
 "sharded-slab",
228
 "smallvec",
229
 "thread_local",
230
 "tracing",
231
 "tracing-core",
232
 "tracing-log",
233
]
234
235
[[package]]
236
name = "unicode-ident"
237
version = "1.0.24"
238
source = "registry+https://github.com/rust-lang/crates.io-index"
239
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
240
241
[[package]]
242
name = "valuable"
243
version = "0.1.1"
244
source = "registry+https://github.com/rust-lang/crates.io-index"
245
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
246
247
[[package]]
248
name = "venial"
249
version = "0.6.1"
250
source = "registry+https://github.com/rust-lang/crates.io-index"
251
checksum = "9a42528baceab6c7784446df2a10f4185078c39bf73dc614f154353f1a6b1229"
252
dependencies = [
253
 "proc-macro2",
254
 "quote",
255
]
256
257
[[package]]
258
name = "windows-link"
259
version = "0.2.1"
260
source = "registry+https://github.com/rust-lang/crates.io-index"
261
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
262
263
[[package]]
264
name = "windows-sys"
265
version = "0.61.2"
266
source = "registry+https://github.com/rust-lang/crates.io-index"
267
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
268
dependencies = [
269
 "windows-link",
270
]