14 lines
282 B
TOML
14 lines
282 B
TOML
|
|
[package]
|
||
|
|
name = "convert"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "convert"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
minicpm-convert = { path = "../../crates/minicpm-convert" }
|
||
|
|
burn = { version = "0.21", default-features = false, features = ["std", "flex"] }
|
||
|
|
anyhow = "1.0"
|