Skip to content

Commit ac61853

Browse files
committed
Add a new binary package playground for experiments
1 parent 3d09eb6 commit ac61853

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

Cargo.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[workspace]
22
resolver = "2"
33
members = [
4+
"playground",
45
"step-sequencer",
56
"step-sequencer-tui",
67
"step-sequencer-gui/src-tauri",

playground/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "step-sequencer-playground"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
jack = { version = "0.13.0", optional = true }
8+
9+
[features]
10+
jack = ["dep:jack"]

playground/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)