Skip to content

Commit

Permalink
Format toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
cryscan committed Feb 25, 2024
1 parent 44872e5 commit 9dbb9b0
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
[package]
name = "web-rwkv"
version = "0.6.21"
edition = "2021"
authors = ["Zhenyuan Zhang <[email protected]>"]
license = "MIT OR Apache-2.0"
categories = ["science", "text-processing"]
description = "An implementation of the RWKV language model in pure WebGPU."
edition = "2021"
exclude = ["assets/", "crates/", "screenshots/"]
homepage = "https://github.com/cryscan/web-rwkv"
repository = "https://github.com/cryscan/web-rwkv"
keywords = ["deep-learning", "language", "model", "rwkv"]
categories = ["science", "text-processing"]
exclude = ["assets/", "crates/", "screenshots/"]
license = "MIT OR Apache-2.0"
name = "web-rwkv"
repository = "https://github.com/cryscan/web-rwkv"
version = "0.6.21"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
wgpu = "0.18"
ahash = "0.8"
anyhow = "1"
bitflags = "2.3"
bytemuck = { version = "1.13", features = ["extern_crate_alloc"] }
half = { version = "2.2", features = ["bytemuck"] }
safetensors = "0.4"
flume = "0.11.0"
regex = "1.10"
futures = "0.3"
gpp = "0.6.2"
uid = "0.1"
ahash = "0.8"
bitflags = "2.3"
half = { version = "2.2", features = ["bytemuck"] }
itertools = "0.12"
lazy_static = "1.4"
log = "0.4"
regex = "1.10"
safetensors = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
itertools = "0.12"
log = "0.4"
futures = "0.3"
uid = "0.1"
wasm-bindgen = "0.2"
wgpu = "0.18"

[dependencies.web-rwkv-derive]
version = "0.2.3"
path = "crates/web-rwkv-derive"
version = "0.2.3"

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
memmap2 = "0.9"
fastrand = "2.0"
memmap2 = "0.9"
tokio = { version = "1", features = ["full"] }
# wgpu-profiler = "0.14.1"
clap = { version = "4.3", features = ["derive"] }
crossterm = "0.27"
dialoguer = "0.11.0"
ratatui = { version = "0.26", features = ["all-widgets"] }
crossterm = "0.27"

[profile.release]
lto = false

0 comments on commit 9dbb9b0

Please sign in to comment.