get ready to split into package

This commit is contained in:
Bel LaPointe
2023-12-19 21:46:02 -05:00
parent 11b5091872
commit 2883830dbe
6 changed files with 42 additions and 0 deletions

9
rust-whisper/Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "rust-whisper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rust-whisper = { path = ".." }

3
rust-whisper/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}