-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-design the library with multi instance support and pass all tests.
- Loading branch information
Showing
42 changed files
with
2,257 additions
and
1,667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "libpd-rs" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["alisomay <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -17,19 +17,28 @@ exclude = [ | |
"assets/logo_*" | ||
] | ||
|
||
[lib] | ||
name = "libpd_rs" | ||
path = "src/lib.rs" | ||
test = true | ||
doctest = true | ||
bench = false | ||
doc = true | ||
edition = "2021" | ||
crate-type = ["lib"] | ||
|
||
[dependencies] | ||
# libpd-sys = "0.2" | ||
libpd-sys = { path = "../libpd-sys" } | ||
thiserror = "1.0.30" | ||
libpd-sys = "0.3" | ||
thiserror = "2" | ||
libffi = "3.0.0" | ||
tempfile = "3.3.0" | ||
embed-doc-image = "0.1.4" | ||
|
||
[dev-dependencies] | ||
cpal = "0.15.2" | ||
sys-info = "0.9.1" | ||
nannou = "0.18" | ||
nannou_audio = "0.18" | ||
nannou = "0.19" | ||
nannou_audio = "0.19" | ||
rand = "0.8.5" | ||
|
||
# For local development, | ||
|
@@ -40,15 +49,6 @@ rand = "0.8.5" | |
# [patch."https://github.com/alisomay/libpd-sys"] | ||
# libpd-sys = { path = "../libpd-sys" } | ||
|
||
[lib] | ||
name = "libpd_rs" # The name of the target. | ||
path = "src/lib.rs" # The source file of the target. | ||
test = true # Is tested by default. | ||
doctest = true # Documentation examples are tested by default. | ||
bench = false # Is benchmarked by default. | ||
doc = true # Is documented by default. | ||
proc-macro = false # Set to `true` for a proc-macro library. | ||
edition = "2021" # The edition of the target. | ||
crate-type = ["lib"] # The crate types to generate. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.