itsi-server 0.2.25-aarch64-linux → 0.2.26-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +939 -989
  3. data/Cargo.toml +0 -1
  4. data/ext/itsi_scheduler/Cargo.toml +1 -1
  5. data/ext/itsi_server/Cargo.lock +2 -2
  6. data/ext/itsi_server/Cargo.toml +1 -1
  7. data/ext/itsi_server/src/server/middleware_stack/mod.rs +9 -3
  8. data/ext/itsi_server/src/services/itsi_http_service.rs +8 -5
  9. data/lib/itsi/server/3.1/itsi_server.so +0 -0
  10. data/lib/itsi/server/{itsi_server.so → 3.2/itsi_server.so} +0 -0
  11. data/lib/itsi/server/3.3/itsi_server.so +0 -0
  12. data/lib/itsi/server/3.4/itsi_server.so +0 -0
  13. data/lib/itsi/server/4.0/itsi_server.so +0 -0
  14. data/lib/itsi/server/version.rb +1 -1
  15. metadata +8 -22
  16. data/vendor/rb-sys-build/.cargo-ok +0 -1
  17. data/vendor/rb-sys-build/.cargo_vcs_info.json +0 -6
  18. data/vendor/rb-sys-build/Cargo.lock +0 -294
  19. data/vendor/rb-sys-build/Cargo.toml +0 -71
  20. data/vendor/rb-sys-build/Cargo.toml.orig +0 -32
  21. data/vendor/rb-sys-build/LICENSE-APACHE +0 -190
  22. data/vendor/rb-sys-build/LICENSE-MIT +0 -21
  23. data/vendor/rb-sys-build/src/bindings/sanitizer.rs +0 -185
  24. data/vendor/rb-sys-build/src/bindings/stable_api.rs +0 -247
  25. data/vendor/rb-sys-build/src/bindings/wrapper.h +0 -71
  26. data/vendor/rb-sys-build/src/bindings.rs +0 -280
  27. data/vendor/rb-sys-build/src/cc.rs +0 -421
  28. data/vendor/rb-sys-build/src/lib.rs +0 -12
  29. data/vendor/rb-sys-build/src/rb_config/flags.rs +0 -101
  30. data/vendor/rb-sys-build/src/rb_config/library.rs +0 -132
  31. data/vendor/rb-sys-build/src/rb_config/search_path.rs +0 -57
  32. data/vendor/rb-sys-build/src/rb_config.rs +0 -906
  33. data/vendor/rb-sys-build/src/utils.rs +0 -53
data/Cargo.toml CHANGED
@@ -8,4 +8,3 @@ resolver = "2"
8
8
 
9
9
  [patch.crates-io]
10
10
  magnus = { git = "https://github.com/matsadler/magnus.git", rev = "1ed232edb2b75a2eed9b1def34ad57e55c411a5c" }
11
- rb-sys-build = { path = "vendor/rb-sys-build" }
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "itsi-scheduler"
3
- version = "0.2.25"
3
+ version = "0.2.26"
4
4
  edition = "2021"
5
5
  authors = ["Wouter Coppieters <wc@pico.net.nz>"]
6
6
  license = "MIT"
@@ -984,7 +984,7 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
984
984
 
985
985
  [[package]]
986
986
  name = "itsi-scheduler"
987
- version = "0.2.25"
987
+ version = "0.1.0"
988
988
  dependencies = [
989
989
  "bytes",
990
990
  "derive_more",
@@ -1002,7 +1002,7 @@ dependencies = [
1002
1002
 
1003
1003
  [[package]]
1004
1004
  name = "itsi-server"
1005
- version = "0.2.25"
1005
+ version = "0.1.0"
1006
1006
  dependencies = [
1007
1007
  "async-channel",
1008
1008
  "async-trait",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "itsi-server"
3
- version = "0.2.25"
3
+ version = "0.2.26"
4
4
  edition = "2021"
5
5
  authors = ["Wouter Coppieters <wc@pico.net.nz>"]
6
6
  license = "MIT"
@@ -263,7 +263,7 @@ impl MiddlewareSet {
263
263
  pub fn stack_for(
264
264
  &self,
265
265
  request: &HttpRequest,
266
- ) -> Option<(&Vec<Middleware>, Option<Arc<Regex>>)> {
266
+ ) -> Result<(&Vec<Middleware>, Option<Arc<Regex>>)> {
267
267
  let binding = self.route_set.matches(request.uri().path());
268
268
  let matches = binding.iter();
269
269
 
@@ -276,7 +276,7 @@ impl MiddlewareSet {
276
276
  let matching_pattern = self.patterns.get(index).cloned();
277
277
  if let Some(stack) = self.stacks.get(&index) {
278
278
  if stack.matches(request) {
279
- return Some((&stack.layers, matching_pattern));
279
+ return Ok((&stack.layers, matching_pattern));
280
280
  }
281
281
  }
282
282
  }
@@ -285,7 +285,13 @@ impl MiddlewareSet {
285
285
  request.uri().path(),
286
286
  self.route_set
287
287
  );
288
- None
288
+ Err(magnus::Error::new(
289
+ magnus::Ruby::get().unwrap().exception_standard_error(),
290
+ format!(
291
+ "No matching middleware stack found for request: {:?}",
292
+ request
293
+ ),
294
+ ))
289
295
  }
290
296
 
291
297
  pub fn parse_middleware(middleware_type: String, parameters: Value) -> Result<Middleware> {
@@ -188,11 +188,14 @@ impl ItsiHttpService {
188
188
  let token_preference = self.server_params.itsi_server_token_preference;
189
189
 
190
190
  let service_future = async move {
191
- let Some((stack, matching_pattern)) =
192
- self.server_params.middleware.get().unwrap().stack_for(&req)
193
- else {
194
- return Ok(NOT_FOUND_RESPONSE.to_http_response(accept).await);
195
- };
191
+ let middleware_stack = self
192
+ .server_params
193
+ .middleware
194
+ .get()
195
+ .unwrap()
196
+ .stack_for(&req)
197
+ .unwrap();
198
+ let (stack, matching_pattern) = middleware_stack;
196
199
  let mut resp: Option<HttpResponse> = None;
197
200
 
198
201
  let mut context =
Binary file
Binary file
Binary file
Binary file
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Itsi
4
4
  class Server
5
- VERSION = "0.2.25"
5
+ VERSION = "0.2.26"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itsi-server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.25
4
+ version: 0.2.26
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Wouter Coppieters
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-04-21 00:00:00.000000000 Z
11
+ date: 2026-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -233,6 +233,11 @@ files:
233
233
  - lib/itsi/passfile.rb
234
234
  - lib/itsi/rack_env_pool.rb
235
235
  - lib/itsi/server.rb
236
+ - lib/itsi/server/3.1/itsi_server.so
237
+ - lib/itsi/server/3.2/itsi_server.so
238
+ - lib/itsi/server/3.3/itsi_server.so
239
+ - lib/itsi/server/3.4/itsi_server.so
240
+ - lib/itsi/server/4.0/itsi_server.so
236
241
  - lib/itsi/server/config.rb
237
242
  - lib/itsi/server/config/config_helpers.rb
238
243
  - lib/itsi/server/config/dsl.rb
@@ -500,7 +505,6 @@ files:
500
505
  - lib/itsi/server/grpc/grpc_interface.rb
501
506
  - lib/itsi/server/grpc/reflection/v1/reflection_pb.rb
502
507
  - lib/itsi/server/grpc/reflection/v1/reflection_services_pb.rb
503
- - lib/itsi/server/itsi_server.so
504
508
  - lib/itsi/server/native_extension.rb
505
509
  - lib/itsi/server/rack/handler/itsi.rb
506
510
  - lib/itsi/server/rack_interface.rb
@@ -515,24 +519,6 @@ files:
515
519
  - lib/itsi/standard_headers.rb
516
520
  - lib/ruby_lsp/itsi/addon.rb
517
521
  - lib/shell_completions/completions.rb
518
- - vendor/rb-sys-build/.cargo-ok
519
- - vendor/rb-sys-build/.cargo_vcs_info.json
520
- - vendor/rb-sys-build/Cargo.lock
521
- - vendor/rb-sys-build/Cargo.toml
522
- - vendor/rb-sys-build/Cargo.toml.orig
523
- - vendor/rb-sys-build/LICENSE-APACHE
524
- - vendor/rb-sys-build/LICENSE-MIT
525
- - vendor/rb-sys-build/src/bindings.rs
526
- - vendor/rb-sys-build/src/bindings/sanitizer.rs
527
- - vendor/rb-sys-build/src/bindings/stable_api.rs
528
- - vendor/rb-sys-build/src/bindings/wrapper.h
529
- - vendor/rb-sys-build/src/cc.rs
530
- - vendor/rb-sys-build/src/lib.rs
531
- - vendor/rb-sys-build/src/rb_config.rs
532
- - vendor/rb-sys-build/src/rb_config/flags.rs
533
- - vendor/rb-sys-build/src/rb_config/library.rs
534
- - vendor/rb-sys-build/src/rb_config/search_path.rs
535
- - vendor/rb-sys-build/src/utils.rs
536
522
  homepage: https://itsi.fyi
537
523
  licenses:
538
524
  - LGPL-3.0
@@ -548,7 +534,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
548
534
  requirements:
549
535
  - - ">="
550
536
  - !ruby/object:Gem::Version
551
- version: '4.0'
537
+ version: '3.1'
552
538
  - - "<"
553
539
  - !ruby/object:Gem::Version
554
540
  version: 4.1.dev
@@ -1 +0,0 @@
1
- {"v":1}
@@ -1,6 +0,0 @@
1
- {
2
- "git": {
3
- "sha1": "8b8369748af0e3fa80d20e11b38b423cb2009bdf"
4
- },
5
- "path_in_vcs": "crates/rb-sys-build"
6
- }
@@ -1,294 +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 = "aho-corasick"
7
- version = "1.1.3"
8
- source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
- dependencies = [
11
- "memchr",
12
- ]
13
-
14
- [[package]]
15
- name = "bindgen"
16
- version = "0.69.4"
17
- source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
19
- dependencies = [
20
- "bitflags",
21
- "cexpr",
22
- "clang-sys",
23
- "itertools",
24
- "lazy_static",
25
- "lazycell",
26
- "proc-macro2",
27
- "quote",
28
- "regex",
29
- "rustc-hash",
30
- "shlex",
31
- "syn",
32
- ]
33
-
34
- [[package]]
35
- name = "bitflags"
36
- version = "2.6.0"
37
- source = "registry+https://github.com/rust-lang/crates.io-index"
38
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
39
-
40
- [[package]]
41
- name = "cexpr"
42
- version = "0.6.0"
43
- source = "registry+https://github.com/rust-lang/crates.io-index"
44
- checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
45
- dependencies = [
46
- "nom",
47
- ]
48
-
49
- [[package]]
50
- name = "cfg-if"
51
- version = "1.0.0"
52
- source = "registry+https://github.com/rust-lang/crates.io-index"
53
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
54
-
55
- [[package]]
56
- name = "clang-sys"
57
- version = "1.8.1"
58
- source = "registry+https://github.com/rust-lang/crates.io-index"
59
- checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
60
- dependencies = [
61
- "glob",
62
- "libc",
63
- "libloading",
64
- ]
65
-
66
- [[package]]
67
- name = "either"
68
- version = "1.13.0"
69
- source = "registry+https://github.com/rust-lang/crates.io-index"
70
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
71
-
72
- [[package]]
73
- name = "glob"
74
- version = "0.3.1"
75
- source = "registry+https://github.com/rust-lang/crates.io-index"
76
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
77
-
78
- [[package]]
79
- name = "itertools"
80
- version = "0.12.1"
81
- source = "registry+https://github.com/rust-lang/crates.io-index"
82
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
83
- dependencies = [
84
- "either",
85
- ]
86
-
87
- [[package]]
88
- name = "lazy_static"
89
- version = "1.5.0"
90
- source = "registry+https://github.com/rust-lang/crates.io-index"
91
- checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
92
-
93
- [[package]]
94
- name = "lazycell"
95
- version = "1.3.0"
96
- source = "registry+https://github.com/rust-lang/crates.io-index"
97
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
98
-
99
- [[package]]
100
- name = "libc"
101
- version = "0.2.155"
102
- source = "registry+https://github.com/rust-lang/crates.io-index"
103
- checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
104
-
105
- [[package]]
106
- name = "libloading"
107
- version = "0.8.5"
108
- source = "registry+https://github.com/rust-lang/crates.io-index"
109
- checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
110
- dependencies = [
111
- "cfg-if",
112
- "windows-targets",
113
- ]
114
-
115
- [[package]]
116
- name = "memchr"
117
- version = "2.7.4"
118
- source = "registry+https://github.com/rust-lang/crates.io-index"
119
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
120
-
121
- [[package]]
122
- name = "minimal-lexical"
123
- version = "0.2.1"
124
- source = "registry+https://github.com/rust-lang/crates.io-index"
125
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
126
-
127
- [[package]]
128
- name = "nom"
129
- version = "7.1.3"
130
- source = "registry+https://github.com/rust-lang/crates.io-index"
131
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
132
- dependencies = [
133
- "memchr",
134
- "minimal-lexical",
135
- ]
136
-
137
- [[package]]
138
- name = "proc-macro2"
139
- version = "1.0.103"
140
- source = "registry+https://github.com/rust-lang/crates.io-index"
141
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
142
- dependencies = [
143
- "unicode-ident",
144
- ]
145
-
146
- [[package]]
147
- name = "quote"
148
- version = "1.0.42"
149
- source = "registry+https://github.com/rust-lang/crates.io-index"
150
- checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
151
- dependencies = [
152
- "proc-macro2",
153
- ]
154
-
155
- [[package]]
156
- name = "rb-sys-build"
157
- version = "0.9.124"
158
- dependencies = [
159
- "bindgen",
160
- "lazy_static",
161
- "proc-macro2",
162
- "quote",
163
- "regex",
164
- "shell-words",
165
- "syn",
166
- ]
167
-
168
- [[package]]
169
- name = "regex"
170
- version = "1.12.2"
171
- source = "registry+https://github.com/rust-lang/crates.io-index"
172
- checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
173
- dependencies = [
174
- "aho-corasick",
175
- "memchr",
176
- "regex-automata",
177
- "regex-syntax",
178
- ]
179
-
180
- [[package]]
181
- name = "regex-automata"
182
- version = "0.4.13"
183
- source = "registry+https://github.com/rust-lang/crates.io-index"
184
- checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
185
- dependencies = [
186
- "aho-corasick",
187
- "memchr",
188
- "regex-syntax",
189
- ]
190
-
191
- [[package]]
192
- name = "regex-syntax"
193
- version = "0.8.5"
194
- source = "registry+https://github.com/rust-lang/crates.io-index"
195
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
196
-
197
- [[package]]
198
- name = "rustc-hash"
199
- version = "1.1.0"
200
- source = "registry+https://github.com/rust-lang/crates.io-index"
201
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
202
-
203
- [[package]]
204
- name = "shell-words"
205
- version = "1.1.0"
206
- source = "registry+https://github.com/rust-lang/crates.io-index"
207
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
208
-
209
- [[package]]
210
- name = "shlex"
211
- version = "1.3.0"
212
- source = "registry+https://github.com/rust-lang/crates.io-index"
213
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
214
-
215
- [[package]]
216
- name = "syn"
217
- version = "2.0.111"
218
- source = "registry+https://github.com/rust-lang/crates.io-index"
219
- checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
220
- dependencies = [
221
- "proc-macro2",
222
- "quote",
223
- "unicode-ident",
224
- ]
225
-
226
- [[package]]
227
- name = "unicode-ident"
228
- version = "1.0.12"
229
- source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
231
-
232
- [[package]]
233
- name = "windows-targets"
234
- version = "0.52.6"
235
- source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
237
- dependencies = [
238
- "windows_aarch64_gnullvm",
239
- "windows_aarch64_msvc",
240
- "windows_i686_gnu",
241
- "windows_i686_gnullvm",
242
- "windows_i686_msvc",
243
- "windows_x86_64_gnu",
244
- "windows_x86_64_gnullvm",
245
- "windows_x86_64_msvc",
246
- ]
247
-
248
- [[package]]
249
- name = "windows_aarch64_gnullvm"
250
- version = "0.52.6"
251
- source = "registry+https://github.com/rust-lang/crates.io-index"
252
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
253
-
254
- [[package]]
255
- name = "windows_aarch64_msvc"
256
- version = "0.52.6"
257
- source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
259
-
260
- [[package]]
261
- name = "windows_i686_gnu"
262
- version = "0.52.6"
263
- source = "registry+https://github.com/rust-lang/crates.io-index"
264
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
265
-
266
- [[package]]
267
- name = "windows_i686_gnullvm"
268
- version = "0.52.6"
269
- source = "registry+https://github.com/rust-lang/crates.io-index"
270
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
271
-
272
- [[package]]
273
- name = "windows_i686_msvc"
274
- version = "0.52.6"
275
- source = "registry+https://github.com/rust-lang/crates.io-index"
276
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
277
-
278
- [[package]]
279
- name = "windows_x86_64_gnu"
280
- version = "0.52.6"
281
- source = "registry+https://github.com/rust-lang/crates.io-index"
282
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
283
-
284
- [[package]]
285
- name = "windows_x86_64_gnullvm"
286
- version = "0.52.6"
287
- source = "registry+https://github.com/rust-lang/crates.io-index"
288
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
289
-
290
- [[package]]
291
- name = "windows_x86_64_msvc"
292
- version = "0.52.6"
293
- source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
@@ -1,71 +0,0 @@
1
- # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2
- #
3
- # When uploading crates to the registry Cargo will automatically
4
- # "normalize" Cargo.toml files for maximal compatibility
5
- # with all versions of Cargo and also rewrite `path` dependencies
6
- # to registry (e.g., crates.io) dependencies.
7
- #
8
- # If you are reading this file be aware that the original Cargo.toml
9
- # will likely look very different (and much more reasonable).
10
- # See Cargo.toml.orig for the original contents.
11
-
12
- [package]
13
- edition = "2018"
14
- rust-version = "1.71"
15
- name = "rb-sys-build"
16
- version = "0.9.124"
17
- build = false
18
- autolib = false
19
- autobins = false
20
- autoexamples = false
21
- autotests = false
22
- autobenches = false
23
- description = "Build system for rb-sys"
24
- homepage = "https://github.com/oxidize-rb/rb-sys"
25
- readme = false
26
- license = "MIT OR Apache-2.0"
27
- repository = "https://github.com/oxidize-rb/rb-sys"
28
-
29
- [features]
30
- bindgen-deprecated-types = []
31
- bindgen-enable-function-attribute-detection = []
32
- bindgen-impl-debug = []
33
- bindgen-layout-tests = []
34
- bindgen-rbimpls = []
35
- bindgen-return-const-encoding-pointers = []
36
- bindgen-sizet-is-usize = []
37
- default = []
38
-
39
- [lib]
40
- name = "rb_sys_build"
41
- path = "src/lib.rs"
42
- doctest = false
43
- bench = false
44
-
45
- [dependencies.bindgen]
46
- version = "0.72"
47
- features = ["runtime"]
48
- default-features = false
49
-
50
- [dependencies.lazy_static]
51
- version = "1.4.0"
52
-
53
- [dependencies.proc-macro2]
54
- version = "1.0"
55
-
56
- [dependencies.quote]
57
- version = "1.0"
58
-
59
- [dependencies.regex]
60
- version = "1"
61
-
62
- [dependencies.shell-words]
63
- version = "1.1"
64
-
65
- [dependencies.syn]
66
- version = "2.0"
67
- features = [
68
- "parsing",
69
- "full",
70
- "extra-traits",
71
- ]
@@ -1,32 +0,0 @@
1
- [package]
2
- name = "rb-sys-build"
3
- version = "0.9.124"
4
- edition = "2018"
5
- description = "Build system for rb-sys"
6
- homepage = "https://github.com/oxidize-rb/rb-sys"
7
- license = "MIT OR Apache-2.0"
8
- repository = "https://github.com/oxidize-rb/rb-sys"
9
- rust-version = "1.71"
10
-
11
- [lib]
12
- bench = false
13
- doctest = false
14
-
15
- [dependencies]
16
- regex = "1"
17
- shell-words = "1.1"
18
- bindgen = { version = "0.69", default-features = false, features = ["runtime"] }
19
- syn = { version = "2.0", features = ["parsing", "full", "extra-traits"] }
20
- quote = "1.0"
21
- lazy_static = "1.4.0"
22
- proc-macro2 = "1.0"
23
-
24
- [features]
25
- default = []
26
- bindgen-rbimpls = []
27
- bindgen-deprecated-types = []
28
- bindgen-layout-tests = []
29
- bindgen-impl-debug = []
30
- bindgen-sizet-is-usize = []
31
- bindgen-return-const-encoding-pointers = []
32
- bindgen-enable-function-attribute-detection = []