Add Cargo.toml with midir dependency, stub of src/main.rs

This commit is contained in:
Nicole Tietz-Sokolskaya 2024-09-01 23:26:39 -04:00
parent 82f436335e
commit 5494d8de1b
3 changed files with 15 additions and 1 deletions

6
.gitignore vendored
View file

@ -18,4 +18,8 @@ Cargo.lock
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#.idea/
# Added by cargo
/target

7
Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "midi-keys"
version = "0.1.0"
edition = "2021"
[dependencies]
midir = "0.10.0"

3
src/main.rs Normal file
View file

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