Skip to content

Commit 5c60275

Browse files
committed
Merge remote-tracking branch 'origin/main' into hoytak/250701-rate-adjustor
2 parents 7e62405 + b2fc01d commit 5c60275

File tree

11 files changed

+2654
-29
lines changed

11 files changed

+2654
-29
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,15 @@ jobs:
7070
with:
7171
targets: wasm32-unknown-unknown
7272
components: rust-src
73-
- name: Install wasm-bindgen-cli
73+
- name: Install wasm-bindgen-cli and wasm-pack
7474
run: |
75-
cargo install wasm-bindgen-cli
75+
cargo install wasm-bindgen-cli wasm-pack
76+
- name: Build hf_xet_thin_wasm
77+
working-directory: hf_xet_thin_wasm
78+
run: |
79+
./build_wasm.sh
7680
- name: Build hf_xet_wasm
7781
working-directory: hf_xet_wasm
7882
run: |
7983
./build_wasm.sh
84+

Cargo.lock

Lines changed: 58 additions & 23 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
@@ -18,7 +18,7 @@ members = [
1818
"xet_threadpool",
1919
]
2020

21-
exclude = ["chunk_cache_bench", "hf_xet", "hf_xet_wasm"]
21+
exclude = ["chunk_cache_bench", "hf_xet", "hf_xet_wasm", "hf_xet_thin_wasm"]
2222

2323
[profile.release]
2424
opt-level = 3

cas_client/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ serde_json = { workspace = true }
3737

3838
reqwest-middleware = "0.4"
3939
reqwest-retry = "0.7"
40-
reqwest = { version = "0.12", features = [
40+
reqwest = { version = "0.12.22", features = [
4141
"json",
4242
"stream",
43+
"system-proxy"
4344
], default-features = false }
4445
hyper-util = "0.1.10"
4546
tower-service = "0.3.3"

hf_xet/Cargo.lock

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

hf_xet_thin_wasm/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pkg
2+
target

0 commit comments

Comments
 (0)