Skip to content

Commit

Permalink
Update crates.
Browse files Browse the repository at this point in the history
  • Loading branch information
cryscan committed Aug 27, 2023
1 parent cb3c7ab commit c12549d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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"]
exclude = ["assets/", "crates/"]

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

Expand All @@ -27,7 +27,7 @@ lazy_static = "1.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
web-rwkv-derive = { version = "0.1.0", path = "crates/web-rwkv-derive" }
web-rwkv-derive = { version = "0.2.0", path = "crates/web-rwkv-derive" }

[dev-dependencies]
pollster = "0.3.0"
Expand Down
11 changes: 9 additions & 2 deletions crates/web-rwkv-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[package]
name = "web-rwkv-derive"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Zhenyuan Zhang <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "An implementation of the RWKV language model in pure WebGPU."
homepage = "https://github.com/cryscan/web-rwkv"
repository = "https://github.com/cryscan/web-rwkv"
keywords = ["deep-learning", "language", "model", "rwkv"]
categories = ["science", "text-processing"]

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

Expand All @@ -10,4 +17,4 @@ syn = "2"
quote = "1"

[lib]
proc-macro = true
proc-macro = true

0 comments on commit c12549d

Please sign in to comment.