rbs 4.0.1.dev.1 → 4.0.1.dev.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cf7af5c33f1ca0c7f4b9c68d148c0e3fead405c92951960aac43aedaf90b77f
4
- data.tar.gz: 214b97b01c4aa99cfe47558a9cb2e2d3b4c16d011a615dcb5c8a9030a5935fb3
3
+ metadata.gz: 8be2481f2dbf4d8ffa7af8731a966020a2c3cfb37fc3de8c33e252c100f8dea2
4
+ data.tar.gz: f93e354ec38fdad73c853b7d7c7243684f7e277f48f4d6e60b7c4aa92ae7da28
5
5
  SHA512:
6
- metadata.gz: 8dade2886d2ed40a6c5f0dc7576de0ad3be008f4f1f0c3bde4d90836287a04e2644b59df104a9f03f2a909d68d586aa15f6304a39359f69f880086ce7755ae6e
7
- data.tar.gz: 56219de896e4cdb3a1ceee783fd91ea27cc11b26724361412e6dd684109fb33d3bb3e9be2b0ff5ede215131795f364eeec519ce38200e3a6aeb3a3439c1b6f82
6
+ metadata.gz: 61d4b0cf2b772e42ce515783923865b8c7dcc4119cba471bc0bfdbfc46b4a01c10b18ebdf1738c611b884624c1ae13db65c6d3cc548a51ae1a7f080178496168
7
+ data.tar.gz: af23c10d85ed68acc8ddead0073d8832186d54c94a7423bbeaab66a9ef175b026f06c5e3b2fc0ea3e3f46edb9739d3c1f2d9beeaee8d6dbe7c031ea60f4751ee
data/lib/rbs/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RBS
4
- VERSION = "4.0.1.dev.1"
4
+ VERSION = "4.0.1.dev.2"
5
5
  end
data/rbs.gemspec CHANGED
@@ -30,8 +30,8 @@ Gem::Specification.new do |spec|
30
30
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
31
31
  `git ls-files -z`.split("\x0").reject do |f|
32
32
  [
33
- %r{^(test|spec|features|bin|steep|benchmark|templates)/},
34
- /Gemfile/
33
+ %r{^(test|spec|features|bin|steep|benchmark|templates|rust)/},
34
+ /Gemfile/,
35
35
  ].any? {|r| f.match(r) }
36
36
  end
37
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbs
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1.dev.1
4
+ version: 4.0.1.dev.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto
@@ -315,22 +315,6 @@ files:
315
315
  - lib/rdoc/discover.rb
316
316
  - lib/rdoc_plugin/parser.rb
317
317
  - rbs.gemspec
318
- - rust/.gitignore
319
- - rust/Cargo.lock
320
- - rust/Cargo.toml
321
- - rust/ruby-rbs-sys/Cargo.toml
322
- - rust/ruby-rbs-sys/build.rs
323
- - rust/ruby-rbs-sys/src/lib.rs
324
- - rust/ruby-rbs-sys/vendor/rbs/include
325
- - rust/ruby-rbs-sys/vendor/rbs/src
326
- - rust/ruby-rbs-sys/wrapper.h
327
- - rust/ruby-rbs/Cargo.toml
328
- - rust/ruby-rbs/build.rs
329
- - rust/ruby-rbs/examples/locations.rs
330
- - rust/ruby-rbs/src/lib.rs
331
- - rust/ruby-rbs/src/node/mod.rs
332
- - rust/ruby-rbs/tests/sanity.rs
333
- - rust/ruby-rbs/vendor/rbs/config.yml
334
318
  - schema/annotation.json
335
319
  - schema/comment.json
336
320
  - schema/decls.json
data/rust/.gitignore DELETED
@@ -1 +0,0 @@
1
- /target/
data/rust/Cargo.lock DELETED
@@ -1,378 +0,0 @@
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.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.72.0"
17
- source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "4f72209734318d0b619a5e0f5129918b848c416e122a3c4ce054e03cb87b726f"
19
- dependencies = [
20
- "bitflags",
21
- "cexpr",
22
- "clang-sys",
23
- "itertools",
24
- "log",
25
- "prettyplease",
26
- "proc-macro2",
27
- "quote",
28
- "regex",
29
- "rustc-hash",
30
- "shlex",
31
- "syn",
32
- ]
33
-
34
- [[package]]
35
- name = "bitflags"
36
- version = "2.9.1"
37
- source = "registry+https://github.com/rust-lang/crates.io-index"
38
- checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
39
-
40
- [[package]]
41
- name = "cc"
42
- version = "1.2.29"
43
- source = "registry+https://github.com/rust-lang/crates.io-index"
44
- checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
45
- dependencies = [
46
- "shlex",
47
- ]
48
-
49
- [[package]]
50
- name = "cexpr"
51
- version = "0.6.0"
52
- source = "registry+https://github.com/rust-lang/crates.io-index"
53
- checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
54
- dependencies = [
55
- "nom",
56
- ]
57
-
58
- [[package]]
59
- name = "cfg-if"
60
- version = "1.0.1"
61
- source = "registry+https://github.com/rust-lang/crates.io-index"
62
- checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
63
-
64
- [[package]]
65
- name = "clang-sys"
66
- version = "1.8.1"
67
- source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
69
- dependencies = [
70
- "glob",
71
- "libc",
72
- "libloading",
73
- ]
74
-
75
- [[package]]
76
- name = "either"
77
- version = "1.15.0"
78
- source = "registry+https://github.com/rust-lang/crates.io-index"
79
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
80
-
81
- [[package]]
82
- name = "equivalent"
83
- version = "1.0.2"
84
- source = "registry+https://github.com/rust-lang/crates.io-index"
85
- checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
86
-
87
- [[package]]
88
- name = "glob"
89
- version = "0.3.2"
90
- source = "registry+https://github.com/rust-lang/crates.io-index"
91
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
92
-
93
- [[package]]
94
- name = "hashbrown"
95
- version = "0.15.5"
96
- source = "registry+https://github.com/rust-lang/crates.io-index"
97
- checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
98
-
99
- [[package]]
100
- name = "indexmap"
101
- version = "2.10.0"
102
- source = "registry+https://github.com/rust-lang/crates.io-index"
103
- checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
104
- dependencies = [
105
- "equivalent",
106
- "hashbrown",
107
- ]
108
-
109
- [[package]]
110
- name = "itertools"
111
- version = "0.13.0"
112
- source = "registry+https://github.com/rust-lang/crates.io-index"
113
- checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
114
- dependencies = [
115
- "either",
116
- ]
117
-
118
- [[package]]
119
- name = "itoa"
120
- version = "1.0.15"
121
- source = "registry+https://github.com/rust-lang/crates.io-index"
122
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
123
-
124
- [[package]]
125
- name = "libc"
126
- version = "0.2.174"
127
- source = "registry+https://github.com/rust-lang/crates.io-index"
128
- checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
129
-
130
- [[package]]
131
- name = "libloading"
132
- version = "0.8.8"
133
- source = "registry+https://github.com/rust-lang/crates.io-index"
134
- checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
135
- dependencies = [
136
- "cfg-if",
137
- "windows-targets",
138
- ]
139
-
140
- [[package]]
141
- name = "log"
142
- version = "0.4.27"
143
- source = "registry+https://github.com/rust-lang/crates.io-index"
144
- checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
145
-
146
- [[package]]
147
- name = "memchr"
148
- version = "2.7.5"
149
- source = "registry+https://github.com/rust-lang/crates.io-index"
150
- checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
151
-
152
- [[package]]
153
- name = "minimal-lexical"
154
- version = "0.2.1"
155
- source = "registry+https://github.com/rust-lang/crates.io-index"
156
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
157
-
158
- [[package]]
159
- name = "nom"
160
- version = "7.1.3"
161
- source = "registry+https://github.com/rust-lang/crates.io-index"
162
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
163
- dependencies = [
164
- "memchr",
165
- "minimal-lexical",
166
- ]
167
-
168
- [[package]]
169
- name = "prettyplease"
170
- version = "0.2.35"
171
- source = "registry+https://github.com/rust-lang/crates.io-index"
172
- checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a"
173
- dependencies = [
174
- "proc-macro2",
175
- "syn",
176
- ]
177
-
178
- [[package]]
179
- name = "proc-macro2"
180
- version = "1.0.95"
181
- source = "registry+https://github.com/rust-lang/crates.io-index"
182
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
183
- dependencies = [
184
- "unicode-ident",
185
- ]
186
-
187
- [[package]]
188
- name = "quote"
189
- version = "1.0.40"
190
- source = "registry+https://github.com/rust-lang/crates.io-index"
191
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
192
- dependencies = [
193
- "proc-macro2",
194
- ]
195
-
196
- [[package]]
197
- name = "regex"
198
- version = "1.11.1"
199
- source = "registry+https://github.com/rust-lang/crates.io-index"
200
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
201
- dependencies = [
202
- "aho-corasick",
203
- "memchr",
204
- "regex-automata",
205
- "regex-syntax",
206
- ]
207
-
208
- [[package]]
209
- name = "regex-automata"
210
- version = "0.4.9"
211
- source = "registry+https://github.com/rust-lang/crates.io-index"
212
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
213
- dependencies = [
214
- "aho-corasick",
215
- "memchr",
216
- "regex-syntax",
217
- ]
218
-
219
- [[package]]
220
- name = "regex-syntax"
221
- version = "0.8.5"
222
- source = "registry+https://github.com/rust-lang/crates.io-index"
223
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
224
-
225
- [[package]]
226
- name = "ruby-rbs"
227
- version = "0.2.0"
228
- dependencies = [
229
- "ruby-rbs-sys",
230
- "serde",
231
- "serde_yaml",
232
- ]
233
-
234
- [[package]]
235
- name = "ruby-rbs-sys"
236
- version = "0.2.0"
237
- dependencies = [
238
- "bindgen",
239
- "cc",
240
- ]
241
-
242
- [[package]]
243
- name = "rustc-hash"
244
- version = "2.1.1"
245
- source = "registry+https://github.com/rust-lang/crates.io-index"
246
- checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
247
-
248
- [[package]]
249
- name = "ryu"
250
- version = "1.0.20"
251
- source = "registry+https://github.com/rust-lang/crates.io-index"
252
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
253
-
254
- [[package]]
255
- name = "serde"
256
- version = "1.0.219"
257
- source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
259
- dependencies = [
260
- "serde_derive",
261
- ]
262
-
263
- [[package]]
264
- name = "serde_derive"
265
- version = "1.0.219"
266
- source = "registry+https://github.com/rust-lang/crates.io-index"
267
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
268
- dependencies = [
269
- "proc-macro2",
270
- "quote",
271
- "syn",
272
- ]
273
-
274
- [[package]]
275
- name = "serde_yaml"
276
- version = "0.9.34+deprecated"
277
- source = "registry+https://github.com/rust-lang/crates.io-index"
278
- checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
279
- dependencies = [
280
- "indexmap",
281
- "itoa",
282
- "ryu",
283
- "serde",
284
- "unsafe-libyaml",
285
- ]
286
-
287
- [[package]]
288
- name = "shlex"
289
- version = "1.3.0"
290
- source = "registry+https://github.com/rust-lang/crates.io-index"
291
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
292
-
293
- [[package]]
294
- name = "syn"
295
- version = "2.0.104"
296
- source = "registry+https://github.com/rust-lang/crates.io-index"
297
- checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
298
- dependencies = [
299
- "proc-macro2",
300
- "quote",
301
- "unicode-ident",
302
- ]
303
-
304
- [[package]]
305
- name = "unicode-ident"
306
- version = "1.0.18"
307
- source = "registry+https://github.com/rust-lang/crates.io-index"
308
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
309
-
310
- [[package]]
311
- name = "unsafe-libyaml"
312
- version = "0.2.11"
313
- source = "registry+https://github.com/rust-lang/crates.io-index"
314
- checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
315
-
316
- [[package]]
317
- name = "windows-targets"
318
- version = "0.53.2"
319
- source = "registry+https://github.com/rust-lang/crates.io-index"
320
- checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
321
- dependencies = [
322
- "windows_aarch64_gnullvm",
323
- "windows_aarch64_msvc",
324
- "windows_i686_gnu",
325
- "windows_i686_gnullvm",
326
- "windows_i686_msvc",
327
- "windows_x86_64_gnu",
328
- "windows_x86_64_gnullvm",
329
- "windows_x86_64_msvc",
330
- ]
331
-
332
- [[package]]
333
- name = "windows_aarch64_gnullvm"
334
- version = "0.53.0"
335
- source = "registry+https://github.com/rust-lang/crates.io-index"
336
- checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
337
-
338
- [[package]]
339
- name = "windows_aarch64_msvc"
340
- version = "0.53.0"
341
- source = "registry+https://github.com/rust-lang/crates.io-index"
342
- checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
343
-
344
- [[package]]
345
- name = "windows_i686_gnu"
346
- version = "0.53.0"
347
- source = "registry+https://github.com/rust-lang/crates.io-index"
348
- checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
349
-
350
- [[package]]
351
- name = "windows_i686_gnullvm"
352
- version = "0.53.0"
353
- source = "registry+https://github.com/rust-lang/crates.io-index"
354
- checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
355
-
356
- [[package]]
357
- name = "windows_i686_msvc"
358
- version = "0.53.0"
359
- source = "registry+https://github.com/rust-lang/crates.io-index"
360
- checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
361
-
362
- [[package]]
363
- name = "windows_x86_64_gnu"
364
- version = "0.53.0"
365
- source = "registry+https://github.com/rust-lang/crates.io-index"
366
- checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
367
-
368
- [[package]]
369
- name = "windows_x86_64_gnullvm"
370
- version = "0.53.0"
371
- source = "registry+https://github.com/rust-lang/crates.io-index"
372
- checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
373
-
374
- [[package]]
375
- name = "windows_x86_64_msvc"
376
- version = "0.53.0"
377
- source = "registry+https://github.com/rust-lang/crates.io-index"
378
- checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
data/rust/Cargo.toml DELETED
@@ -1,7 +0,0 @@
1
- [workspace]
2
- members = [
3
- "ruby-rbs",
4
- "ruby-rbs-sys",
5
- ]
6
-
7
- resolver = "3"
@@ -1,22 +0,0 @@
1
- [package]
2
- name = "ruby-rbs"
3
- version = "0.2.0"
4
- edition = "2024"
5
- license = "BSD-2-Clause"
6
- description = "Rust bindings for RBS -- the type signature language for Ruby programs"
7
- homepage = "https://github.com/ruby/rbs"
8
- repository = "https://github.com/ruby/rbs.git"
9
- readme = "../../README.md"
10
- include = [
11
- "src/**/*",
12
- "vendor/**/*",
13
- "build.rs",
14
- "Cargo.toml",
15
- ]
16
-
17
- [dependencies]
18
- ruby-rbs-sys = { version = "0.2", path = "../ruby-rbs-sys" }
19
-
20
- [build-dependencies]
21
- serde = { version = "1.0", features = ["derive"] }
22
- serde_yaml = "0.9"