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 +4 -4
- data/ext/rusty_racer/Cargo.toml +7 -2
- data/lib/rusty_racer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea693d067ec0ea289296493726bbecd72444e811218ca35a1beb44bbaf863e7d
|
|
4
|
+
data.tar.gz: f1de072c0f64819c07708e47d385c345b7300e54a41c5186b79858ba73e3f7b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb7f4c71efcb143172a42c80898a9e10eeadc4c519e4f98e317907483ffd4565e751f7d0946b377964cb4b83b4e026cbe555449fac425b284572f088cb6d012e
|
|
7
|
+
data.tar.gz: a859077b54ca976af9466271ada3cd094695b1f896ce09f3bc35d753912dc4e19743f589e322c0f438ca08cc4383bafa5faca16852831dbfd59e80dd74e61614
|
data/ext/rusty_racer/Cargo.toml
CHANGED
|
@@ -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.
|
|
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
|
-
|
|
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"
|
data/lib/rusty_racer/version.rb
CHANGED