Skip to content

Commit

Permalink
Fix dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
cryscan committed Dec 10, 2023
1 parent 783e1ca commit a018d46
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
14 changes: 13 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ repository = "https://github.com/cgisky1980/ai00_rwkv_server"
keywords = ["deep-learning", "LLM", "model", "rwkv"]
categories = ["science"]
exclude = ["assets"]
default-run = "ai00_server"

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

Expand Down Expand Up @@ -43,7 +44,10 @@ sha2 = "0.10.8"
[dependencies.web-rwkv]
git = "https://github.com/cryscan/web-rwkv"
tag = "v0.4.5"
features = ["converter"]

[dependencies.web-rwkv-converter]
git = "https://github.com/cryscan/web-rwkv-converter"
tag = "v0.1.0"

[dependencies.axum]
version = "0.7.1"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{fs::File, path::PathBuf};
use anyhow::Result;
use clap::Parser;
use memmap2::Mmap;
use web_rwkv::converter::{convert_safetensors, RENAME, TRANSPOSE};
use web_rwkv_converter::{convert_safetensors, RENAME, TRANSPOSE};

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
Expand Down

0 comments on commit a018d46

Please sign in to comment.