Skip to content

Commit 7248029

Browse files
committed
fix: slow types
1 parent 531fc70 commit 7248029

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
package.version = "0.4.1"
2+
package.version = "0.4.2"
33
members = ["crates/*"]
44
resolver = "2"
55

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@denosaurs/netsaur",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"exports": {
55
".": "./mod.ts",
66
"./web": "./web.ts",

packages/core/src/backends/cpu/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const options: FetchOptions = {
1515
name: "netsaur",
1616
url: new URL(import.meta.url).protocol !== "file:"
1717
? new URL(
18-
"https://github.com/denosaurs/netsaur/releases/download/0.4.1/",
18+
"https://github.com/denosaurs/netsaur/releases/download/0.4.2/",
1919
import.meta.url,
2020
)
2121
: "./target/release/",

packages/core/src/backends/gpu/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const options: FetchOptions = {
1515
name: "netsaur_gpu",
1616
url: new URL(import.meta.url).protocol !== "file:"
1717
? new URL(
18-
"https://github.com/denosaurs/netsaur/releases/download/0.4.1/",
18+
"https://github.com/denosaurs/netsaur/releases/download/0.4.2/",
1919
import.meta.url,
2020
)
2121
: "./target/release/",

packages/core/src/backends/wasm/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class WASMInstance {
2222
await instantiate({
2323
url: new URL(import.meta.url).protocol !== "file:"
2424
? new URL(
25-
"https://github.com/denosaurs/netsaur/releases/download/0.4.1/netsaur_bg.wasm",
25+
"https://github.com/denosaurs/netsaur/releases/download/0.4.2/netsaur_bg.wasm",
2626
import.meta.url,
2727
)
2828
: undefined,

packages/tokenizers/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export async function init(): Promise<void> {
1616
await instantiate({
1717
url: new URL(import.meta.url).protocol !== "file:"
1818
? new URL(
19-
"https://github.com/denosaurs/netsaur/releases/download/0.4.1/netsaur_tokenizers_bg.wasm",
19+
"https://github.com/denosaurs/netsaur/releases/download/0.4.2/netsaur_tokenizers_bg.wasm",
2020
import.meta.url,
2121
)
2222
: undefined,

0 commit comments

Comments
 (0)