polyrhythmix/Cargo.toml

22 lines
566 B
TOML
Raw Permalink Normal View History

2023-05-02 12:06:08 +00:00
[package]
name = "polyrhythmix"
description = "Polyrhythmically-inclinded Midi Drum generator"
2023-06-28 16:13:35 +00:00
homepage = "https://github.com/dredozubov/poly"
repository = "https://github.com/dredozubov/poly"
readme = "README.md"
license-file = "LICENSE.txt"
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]
2023-06-28 17:17:06 +00:00
nom = "7.1.3"
2023-05-05 14:44:28 +00:00
midly = "0.5.3"
derive_more = "0.99.17"
2023-05-15 15:45:36 +00:00
clap = { version = "4.2.7", features = ["derive"] }
dyn-clone = "1.0.11"