prometheus-client-mmap 1.2.7-arm64-darwin → 1.2.9-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +784 -0
- data/Cargo.toml +7 -0
- data/ext/fast_mmaped_file_rs/Cargo.toml +2 -2
- data/ext/fast_mmaped_file_rs/src/mmap.rs +1 -1
- data/lib/3.1/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.2/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.3/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.4/fast_mmaped_file_rs.bundle +0 -0
- data/lib/prometheus/client/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2128c3b2a6021e5dfb6d51e176f1e04ba853db524ccf7bfa8536c073b787ff56
|
4
|
+
data.tar.gz: e9e106d9d84a750e8fe156628fd6a16d894b8a7837b0872fdb6b66a4a30dfc27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bfc8eb522ccd3a657273babef6e5f2361e94f3193f43723a296e34d1a723c91fd17292cf84513386eab17e43af9703d905f3e40cd4b8cdecf6e49750b79f82a
|
7
|
+
data.tar.gz: f3847c504ffef6f7d97611a0b50f2f9bf59847d66b735d1865b95687293e26976a16da1b59dc5dc2fa36aa917d9d62d7f58f771ea7fd3191e1c40794a20b31c5
|
data/Cargo.lock
ADDED
@@ -0,0 +1,784 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "ahash"
|
7
|
+
version = "0.8.11"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
10
|
+
dependencies = [
|
11
|
+
"cfg-if",
|
12
|
+
"once_cell",
|
13
|
+
"version_check",
|
14
|
+
"zerocopy",
|
15
|
+
]
|
16
|
+
|
17
|
+
[[package]]
|
18
|
+
name = "aho-corasick"
|
19
|
+
version = "1.1.3"
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
21
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
22
|
+
dependencies = [
|
23
|
+
"memchr",
|
24
|
+
]
|
25
|
+
|
26
|
+
[[package]]
|
27
|
+
name = "allocator-api2"
|
28
|
+
version = "0.2.21"
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
31
|
+
|
32
|
+
[[package]]
|
33
|
+
name = "autocfg"
|
34
|
+
version = "1.4.0"
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
36
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
37
|
+
|
38
|
+
[[package]]
|
39
|
+
name = "bindgen"
|
40
|
+
version = "0.69.5"
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
42
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
43
|
+
dependencies = [
|
44
|
+
"bitflags 2.8.0",
|
45
|
+
"cexpr",
|
46
|
+
"clang-sys",
|
47
|
+
"itertools",
|
48
|
+
"lazy_static",
|
49
|
+
"lazycell",
|
50
|
+
"proc-macro2",
|
51
|
+
"quote",
|
52
|
+
"regex",
|
53
|
+
"rustc-hash",
|
54
|
+
"shlex",
|
55
|
+
"syn",
|
56
|
+
]
|
57
|
+
|
58
|
+
[[package]]
|
59
|
+
name = "bitflags"
|
60
|
+
version = "1.3.2"
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
63
|
+
|
64
|
+
[[package]]
|
65
|
+
name = "bitflags"
|
66
|
+
version = "2.8.0"
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
69
|
+
|
70
|
+
[[package]]
|
71
|
+
name = "block-buffer"
|
72
|
+
version = "0.10.4"
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
74
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
75
|
+
dependencies = [
|
76
|
+
"generic-array",
|
77
|
+
]
|
78
|
+
|
79
|
+
[[package]]
|
80
|
+
name = "bstr"
|
81
|
+
version = "1.11.3"
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
83
|
+
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
|
84
|
+
dependencies = [
|
85
|
+
"memchr",
|
86
|
+
"regex-automata",
|
87
|
+
"serde",
|
88
|
+
]
|
89
|
+
|
90
|
+
[[package]]
|
91
|
+
name = "byteorder"
|
92
|
+
version = "1.5.0"
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
95
|
+
|
96
|
+
[[package]]
|
97
|
+
name = "cexpr"
|
98
|
+
version = "0.6.0"
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
100
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
101
|
+
dependencies = [
|
102
|
+
"nom",
|
103
|
+
]
|
104
|
+
|
105
|
+
[[package]]
|
106
|
+
name = "cfg-if"
|
107
|
+
version = "1.0.0"
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
110
|
+
|
111
|
+
[[package]]
|
112
|
+
name = "clang-sys"
|
113
|
+
version = "1.8.1"
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
115
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
116
|
+
dependencies = [
|
117
|
+
"glob",
|
118
|
+
"libc",
|
119
|
+
"libloading",
|
120
|
+
]
|
121
|
+
|
122
|
+
[[package]]
|
123
|
+
name = "cpufeatures"
|
124
|
+
version = "0.2.17"
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
126
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
127
|
+
dependencies = [
|
128
|
+
"libc",
|
129
|
+
]
|
130
|
+
|
131
|
+
[[package]]
|
132
|
+
name = "crypto-common"
|
133
|
+
version = "0.1.6"
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
136
|
+
dependencies = [
|
137
|
+
"generic-array",
|
138
|
+
"typenum",
|
139
|
+
]
|
140
|
+
|
141
|
+
[[package]]
|
142
|
+
name = "digest"
|
143
|
+
version = "0.10.7"
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
146
|
+
dependencies = [
|
147
|
+
"block-buffer",
|
148
|
+
"crypto-common",
|
149
|
+
]
|
150
|
+
|
151
|
+
[[package]]
|
152
|
+
name = "either"
|
153
|
+
version = "1.13.0"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
156
|
+
|
157
|
+
[[package]]
|
158
|
+
name = "errno"
|
159
|
+
version = "0.3.10"
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
161
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
162
|
+
dependencies = [
|
163
|
+
"libc",
|
164
|
+
"windows-sys",
|
165
|
+
]
|
166
|
+
|
167
|
+
[[package]]
|
168
|
+
name = "fast_mmaped_file_rs"
|
169
|
+
version = "0.1.0"
|
170
|
+
dependencies = [
|
171
|
+
"bstr",
|
172
|
+
"hashbrown",
|
173
|
+
"indoc",
|
174
|
+
"libc",
|
175
|
+
"magnus",
|
176
|
+
"memmap2",
|
177
|
+
"nix",
|
178
|
+
"rand",
|
179
|
+
"rb-sys",
|
180
|
+
"rb-sys-env 0.2.2",
|
181
|
+
"serde",
|
182
|
+
"serde_json",
|
183
|
+
"sha2",
|
184
|
+
"smallvec",
|
185
|
+
"tempfile",
|
186
|
+
"thiserror",
|
187
|
+
]
|
188
|
+
|
189
|
+
[[package]]
|
190
|
+
name = "fastrand"
|
191
|
+
version = "2.3.0"
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
194
|
+
|
195
|
+
[[package]]
|
196
|
+
name = "generic-array"
|
197
|
+
version = "0.14.7"
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
199
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
200
|
+
dependencies = [
|
201
|
+
"typenum",
|
202
|
+
"version_check",
|
203
|
+
]
|
204
|
+
|
205
|
+
[[package]]
|
206
|
+
name = "getrandom"
|
207
|
+
version = "0.2.15"
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
209
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
210
|
+
dependencies = [
|
211
|
+
"cfg-if",
|
212
|
+
"libc",
|
213
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
214
|
+
]
|
215
|
+
|
216
|
+
[[package]]
|
217
|
+
name = "getrandom"
|
218
|
+
version = "0.3.1"
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
220
|
+
checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
|
221
|
+
dependencies = [
|
222
|
+
"cfg-if",
|
223
|
+
"libc",
|
224
|
+
"wasi 0.13.3+wasi-0.2.2",
|
225
|
+
"windows-targets",
|
226
|
+
]
|
227
|
+
|
228
|
+
[[package]]
|
229
|
+
name = "glob"
|
230
|
+
version = "0.3.2"
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
233
|
+
|
234
|
+
[[package]]
|
235
|
+
name = "hashbrown"
|
236
|
+
version = "0.14.5"
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
238
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
239
|
+
dependencies = [
|
240
|
+
"ahash",
|
241
|
+
"allocator-api2",
|
242
|
+
]
|
243
|
+
|
244
|
+
[[package]]
|
245
|
+
name = "indoc"
|
246
|
+
version = "2.0.5"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
249
|
+
|
250
|
+
[[package]]
|
251
|
+
name = "itertools"
|
252
|
+
version = "0.12.1"
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
254
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
255
|
+
dependencies = [
|
256
|
+
"either",
|
257
|
+
]
|
258
|
+
|
259
|
+
[[package]]
|
260
|
+
name = "itoa"
|
261
|
+
version = "1.0.14"
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
263
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
264
|
+
|
265
|
+
[[package]]
|
266
|
+
name = "lazy_static"
|
267
|
+
version = "1.5.0"
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
269
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
270
|
+
|
271
|
+
[[package]]
|
272
|
+
name = "lazycell"
|
273
|
+
version = "1.3.0"
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
276
|
+
|
277
|
+
[[package]]
|
278
|
+
name = "libc"
|
279
|
+
version = "0.2.169"
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
282
|
+
|
283
|
+
[[package]]
|
284
|
+
name = "libloading"
|
285
|
+
version = "0.8.6"
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
288
|
+
dependencies = [
|
289
|
+
"cfg-if",
|
290
|
+
"windows-targets",
|
291
|
+
]
|
292
|
+
|
293
|
+
[[package]]
|
294
|
+
name = "linux-raw-sys"
|
295
|
+
version = "0.4.15"
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
298
|
+
|
299
|
+
[[package]]
|
300
|
+
name = "magnus"
|
301
|
+
version = "0.7.1"
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
304
|
+
dependencies = [
|
305
|
+
"magnus-macros",
|
306
|
+
"rb-sys",
|
307
|
+
"rb-sys-env 0.1.2",
|
308
|
+
"seq-macro",
|
309
|
+
]
|
310
|
+
|
311
|
+
[[package]]
|
312
|
+
name = "magnus-macros"
|
313
|
+
version = "0.6.0"
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
315
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
316
|
+
dependencies = [
|
317
|
+
"proc-macro2",
|
318
|
+
"quote",
|
319
|
+
"syn",
|
320
|
+
]
|
321
|
+
|
322
|
+
[[package]]
|
323
|
+
name = "memchr"
|
324
|
+
version = "2.7.4"
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
326
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
327
|
+
|
328
|
+
[[package]]
|
329
|
+
name = "memmap2"
|
330
|
+
version = "0.9.5"
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
332
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
333
|
+
dependencies = [
|
334
|
+
"libc",
|
335
|
+
]
|
336
|
+
|
337
|
+
[[package]]
|
338
|
+
name = "memoffset"
|
339
|
+
version = "0.6.5"
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
341
|
+
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
342
|
+
dependencies = [
|
343
|
+
"autocfg",
|
344
|
+
]
|
345
|
+
|
346
|
+
[[package]]
|
347
|
+
name = "minimal-lexical"
|
348
|
+
version = "0.2.1"
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
350
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
351
|
+
|
352
|
+
[[package]]
|
353
|
+
name = "nix"
|
354
|
+
version = "0.25.1"
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
356
|
+
checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
|
357
|
+
dependencies = [
|
358
|
+
"autocfg",
|
359
|
+
"bitflags 1.3.2",
|
360
|
+
"cfg-if",
|
361
|
+
"libc",
|
362
|
+
"memoffset",
|
363
|
+
"pin-utils",
|
364
|
+
]
|
365
|
+
|
366
|
+
[[package]]
|
367
|
+
name = "nom"
|
368
|
+
version = "7.1.3"
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
370
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
371
|
+
dependencies = [
|
372
|
+
"memchr",
|
373
|
+
"minimal-lexical",
|
374
|
+
]
|
375
|
+
|
376
|
+
[[package]]
|
377
|
+
name = "once_cell"
|
378
|
+
version = "1.20.2"
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
381
|
+
|
382
|
+
[[package]]
|
383
|
+
name = "pin-utils"
|
384
|
+
version = "0.1.0"
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
386
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
387
|
+
|
388
|
+
[[package]]
|
389
|
+
name = "ppv-lite86"
|
390
|
+
version = "0.2.20"
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
392
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
393
|
+
dependencies = [
|
394
|
+
"zerocopy",
|
395
|
+
]
|
396
|
+
|
397
|
+
[[package]]
|
398
|
+
name = "proc-macro2"
|
399
|
+
version = "1.0.93"
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
402
|
+
dependencies = [
|
403
|
+
"unicode-ident",
|
404
|
+
]
|
405
|
+
|
406
|
+
[[package]]
|
407
|
+
name = "quote"
|
408
|
+
version = "1.0.38"
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
410
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
411
|
+
dependencies = [
|
412
|
+
"proc-macro2",
|
413
|
+
]
|
414
|
+
|
415
|
+
[[package]]
|
416
|
+
name = "rand"
|
417
|
+
version = "0.8.5"
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
419
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
420
|
+
dependencies = [
|
421
|
+
"libc",
|
422
|
+
"rand_chacha",
|
423
|
+
"rand_core",
|
424
|
+
]
|
425
|
+
|
426
|
+
[[package]]
|
427
|
+
name = "rand_chacha"
|
428
|
+
version = "0.3.1"
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
431
|
+
dependencies = [
|
432
|
+
"ppv-lite86",
|
433
|
+
"rand_core",
|
434
|
+
]
|
435
|
+
|
436
|
+
[[package]]
|
437
|
+
name = "rand_core"
|
438
|
+
version = "0.6.4"
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
441
|
+
dependencies = [
|
442
|
+
"getrandom 0.2.15",
|
443
|
+
]
|
444
|
+
|
445
|
+
[[package]]
|
446
|
+
name = "rb-sys"
|
447
|
+
version = "0.9.109"
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "6cfdfe3935ea21d9d3b0251f3258ff8773d9525bc422e27847ca4c567214f0b0"
|
450
|
+
dependencies = [
|
451
|
+
"rb-sys-build",
|
452
|
+
]
|
453
|
+
|
454
|
+
[[package]]
|
455
|
+
name = "rb-sys-build"
|
456
|
+
version = "0.9.109"
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
458
|
+
checksum = "23dd2fa891aed8ff298d6ee0301e4c704a5bf469fbc9e9a46d7c1af26f020ad1"
|
459
|
+
dependencies = [
|
460
|
+
"bindgen",
|
461
|
+
"lazy_static",
|
462
|
+
"proc-macro2",
|
463
|
+
"quote",
|
464
|
+
"regex",
|
465
|
+
"shell-words",
|
466
|
+
"syn",
|
467
|
+
]
|
468
|
+
|
469
|
+
[[package]]
|
470
|
+
name = "rb-sys-env"
|
471
|
+
version = "0.1.2"
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
474
|
+
|
475
|
+
[[package]]
|
476
|
+
name = "rb-sys-env"
|
477
|
+
version = "0.2.2"
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
480
|
+
|
481
|
+
[[package]]
|
482
|
+
name = "regex"
|
483
|
+
version = "1.11.1"
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
486
|
+
dependencies = [
|
487
|
+
"aho-corasick",
|
488
|
+
"memchr",
|
489
|
+
"regex-automata",
|
490
|
+
"regex-syntax",
|
491
|
+
]
|
492
|
+
|
493
|
+
[[package]]
|
494
|
+
name = "regex-automata"
|
495
|
+
version = "0.4.9"
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
497
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
498
|
+
dependencies = [
|
499
|
+
"aho-corasick",
|
500
|
+
"memchr",
|
501
|
+
"regex-syntax",
|
502
|
+
]
|
503
|
+
|
504
|
+
[[package]]
|
505
|
+
name = "regex-syntax"
|
506
|
+
version = "0.8.5"
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
508
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
509
|
+
|
510
|
+
[[package]]
|
511
|
+
name = "rustc-hash"
|
512
|
+
version = "1.1.0"
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
514
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
515
|
+
|
516
|
+
[[package]]
|
517
|
+
name = "rustix"
|
518
|
+
version = "0.38.44"
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
521
|
+
dependencies = [
|
522
|
+
"bitflags 2.8.0",
|
523
|
+
"errno",
|
524
|
+
"libc",
|
525
|
+
"linux-raw-sys",
|
526
|
+
"windows-sys",
|
527
|
+
]
|
528
|
+
|
529
|
+
[[package]]
|
530
|
+
name = "ryu"
|
531
|
+
version = "1.0.19"
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
+
checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
|
534
|
+
|
535
|
+
[[package]]
|
536
|
+
name = "seq-macro"
|
537
|
+
version = "0.3.5"
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
539
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
540
|
+
|
541
|
+
[[package]]
|
542
|
+
name = "serde"
|
543
|
+
version = "1.0.217"
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
545
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
546
|
+
dependencies = [
|
547
|
+
"serde_derive",
|
548
|
+
]
|
549
|
+
|
550
|
+
[[package]]
|
551
|
+
name = "serde_derive"
|
552
|
+
version = "1.0.217"
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
555
|
+
dependencies = [
|
556
|
+
"proc-macro2",
|
557
|
+
"quote",
|
558
|
+
"syn",
|
559
|
+
]
|
560
|
+
|
561
|
+
[[package]]
|
562
|
+
name = "serde_json"
|
563
|
+
version = "1.0.138"
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
565
|
+
checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
|
566
|
+
dependencies = [
|
567
|
+
"itoa",
|
568
|
+
"memchr",
|
569
|
+
"ryu",
|
570
|
+
"serde",
|
571
|
+
]
|
572
|
+
|
573
|
+
[[package]]
|
574
|
+
name = "sha2"
|
575
|
+
version = "0.10.8"
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
578
|
+
dependencies = [
|
579
|
+
"cfg-if",
|
580
|
+
"cpufeatures",
|
581
|
+
"digest",
|
582
|
+
]
|
583
|
+
|
584
|
+
[[package]]
|
585
|
+
name = "shell-words"
|
586
|
+
version = "1.1.0"
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
588
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
589
|
+
|
590
|
+
[[package]]
|
591
|
+
name = "shlex"
|
592
|
+
version = "1.3.0"
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
595
|
+
|
596
|
+
[[package]]
|
597
|
+
name = "smallvec"
|
598
|
+
version = "1.14.0"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
601
|
+
dependencies = [
|
602
|
+
"serde",
|
603
|
+
]
|
604
|
+
|
605
|
+
[[package]]
|
606
|
+
name = "syn"
|
607
|
+
version = "2.0.96"
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
610
|
+
dependencies = [
|
611
|
+
"proc-macro2",
|
612
|
+
"quote",
|
613
|
+
"unicode-ident",
|
614
|
+
]
|
615
|
+
|
616
|
+
[[package]]
|
617
|
+
name = "tempfile"
|
618
|
+
version = "3.17.0"
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
+
checksum = "a40f762a77d2afa88c2d919489e390a12bdd261ed568e60cfa7e48d4e20f0d33"
|
621
|
+
dependencies = [
|
622
|
+
"cfg-if",
|
623
|
+
"fastrand",
|
624
|
+
"getrandom 0.3.1",
|
625
|
+
"once_cell",
|
626
|
+
"rustix",
|
627
|
+
"windows-sys",
|
628
|
+
]
|
629
|
+
|
630
|
+
[[package]]
|
631
|
+
name = "thiserror"
|
632
|
+
version = "2.0.11"
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
635
|
+
dependencies = [
|
636
|
+
"thiserror-impl",
|
637
|
+
]
|
638
|
+
|
639
|
+
[[package]]
|
640
|
+
name = "thiserror-impl"
|
641
|
+
version = "2.0.11"
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
643
|
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
644
|
+
dependencies = [
|
645
|
+
"proc-macro2",
|
646
|
+
"quote",
|
647
|
+
"syn",
|
648
|
+
]
|
649
|
+
|
650
|
+
[[package]]
|
651
|
+
name = "typenum"
|
652
|
+
version = "1.17.0"
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
654
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
655
|
+
|
656
|
+
[[package]]
|
657
|
+
name = "unicode-ident"
|
658
|
+
version = "1.0.16"
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
660
|
+
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
|
661
|
+
|
662
|
+
[[package]]
|
663
|
+
name = "version_check"
|
664
|
+
version = "0.9.5"
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
666
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
667
|
+
|
668
|
+
[[package]]
|
669
|
+
name = "wasi"
|
670
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
672
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "wasi"
|
676
|
+
version = "0.13.3+wasi-0.2.2"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
|
679
|
+
dependencies = [
|
680
|
+
"wit-bindgen-rt",
|
681
|
+
]
|
682
|
+
|
683
|
+
[[package]]
|
684
|
+
name = "windows-sys"
|
685
|
+
version = "0.59.0"
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
687
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
688
|
+
dependencies = [
|
689
|
+
"windows-targets",
|
690
|
+
]
|
691
|
+
|
692
|
+
[[package]]
|
693
|
+
name = "windows-targets"
|
694
|
+
version = "0.52.6"
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
697
|
+
dependencies = [
|
698
|
+
"windows_aarch64_gnullvm",
|
699
|
+
"windows_aarch64_msvc",
|
700
|
+
"windows_i686_gnu",
|
701
|
+
"windows_i686_gnullvm",
|
702
|
+
"windows_i686_msvc",
|
703
|
+
"windows_x86_64_gnu",
|
704
|
+
"windows_x86_64_gnullvm",
|
705
|
+
"windows_x86_64_msvc",
|
706
|
+
]
|
707
|
+
|
708
|
+
[[package]]
|
709
|
+
name = "windows_aarch64_gnullvm"
|
710
|
+
version = "0.52.6"
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
712
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
713
|
+
|
714
|
+
[[package]]
|
715
|
+
name = "windows_aarch64_msvc"
|
716
|
+
version = "0.52.6"
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
719
|
+
|
720
|
+
[[package]]
|
721
|
+
name = "windows_i686_gnu"
|
722
|
+
version = "0.52.6"
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
724
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
725
|
+
|
726
|
+
[[package]]
|
727
|
+
name = "windows_i686_gnullvm"
|
728
|
+
version = "0.52.6"
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
730
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
731
|
+
|
732
|
+
[[package]]
|
733
|
+
name = "windows_i686_msvc"
|
734
|
+
version = "0.52.6"
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
736
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
737
|
+
|
738
|
+
[[package]]
|
739
|
+
name = "windows_x86_64_gnu"
|
740
|
+
version = "0.52.6"
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
743
|
+
|
744
|
+
[[package]]
|
745
|
+
name = "windows_x86_64_gnullvm"
|
746
|
+
version = "0.52.6"
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
748
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
749
|
+
|
750
|
+
[[package]]
|
751
|
+
name = "windows_x86_64_msvc"
|
752
|
+
version = "0.52.6"
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
754
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
755
|
+
|
756
|
+
[[package]]
|
757
|
+
name = "wit-bindgen-rt"
|
758
|
+
version = "0.33.0"
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
760
|
+
checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
|
761
|
+
dependencies = [
|
762
|
+
"bitflags 2.8.0",
|
763
|
+
]
|
764
|
+
|
765
|
+
[[package]]
|
766
|
+
name = "zerocopy"
|
767
|
+
version = "0.7.35"
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
769
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
770
|
+
dependencies = [
|
771
|
+
"byteorder",
|
772
|
+
"zerocopy-derive",
|
773
|
+
]
|
774
|
+
|
775
|
+
[[package]]
|
776
|
+
name = "zerocopy-derive"
|
777
|
+
version = "0.7.35"
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
779
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
780
|
+
dependencies = [
|
781
|
+
"proc-macro2",
|
782
|
+
"quote",
|
783
|
+
"syn",
|
784
|
+
]
|
data/Cargo.toml
ADDED
@@ -15,7 +15,7 @@ nix = { version = "0.25", features = ["mman"] } # mman used for MsFlags
|
|
15
15
|
rb-sys = { version = "0.9", features = ["stable-api-compiled-fallback"] }
|
16
16
|
serde = { version = "1.0", features = ["derive"] }
|
17
17
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
18
|
-
smallvec = { version = "1.
|
18
|
+
smallvec = { version = "1.14", features = ["serde"] }
|
19
19
|
thiserror = "2.0"
|
20
20
|
|
21
21
|
[dev-dependencies]
|
@@ -25,7 +25,7 @@ indoc = "2.0"
|
|
25
25
|
magnus = { version = "0.7", features = ["rb-sys","embed"] }
|
26
26
|
rand = "0.8"
|
27
27
|
sha2 = "0.10"
|
28
|
-
tempfile = "3.
|
28
|
+
tempfile = "3.17"
|
29
29
|
|
30
30
|
[build-dependencies]
|
31
31
|
rb-sys-env = "0.2.2"
|
@@ -638,7 +638,7 @@ impl MmapedFile {
|
|
638
638
|
/// SAFETY: Calling Ruby code while the returned object is held may result
|
639
639
|
/// in it being mutated or dropped.
|
640
640
|
unsafe fn rb_string_internal(rb_str: RString) -> NonNull<rb_sys::RString> {
|
641
|
-
|
641
|
+
NonNull::new_unchecked(rb_str.as_raw() as *mut rb_sys::RString)
|
642
642
|
}
|
643
643
|
|
644
644
|
#[cfg(ruby_lte_3_2)]
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: prometheus-client-mmap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.9
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Tobias Schmidt
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2025-
|
14
|
+
date: 2025-02-19 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: base64
|
@@ -170,6 +170,8 @@ extensions: []
|
|
170
170
|
extra_rdoc_files: []
|
171
171
|
files:
|
172
172
|
- ".tool-versions"
|
173
|
+
- Cargo.lock
|
174
|
+
- Cargo.toml
|
173
175
|
- README.md
|
174
176
|
- ext/fast_mmaped_file_rs/Cargo.toml
|
175
177
|
- ext/fast_mmaped_file_rs/README.md
|