first commit

This commit is contained in:
2026-04-18 00:06:30 +03:00
commit e3f641d646
4 changed files with 4741 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

4726
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

11
Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "tenko"
version = "0.1.0"
edition = "2024"
[dependencies]
fundsp = "0.23.0"
lv2 = "0.6.0"
vizia = "0.3.0"
vst = "0.4.0"
wide = "1.3.0"

3
src/main.rs Normal file
View File

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