prometheus-client-mmap 1.1.1-aarch64-linux → 1.2.1-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 200d7f94f7620294d1cca10f2b6bd313ad881467dda6be26e928dbd2117a5e9e
4
- data.tar.gz: a0855c116f306ed7eaa55afa48c5d677dd5b34a0f29eebf588b1f61cde0d836f
3
+ metadata.gz: 173ae0d70b09fbdec1a590b3f45118feeb0adacf8b70cb7f6dd0a223656dfdd4
4
+ data.tar.gz: f7bb04747512b68fa409b13b46168eafa28dd093f81ed7ce5e1693eb01ee8fc9
5
5
  SHA512:
6
- metadata.gz: f1d60723361f21cfd98097e5d2d7edbc8d8dc1dde5cfb25faeb97f4b51384d20a924635a1798d6bbbadd96667dd58123d68ba598d4efb38f74c43ef27520cb79
7
- data.tar.gz: f96e89600a1a9e63bc2be710a1978cbbe5c2b6beac4638bb68f65347d2f43116818388291386fd562d43f1769864cce273f068d59ce0006d203588b8d2d115cc
6
+ metadata.gz: eefedaf1aab3e0b06f17c15c856df9a35ca425370284cdfdb27a1a9ca2244062f9f40978e393a2cebcaf87c4ecc66cf982d48dc7ce8d79dd73ea8df8ef8c43e4
7
+ data.tar.gz: a389f93084006bdd244f60a383f9b1d35e15f2302a0a6081dbe7f00e29d9affa72601e524e9ea65bb89d1dd2aa30704c5ed4a91a639c497321cb211953289e90
@@ -8,27 +8,27 @@ edition = "2021"
8
8
  [dependencies]
9
9
  hashbrown = "0.14"
10
10
  libc = "0.2"
11
- magnus = { version = "0.6", features = ["rb-sys"] }
11
+ magnus = { version = "0.7", features = ["rb-sys"] }
12
12
  memmap2 = "0.9"
13
13
  # v0.26 cannot be built on CentOS 7 https://github.com/nix-rust/nix/issues/1972
14
14
  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.10", features = ["serde"] }
19
- thiserror = "1.0"
18
+ smallvec = { version = "1.13", features = ["serde"] }
19
+ thiserror = "2.0"
20
20
 
21
21
  [dev-dependencies]
22
- bstr = "1.9"
22
+ bstr = "1.11"
23
23
  indoc = "2.0"
24
24
  # We need the `embed` feature to run tests, but this triggers failures when building as a Gem.
25
- magnus = { version = "0.6", features = ["rb-sys","embed"] }
25
+ magnus = { version = "0.7", features = ["rb-sys","embed"] }
26
26
  rand = "0.8"
27
27
  sha2 = "0.10"
28
- tempfile = "3.9"
28
+ tempfile = "3.14"
29
29
 
30
30
  [build-dependencies]
31
- rb-sys-env = "0.1"
31
+ rb-sys-env = { git = "https://github.com/oxidize-rb/rb-sys.git", rev = "5d1999ba70d301581524b8252c8ff3b8a825afa2" }
32
32
 
33
33
  [lib]
34
34
  # Integration tests won't work if crate is only `cdylib`.
@@ -25,11 +25,18 @@ use inner::InnerMmap;
25
25
 
26
26
  mod inner;
27
27
 
28
- /// The Ruby `STR_NOEMBED` flag, aka `FL_USER1`.
29
- const STR_NOEMBED: c_ulong = 1 << (13);
28
+ #[cfg(ruby_gte_3_4)]
29
+ /// The Ruby `STR_SHARED` flag, aka `FL_USER0`.
30
+ /// This was changed from `FL_USER2` in https://github.com/ruby/ruby/commit/6deeec5d459ecff5ec4628523b14ac7379fd942e.
31
+ const STR_SHARED: c_ulong = 1 << (12);
32
+
33
+ #[cfg(ruby_lte_3_3)]
30
34
  /// The Ruby `STR_SHARED` flag, aka `FL_USER2`.
31
35
  const STR_SHARED: c_ulong = 1 << (14);
32
36
 
37
+ /// The Ruby `STR_NOEMBED` flag, aka `FL_USER1`.
38
+ const STR_NOEMBED: c_ulong = 1 << (13);
39
+
33
40
  /// A Rust struct wrapped in a Ruby object, providing access to a memory-mapped
34
41
  /// file used to store, update, and read out Prometheus metrics.
35
42
  ///
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module Prometheus
2
2
  module Client
3
- VERSION = '1.1.1'.freeze
3
+ VERSION = '1.2.1'.freeze
4
4
  end
5
5
  end
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.1.1
4
+ version: 1.2.1
5
5
  platform: aarch64-linux
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: 2024-01-30 00:00:00.000000000 Z
14
+ date: 2024-12-29 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rb_sys
@@ -27,6 +27,34 @@ dependencies:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: 0.9.86
30
+ - !ruby/object:Gem::Dependency
31
+ name: base64
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ - !ruby/object:Gem::Dependency
45
+ name: bigdecimal
46
+ requirement: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
30
58
  - !ruby/object:Gem::Dependency
31
59
  name: fuzzbert
32
60
  requirement: !ruby/object:Gem::Requirement
@@ -81,42 +109,56 @@ dependencies:
81
109
  requirements:
82
110
  - - "~>"
83
111
  - !ruby/object:Gem::Version
84
- version: 1.2.1
112
+ version: 1.2.7
85
113
  type: :development
86
114
  prerelease: false
87
115
  version_requirements: !ruby/object:Gem::Requirement
88
116
  requirements:
89
117
  - - "~>"
90
118
  - !ruby/object:Gem::Version
91
- version: 1.2.1
119
+ version: 1.2.7
92
120
  - !ruby/object:Gem::Dependency
93
121
  name: rake-compiler-dock
94
122
  requirement: !ruby/object:Gem::Requirement
95
123
  requirements:
96
124
  - - "~>"
97
125
  - !ruby/object:Gem::Version
98
- version: 1.4.0
126
+ version: 1.7.0
127
+ type: :development
128
+ prerelease: false
129
+ version_requirements: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - "~>"
132
+ - !ruby/object:Gem::Version
133
+ version: 1.7.0
134
+ - !ruby/object:Gem::Dependency
135
+ name: rspec
136
+ requirement: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - "~>"
139
+ - !ruby/object:Gem::Version
140
+ version: '3.2'
99
141
  type: :development
100
142
  prerelease: false
101
143
  version_requirements: !ruby/object:Gem::Requirement
102
144
  requirements:
103
145
  - - "~>"
104
146
  - !ruby/object:Gem::Version
105
- version: 1.4.0
147
+ version: '3.2'
106
148
  - !ruby/object:Gem::Dependency
107
149
  name: ruby-prof
108
150
  requirement: !ruby/object:Gem::Requirement
109
151
  requirements:
110
152
  - - "~>"
111
153
  - !ruby/object:Gem::Version
112
- version: 0.16.2
154
+ version: '1.7'
113
155
  type: :development
114
156
  prerelease: false
115
157
  version_requirements: !ruby/object:Gem::Requirement
116
158
  requirements:
117
159
  - - "~>"
118
160
  - !ruby/object:Gem::Version
119
- version: 0.16.2
161
+ version: '1.7'
120
162
  description:
121
163
  email:
122
164
  - ts@soundcloud.com
@@ -129,8 +171,6 @@ extra_rdoc_files: []
129
171
  files:
130
172
  - ".tool-versions"
131
173
  - README.md
132
- - ext/fast_mmaped_file_rs/.cargo/config.toml
133
- - ext/fast_mmaped_file_rs/Cargo.lock
134
174
  - ext/fast_mmaped_file_rs/Cargo.toml
135
175
  - ext/fast_mmaped_file_rs/README.md
136
176
  - ext/fast_mmaped_file_rs/build.rs
@@ -146,11 +186,10 @@ files:
146
186
  - ext/fast_mmaped_file_rs/src/raw_entry.rs
147
187
  - ext/fast_mmaped_file_rs/src/testhelper.rs
148
188
  - ext/fast_mmaped_file_rs/src/util.rs
149
- - lib/2.7/fast_mmaped_file_rs.so
150
- - lib/3.0/fast_mmaped_file_rs.so
151
189
  - lib/3.1/fast_mmaped_file_rs.so
152
190
  - lib/3.2/fast_mmaped_file_rs.so
153
191
  - lib/3.3/fast_mmaped_file_rs.so
192
+ - lib/3.4/fast_mmaped_file_rs.so
154
193
  - lib/prometheus.rb
155
194
  - lib/prometheus/client.rb
156
195
  - lib/prometheus/client/configuration.rb
@@ -192,17 +231,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
192
231
  requirements:
193
232
  - - ">="
194
233
  - !ruby/object:Gem::Version
195
- version: '2.7'
234
+ version: '3.1'
196
235
  - - "<"
197
236
  - !ruby/object:Gem::Version
198
- version: 3.4.dev
237
+ version: 3.5.dev
199
238
  required_rubygems_version: !ruby/object:Gem::Requirement
200
239
  requirements:
201
240
  - - ">="
202
241
  - !ruby/object:Gem::Version
203
242
  version: '0'
204
243
  requirements: []
205
- rubygems_version: 3.4.4
244
+ rubygems_version: 3.5.23
206
245
  signing_key:
207
246
  specification_version: 4
208
247
  summary: A suite of instrumentation metric primitives that can be exposed through
@@ -1,23 +0,0 @@
1
- [target.aarch64-apple-darwin]
2
- # Without this flag, when linking static libruby, the linker removes symbols
3
- # (such as `_rb_ext_ractor_safe`) which it thinks are dead code... but they are
4
- # not, and they need to be included for the `embed` feature to work with static
5
- # Ruby.
6
- rustflags = [
7
- "-C", "link-dead-code=on",
8
- "-C", "link-arg=-undefined",
9
- "-C", "link-arg=dynamic_lookup",
10
- ]
11
-
12
- [target.x86_64-apple-darwin]
13
- rustflags = [
14
- "-C", "link-dead-code=on",
15
- "-C", "link-arg=-undefined",
16
- "-C", "link-arg=dynamic_lookup",
17
- ]
18
-
19
- [target.aarch64-unknown-linux-gnu]
20
- rustflags = [ "-C", "link-dead-code=on" ]
21
-
22
- [target.x86_64-unknown-linux-gnu]
23
- rustflags = [ "-C", "link-dead-code=on" ]
@@ -1,795 +0,0 @@
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.7"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
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.2"
20
- source = "registry+https://github.com/rust-lang/crates.io-index"
21
- checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
22
- dependencies = [
23
- "memchr",
24
- ]
25
-
26
- [[package]]
27
- name = "allocator-api2"
28
- version = "0.2.16"
29
- source = "registry+https://github.com/rust-lang/crates.io-index"
30
- checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
31
-
32
- [[package]]
33
- name = "autocfg"
34
- version = "1.1.0"
35
- source = "registry+https://github.com/rust-lang/crates.io-index"
36
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
37
-
38
- [[package]]
39
- name = "bindgen"
40
- version = "0.69.2"
41
- source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "a4c69fae65a523209d34240b60abe0c42d33d1045d445c0839d8a4894a736e2d"
43
- dependencies = [
44
- "bitflags 2.4.2",
45
- "cexpr",
46
- "clang-sys",
47
- "lazy_static",
48
- "lazycell",
49
- "peeking_take_while",
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.4.2"
67
- source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
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.9.0"
82
- source = "registry+https://github.com/rust-lang/crates.io-index"
83
- checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
84
- dependencies = [
85
- "memchr",
86
- "regex-automata",
87
- "serde",
88
- ]
89
-
90
- [[package]]
91
- name = "cexpr"
92
- version = "0.6.0"
93
- source = "registry+https://github.com/rust-lang/crates.io-index"
94
- checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
95
- dependencies = [
96
- "nom",
97
- ]
98
-
99
- [[package]]
100
- name = "cfg-if"
101
- version = "1.0.0"
102
- source = "registry+https://github.com/rust-lang/crates.io-index"
103
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
104
-
105
- [[package]]
106
- name = "clang-sys"
107
- version = "1.7.0"
108
- source = "registry+https://github.com/rust-lang/crates.io-index"
109
- checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
110
- dependencies = [
111
- "glob",
112
- "libc",
113
- "libloading",
114
- ]
115
-
116
- [[package]]
117
- name = "cpufeatures"
118
- version = "0.2.12"
119
- source = "registry+https://github.com/rust-lang/crates.io-index"
120
- checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
121
- dependencies = [
122
- "libc",
123
- ]
124
-
125
- [[package]]
126
- name = "crypto-common"
127
- version = "0.1.6"
128
- source = "registry+https://github.com/rust-lang/crates.io-index"
129
- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
130
- dependencies = [
131
- "generic-array",
132
- "typenum",
133
- ]
134
-
135
- [[package]]
136
- name = "digest"
137
- version = "0.10.7"
138
- source = "registry+https://github.com/rust-lang/crates.io-index"
139
- checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
140
- dependencies = [
141
- "block-buffer",
142
- "crypto-common",
143
- ]
144
-
145
- [[package]]
146
- name = "errno"
147
- version = "0.3.8"
148
- source = "registry+https://github.com/rust-lang/crates.io-index"
149
- checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
150
- dependencies = [
151
- "libc",
152
- "windows-sys 0.52.0",
153
- ]
154
-
155
- [[package]]
156
- name = "fast_mmaped_file_rs"
157
- version = "0.1.0"
158
- dependencies = [
159
- "bstr",
160
- "hashbrown",
161
- "indoc",
162
- "libc",
163
- "magnus",
164
- "memmap2",
165
- "nix",
166
- "rand",
167
- "rb-sys",
168
- "rb-sys-env",
169
- "serde",
170
- "serde_json",
171
- "sha2",
172
- "smallvec",
173
- "tempfile",
174
- "thiserror",
175
- ]
176
-
177
- [[package]]
178
- name = "fastrand"
179
- version = "2.0.1"
180
- source = "registry+https://github.com/rust-lang/crates.io-index"
181
- checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
182
-
183
- [[package]]
184
- name = "generic-array"
185
- version = "0.14.7"
186
- source = "registry+https://github.com/rust-lang/crates.io-index"
187
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
188
- dependencies = [
189
- "typenum",
190
- "version_check",
191
- ]
192
-
193
- [[package]]
194
- name = "getrandom"
195
- version = "0.2.12"
196
- source = "registry+https://github.com/rust-lang/crates.io-index"
197
- checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
198
- dependencies = [
199
- "cfg-if",
200
- "libc",
201
- "wasi",
202
- ]
203
-
204
- [[package]]
205
- name = "glob"
206
- version = "0.3.1"
207
- source = "registry+https://github.com/rust-lang/crates.io-index"
208
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
209
-
210
- [[package]]
211
- name = "hashbrown"
212
- version = "0.14.3"
213
- source = "registry+https://github.com/rust-lang/crates.io-index"
214
- checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
215
- dependencies = [
216
- "ahash",
217
- "allocator-api2",
218
- ]
219
-
220
- [[package]]
221
- name = "indoc"
222
- version = "2.0.4"
223
- source = "registry+https://github.com/rust-lang/crates.io-index"
224
- checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
225
-
226
- [[package]]
227
- name = "itoa"
228
- version = "1.0.10"
229
- source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
231
-
232
- [[package]]
233
- name = "lazy_static"
234
- version = "1.4.0"
235
- source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
237
-
238
- [[package]]
239
- name = "lazycell"
240
- version = "1.3.0"
241
- source = "registry+https://github.com/rust-lang/crates.io-index"
242
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
243
-
244
- [[package]]
245
- name = "libc"
246
- version = "0.2.152"
247
- source = "registry+https://github.com/rust-lang/crates.io-index"
248
- checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
249
-
250
- [[package]]
251
- name = "libloading"
252
- version = "0.8.1"
253
- source = "registry+https://github.com/rust-lang/crates.io-index"
254
- checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
255
- dependencies = [
256
- "cfg-if",
257
- "windows-sys 0.48.0",
258
- ]
259
-
260
- [[package]]
261
- name = "linux-raw-sys"
262
- version = "0.4.13"
263
- source = "registry+https://github.com/rust-lang/crates.io-index"
264
- checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
265
-
266
- [[package]]
267
- name = "magnus"
268
- version = "0.6.2"
269
- source = "registry+https://github.com/rust-lang/crates.io-index"
270
- checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
271
- dependencies = [
272
- "magnus-macros",
273
- "rb-sys",
274
- "rb-sys-env",
275
- "seq-macro",
276
- ]
277
-
278
- [[package]]
279
- name = "magnus-macros"
280
- version = "0.6.0"
281
- source = "registry+https://github.com/rust-lang/crates.io-index"
282
- checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
283
- dependencies = [
284
- "proc-macro2",
285
- "quote",
286
- "syn",
287
- ]
288
-
289
- [[package]]
290
- name = "memchr"
291
- version = "2.7.1"
292
- source = "registry+https://github.com/rust-lang/crates.io-index"
293
- checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
294
-
295
- [[package]]
296
- name = "memmap2"
297
- version = "0.9.3"
298
- source = "registry+https://github.com/rust-lang/crates.io-index"
299
- checksum = "45fd3a57831bf88bc63f8cebc0cf956116276e97fef3966103e96416209f7c92"
300
- dependencies = [
301
- "libc",
302
- ]
303
-
304
- [[package]]
305
- name = "memoffset"
306
- version = "0.6.5"
307
- source = "registry+https://github.com/rust-lang/crates.io-index"
308
- checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
309
- dependencies = [
310
- "autocfg",
311
- ]
312
-
313
- [[package]]
314
- name = "minimal-lexical"
315
- version = "0.2.1"
316
- source = "registry+https://github.com/rust-lang/crates.io-index"
317
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
318
-
319
- [[package]]
320
- name = "nix"
321
- version = "0.25.1"
322
- source = "registry+https://github.com/rust-lang/crates.io-index"
323
- checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
324
- dependencies = [
325
- "autocfg",
326
- "bitflags 1.3.2",
327
- "cfg-if",
328
- "libc",
329
- "memoffset",
330
- "pin-utils",
331
- ]
332
-
333
- [[package]]
334
- name = "nom"
335
- version = "7.1.3"
336
- source = "registry+https://github.com/rust-lang/crates.io-index"
337
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
338
- dependencies = [
339
- "memchr",
340
- "minimal-lexical",
341
- ]
342
-
343
- [[package]]
344
- name = "once_cell"
345
- version = "1.19.0"
346
- source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
348
-
349
- [[package]]
350
- name = "peeking_take_while"
351
- version = "0.1.2"
352
- source = "registry+https://github.com/rust-lang/crates.io-index"
353
- checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
354
-
355
- [[package]]
356
- name = "pin-utils"
357
- version = "0.1.0"
358
- source = "registry+https://github.com/rust-lang/crates.io-index"
359
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
360
-
361
- [[package]]
362
- name = "ppv-lite86"
363
- version = "0.2.17"
364
- source = "registry+https://github.com/rust-lang/crates.io-index"
365
- checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
366
-
367
- [[package]]
368
- name = "proc-macro2"
369
- version = "1.0.78"
370
- source = "registry+https://github.com/rust-lang/crates.io-index"
371
- checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
372
- dependencies = [
373
- "unicode-ident",
374
- ]
375
-
376
- [[package]]
377
- name = "quote"
378
- version = "1.0.35"
379
- source = "registry+https://github.com/rust-lang/crates.io-index"
380
- checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
381
- dependencies = [
382
- "proc-macro2",
383
- ]
384
-
385
- [[package]]
386
- name = "rand"
387
- version = "0.8.5"
388
- source = "registry+https://github.com/rust-lang/crates.io-index"
389
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
390
- dependencies = [
391
- "libc",
392
- "rand_chacha",
393
- "rand_core",
394
- ]
395
-
396
- [[package]]
397
- name = "rand_chacha"
398
- version = "0.3.1"
399
- source = "registry+https://github.com/rust-lang/crates.io-index"
400
- checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
401
- dependencies = [
402
- "ppv-lite86",
403
- "rand_core",
404
- ]
405
-
406
- [[package]]
407
- name = "rand_core"
408
- version = "0.6.4"
409
- source = "registry+https://github.com/rust-lang/crates.io-index"
410
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
411
- dependencies = [
412
- "getrandom",
413
- ]
414
-
415
- [[package]]
416
- name = "rb-sys"
417
- version = "0.9.87"
418
- source = "registry+https://github.com/rust-lang/crates.io-index"
419
- checksum = "225103e3d69bbfe8831f9fd0d2461335f3a9dd06aa6e88bcb6d6970383494d06"
420
- dependencies = [
421
- "rb-sys-build",
422
- ]
423
-
424
- [[package]]
425
- name = "rb-sys-build"
426
- version = "0.9.87"
427
- source = "registry+https://github.com/rust-lang/crates.io-index"
428
- checksum = "bacce8095a5167d5ede618bbd9353e9d9e2f32ddaf54be911106f0ee6baacf09"
429
- dependencies = [
430
- "bindgen",
431
- "lazy_static",
432
- "proc-macro2",
433
- "quote",
434
- "regex",
435
- "shell-words",
436
- "syn",
437
- ]
438
-
439
- [[package]]
440
- name = "rb-sys-env"
441
- version = "0.1.2"
442
- source = "registry+https://github.com/rust-lang/crates.io-index"
443
- checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
444
-
445
- [[package]]
446
- name = "redox_syscall"
447
- version = "0.4.1"
448
- source = "registry+https://github.com/rust-lang/crates.io-index"
449
- checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
450
- dependencies = [
451
- "bitflags 1.3.2",
452
- ]
453
-
454
- [[package]]
455
- name = "regex"
456
- version = "1.10.3"
457
- source = "registry+https://github.com/rust-lang/crates.io-index"
458
- checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
459
- dependencies = [
460
- "aho-corasick",
461
- "memchr",
462
- "regex-automata",
463
- "regex-syntax",
464
- ]
465
-
466
- [[package]]
467
- name = "regex-automata"
468
- version = "0.4.4"
469
- source = "registry+https://github.com/rust-lang/crates.io-index"
470
- checksum = "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a"
471
- dependencies = [
472
- "aho-corasick",
473
- "memchr",
474
- "regex-syntax",
475
- ]
476
-
477
- [[package]]
478
- name = "regex-syntax"
479
- version = "0.8.2"
480
- source = "registry+https://github.com/rust-lang/crates.io-index"
481
- checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
482
-
483
- [[package]]
484
- name = "rustc-hash"
485
- version = "1.1.0"
486
- source = "registry+https://github.com/rust-lang/crates.io-index"
487
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
488
-
489
- [[package]]
490
- name = "rustix"
491
- version = "0.38.30"
492
- source = "registry+https://github.com/rust-lang/crates.io-index"
493
- checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca"
494
- dependencies = [
495
- "bitflags 2.4.2",
496
- "errno",
497
- "libc",
498
- "linux-raw-sys",
499
- "windows-sys 0.52.0",
500
- ]
501
-
502
- [[package]]
503
- name = "ryu"
504
- version = "1.0.16"
505
- source = "registry+https://github.com/rust-lang/crates.io-index"
506
- checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
507
-
508
- [[package]]
509
- name = "seq-macro"
510
- version = "0.3.5"
511
- source = "registry+https://github.com/rust-lang/crates.io-index"
512
- checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
513
-
514
- [[package]]
515
- name = "serde"
516
- version = "1.0.195"
517
- source = "registry+https://github.com/rust-lang/crates.io-index"
518
- checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
519
- dependencies = [
520
- "serde_derive",
521
- ]
522
-
523
- [[package]]
524
- name = "serde_derive"
525
- version = "1.0.195"
526
- source = "registry+https://github.com/rust-lang/crates.io-index"
527
- checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
528
- dependencies = [
529
- "proc-macro2",
530
- "quote",
531
- "syn",
532
- ]
533
-
534
- [[package]]
535
- name = "serde_json"
536
- version = "1.0.111"
537
- source = "registry+https://github.com/rust-lang/crates.io-index"
538
- checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
539
- dependencies = [
540
- "itoa",
541
- "ryu",
542
- "serde",
543
- ]
544
-
545
- [[package]]
546
- name = "sha2"
547
- version = "0.10.8"
548
- source = "registry+https://github.com/rust-lang/crates.io-index"
549
- checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
550
- dependencies = [
551
- "cfg-if",
552
- "cpufeatures",
553
- "digest",
554
- ]
555
-
556
- [[package]]
557
- name = "shell-words"
558
- version = "1.1.0"
559
- source = "registry+https://github.com/rust-lang/crates.io-index"
560
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
561
-
562
- [[package]]
563
- name = "shlex"
564
- version = "1.3.0"
565
- source = "registry+https://github.com/rust-lang/crates.io-index"
566
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
567
-
568
- [[package]]
569
- name = "smallvec"
570
- version = "1.13.1"
571
- source = "registry+https://github.com/rust-lang/crates.io-index"
572
- checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
573
- dependencies = [
574
- "serde",
575
- ]
576
-
577
- [[package]]
578
- name = "syn"
579
- version = "2.0.48"
580
- source = "registry+https://github.com/rust-lang/crates.io-index"
581
- checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
582
- dependencies = [
583
- "proc-macro2",
584
- "quote",
585
- "unicode-ident",
586
- ]
587
-
588
- [[package]]
589
- name = "tempfile"
590
- version = "3.9.0"
591
- source = "registry+https://github.com/rust-lang/crates.io-index"
592
- checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
593
- dependencies = [
594
- "cfg-if",
595
- "fastrand",
596
- "redox_syscall",
597
- "rustix",
598
- "windows-sys 0.52.0",
599
- ]
600
-
601
- [[package]]
602
- name = "thiserror"
603
- version = "1.0.56"
604
- source = "registry+https://github.com/rust-lang/crates.io-index"
605
- checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
606
- dependencies = [
607
- "thiserror-impl",
608
- ]
609
-
610
- [[package]]
611
- name = "thiserror-impl"
612
- version = "1.0.56"
613
- source = "registry+https://github.com/rust-lang/crates.io-index"
614
- checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
615
- dependencies = [
616
- "proc-macro2",
617
- "quote",
618
- "syn",
619
- ]
620
-
621
- [[package]]
622
- name = "typenum"
623
- version = "1.17.0"
624
- source = "registry+https://github.com/rust-lang/crates.io-index"
625
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
626
-
627
- [[package]]
628
- name = "unicode-ident"
629
- version = "1.0.12"
630
- source = "registry+https://github.com/rust-lang/crates.io-index"
631
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
632
-
633
- [[package]]
634
- name = "version_check"
635
- version = "0.9.4"
636
- source = "registry+https://github.com/rust-lang/crates.io-index"
637
- checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
638
-
639
- [[package]]
640
- name = "wasi"
641
- version = "0.11.0+wasi-snapshot-preview1"
642
- source = "registry+https://github.com/rust-lang/crates.io-index"
643
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
644
-
645
- [[package]]
646
- name = "windows-sys"
647
- version = "0.48.0"
648
- source = "registry+https://github.com/rust-lang/crates.io-index"
649
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
650
- dependencies = [
651
- "windows-targets 0.48.5",
652
- ]
653
-
654
- [[package]]
655
- name = "windows-sys"
656
- version = "0.52.0"
657
- source = "registry+https://github.com/rust-lang/crates.io-index"
658
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
659
- dependencies = [
660
- "windows-targets 0.52.0",
661
- ]
662
-
663
- [[package]]
664
- name = "windows-targets"
665
- version = "0.48.5"
666
- source = "registry+https://github.com/rust-lang/crates.io-index"
667
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
668
- dependencies = [
669
- "windows_aarch64_gnullvm 0.48.5",
670
- "windows_aarch64_msvc 0.48.5",
671
- "windows_i686_gnu 0.48.5",
672
- "windows_i686_msvc 0.48.5",
673
- "windows_x86_64_gnu 0.48.5",
674
- "windows_x86_64_gnullvm 0.48.5",
675
- "windows_x86_64_msvc 0.48.5",
676
- ]
677
-
678
- [[package]]
679
- name = "windows-targets"
680
- version = "0.52.0"
681
- source = "registry+https://github.com/rust-lang/crates.io-index"
682
- checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
683
- dependencies = [
684
- "windows_aarch64_gnullvm 0.52.0",
685
- "windows_aarch64_msvc 0.52.0",
686
- "windows_i686_gnu 0.52.0",
687
- "windows_i686_msvc 0.52.0",
688
- "windows_x86_64_gnu 0.52.0",
689
- "windows_x86_64_gnullvm 0.52.0",
690
- "windows_x86_64_msvc 0.52.0",
691
- ]
692
-
693
- [[package]]
694
- name = "windows_aarch64_gnullvm"
695
- version = "0.48.5"
696
- source = "registry+https://github.com/rust-lang/crates.io-index"
697
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
698
-
699
- [[package]]
700
- name = "windows_aarch64_gnullvm"
701
- version = "0.52.0"
702
- source = "registry+https://github.com/rust-lang/crates.io-index"
703
- checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
704
-
705
- [[package]]
706
- name = "windows_aarch64_msvc"
707
- version = "0.48.5"
708
- source = "registry+https://github.com/rust-lang/crates.io-index"
709
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
710
-
711
- [[package]]
712
- name = "windows_aarch64_msvc"
713
- version = "0.52.0"
714
- source = "registry+https://github.com/rust-lang/crates.io-index"
715
- checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
716
-
717
- [[package]]
718
- name = "windows_i686_gnu"
719
- version = "0.48.5"
720
- source = "registry+https://github.com/rust-lang/crates.io-index"
721
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
722
-
723
- [[package]]
724
- name = "windows_i686_gnu"
725
- version = "0.52.0"
726
- source = "registry+https://github.com/rust-lang/crates.io-index"
727
- checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
728
-
729
- [[package]]
730
- name = "windows_i686_msvc"
731
- version = "0.48.5"
732
- source = "registry+https://github.com/rust-lang/crates.io-index"
733
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
734
-
735
- [[package]]
736
- name = "windows_i686_msvc"
737
- version = "0.52.0"
738
- source = "registry+https://github.com/rust-lang/crates.io-index"
739
- checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
740
-
741
- [[package]]
742
- name = "windows_x86_64_gnu"
743
- version = "0.48.5"
744
- source = "registry+https://github.com/rust-lang/crates.io-index"
745
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
746
-
747
- [[package]]
748
- name = "windows_x86_64_gnu"
749
- version = "0.52.0"
750
- source = "registry+https://github.com/rust-lang/crates.io-index"
751
- checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
752
-
753
- [[package]]
754
- name = "windows_x86_64_gnullvm"
755
- version = "0.48.5"
756
- source = "registry+https://github.com/rust-lang/crates.io-index"
757
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
758
-
759
- [[package]]
760
- name = "windows_x86_64_gnullvm"
761
- version = "0.52.0"
762
- source = "registry+https://github.com/rust-lang/crates.io-index"
763
- checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
764
-
765
- [[package]]
766
- name = "windows_x86_64_msvc"
767
- version = "0.48.5"
768
- source = "registry+https://github.com/rust-lang/crates.io-index"
769
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
770
-
771
- [[package]]
772
- name = "windows_x86_64_msvc"
773
- version = "0.52.0"
774
- source = "registry+https://github.com/rust-lang/crates.io-index"
775
- checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
776
-
777
- [[package]]
778
- name = "zerocopy"
779
- version = "0.7.32"
780
- source = "registry+https://github.com/rust-lang/crates.io-index"
781
- checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
782
- dependencies = [
783
- "zerocopy-derive",
784
- ]
785
-
786
- [[package]]
787
- name = "zerocopy-derive"
788
- version = "0.7.32"
789
- source = "registry+https://github.com/rust-lang/crates.io-index"
790
- checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
791
- dependencies = [
792
- "proc-macro2",
793
- "quote",
794
- "syn",
795
- ]
Binary file
Binary file