mirror of
https://github.com/huggingface/candle.git
synced 2025-06-15 18:28:24 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Updates the requirements on [gloo](https://github.com/rustwasm/gloo) to permit the latest version. - [Release notes](https://github.com/rustwasm/gloo/releases) - [Changelog](https://github.com/rustwasm/gloo/blob/master/CHANGELOG.md) - [Commits](https://github.com/rustwasm/gloo/commits) --- updated-dependencies: - dependency-name: gloo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
877 B
TOML
34 lines
877 B
TOML
[package]
|
|
name = "candle-wasm-example-bert"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
candle = { workspace = true }
|
|
candle-nn = { workspace = true }
|
|
candle-transformers = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
tokenizers = { workspace = true, features = ["unstable_wasm"] }
|
|
|
|
# App crates.
|
|
anyhow = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
log = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
safetensors = { workspace = true }
|
|
|
|
# Wasm specific crates.
|
|
console_error_panic_hook = "0.1.7"
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
gloo = "0.11"
|
|
js-sys = "0.3.64"
|
|
wasm-bindgen = "0.2.87"
|
|
serde-wasm-bindgen = "0.6.0"
|