mirror of
https://github.com/dredozubov/polyrhythmix.git
synced 2024-11-23 12:27:42 +00:00
22 lines
No EOL
548 B
TOML
22 lines
No EOL
548 B
TOML
[package]
|
|
name = "poly"
|
|
description = "Polyrhythmically-inclinded Midi Drum generator"
|
|
homepage = "https://github.com/dredozubov/poly"
|
|
repository = "https://github.com/dredozubov/poly"
|
|
readme = "README.md"
|
|
license-file = "LICENSE.txt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "poly"
|
|
path = "src/bin/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
nom = "*"
|
|
midly = "0.5.3"
|
|
derive_more = "*"
|
|
clap = { version = "4.2.7", features = ["derive"] }
|
|
dyn-clone = "1.0.11" |