-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathCargo.toml
44 lines (38 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
default-members = ["crates/ai00-server"]
members = ["crates/ai00-core", "crates/ai00-server", "crates/converter"]
resolver = "2"
[workspace.package]
authors = ["Gu ZhenNiu <[email protected]>", "Zhang Zhenyuan <[email protected]>"]
categories = ["science"]
description = "An implementation of the RWKV language model in pure WebGPU."
edition = "2021"
exclude = ["assets"]
homepage = "https://github.com/cgisky1980/ai00_rwkv_server"
keywords = ["LLM", "deep-learning", "model", "rwkv"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cgisky1980/ai00_rwkv_server"
rust-version = "1.76"
version = "0.5.12"
[workspace.dependencies]
anyhow = "1"
derivative = "2.2.0"
flume = "0.11.0"
itertools = "0.14"
log = "0.4"
memmap2 = "0.9"
safetensors = "0.5"
salvo = "0.75.0"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
[workspace.dependencies.ai00-core]
path = "crates/ai00-core"
[workspace.dependencies.web-rwkv]
# path = "../web-rwkv"
default-features = false
features = ["native"]
version = "0.10.7"
[patch.crates-io]
hf-hub = { git = "https://github.com/cgisky1980/hf-hub.git", branch = "main" }
[profile.release]
lto = false