rusty_racer 0.1.0 → 0.1.1

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: 724aca7618b9458b51912665ca47d521dfde28b7c1aa96ebb053206919cc4cec
4
- data.tar.gz: ba40ef90042ceec6fecc771f0c02ec4c3e241c2abf2881a77ab78d9b05bde4f7
3
+ metadata.gz: ea693d067ec0ea289296493726bbecd72444e811218ca35a1beb44bbaf863e7d
4
+ data.tar.gz: f1de072c0f64819c07708e47d385c345b7300e54a41c5186b79858ba73e3f7b7
5
5
  SHA512:
6
- metadata.gz: 82c58b671e6080fd000bab244a6144a44d9112ab30b2d23ea81e1cf9ea4fa6ee74a18a2e21e636b6d32267aeb6f5502e0c7cf6002f503d27aa7d46be201d0b78
7
- data.tar.gz: 89773bf8f89d17192c17114518a7eb8e9a6dd041b1b0e3e3ac52d8c2cc274f2b9a9e5aa1d59a4a39c1f15cdeb304ab851055efd65bab21c9ce859acdf12c9549
6
+ metadata.gz: bb7f4c71efcb143172a42c80898a9e10eeadc4c519e4f98e317907483ffd4565e751f7d0946b377964cb4b83b4e026cbe555449fac425b284572f088cb6d012e
7
+ data.tar.gz: a859077b54ca976af9466271ada3cd094695b1f896ce09f3bc35d753912dc4e19743f589e322c0f438ca08cc4383bafa5faca16852831dbfd59e80dd74e61614
@@ -4,7 +4,7 @@
4
4
  # libv8-rusty needed under the cibuildgem native-per-platform model).
5
5
  [package]
6
6
  name = "rusty_racer"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  edition = "2021"
9
9
  publish = false
10
10
 
@@ -17,7 +17,12 @@ crate-type = ["cdylib"]
17
17
  # to root the owner thread).
18
18
  magnus = { version = "0.8", features = ["rb-sys"] }
19
19
  rb-sys = "0.9"
20
- v8 = "150.0.0"
20
+ # simdutf: SIMD-accelerated UTF-8/UTF-16 transcoding in rusty_v8's String
21
+ # conversion (to_rust_string_lossy etc.), the path every V8->Ruby string crosses.
22
+ # ~6-8x faster marshalling for non-ASCII results (measured); ASCII is unaffected.
23
+ # Needs the linked archive built with rusty_v8_enable_simdutf=true (libv8-rusty.yml
24
+ # for linux; the v8 crate auto-fetches Deno's _simdutf prebuilt on macOS).
25
+ v8 = { version = "150.0.0", features = ["simdutf"] }
21
26
  # pthread stack-bounds query, to set V8's stack limit per op relative to the
22
27
  # current native thread (in-thread V8 runs on the Ruby thread's stack).
23
28
  libc = "0.2"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RustyRacer
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rusty_racer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keita Urashima