2023-05-02 12:06:08 +00:00
|
|
|
[package]
|
|
|
|
name = "poly"
|
2023-06-27 13:11:03 +00:00
|
|
|
description = "Polyrhythmically-inclinded Midi Drum generator"
|
2023-05-02 12:06:08 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
2023-06-28 09:56:27 +00:00
|
|
|
name = "poly"
|
2023-05-02 12:06:08 +00:00
|
|
|
path = "src/bin/main.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
nom = "*"
|
2023-05-05 14:44:28 +00:00
|
|
|
midly = "0.5.3"
|
2023-05-08 16:26:25 +00:00
|
|
|
derive_more = "*"
|
2023-05-15 15:45:36 +00:00
|
|
|
clap = { version = "4.2.7", features = ["derive"] }
|
|
|
|
dyn-clone = "1.0.11"
|