-
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.
move generator into separate vst3-bindgen crate
- Loading branch information
Showing
11 changed files
with
326 additions
and
274 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
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,9 +1,9 @@ | ||
[package] | ||
name = "vst3" | ||
version = "0.1.1" | ||
version = "0.1.0" | ||
authors = ["Micah Johnston <[email protected]>"] | ||
edition = "2021" | ||
description = "Binding generator for the VST 3 API" | ||
description = "Rust bindings for the VST 3 API" | ||
documentation = "https://coupler.rs/vst3-rs/vst3/" | ||
repository = "https://github.com/coupler-rs/vst3-rs" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" | |
com-scrape-types = { path = "com-scrape-types", version = "0.1.0" } | ||
|
||
[build-dependencies] | ||
com-scrape = { path = "com-scrape", version = "0.1.1" } | ||
vst3-bindgen = { path = "vst3-bindgen", version = "0.2.0" } | ||
|
||
[[example]] | ||
name = "gain" | ||
|
@@ -22,4 +22,5 @@ crate-type = ["cdylib"] | |
members = [ | ||
"com-scrape", | ||
"com-scrape-types", | ||
"vst3-bindgen", | ||
] |
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
## 0.2.0 | ||
|
||
- Split up `vst3-bindgen` crate. `vst3-bindgen` is now a library which `vst3` uses from `build.rs`. | ||
|
||
## 0.1.1 | ||
|
||
- Update `com-scrape` version to 0.1.1. | ||
|
||
## 0.1.0 | ||
|
||
- Initial release. |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "vst3-bindgen" | ||
version = "0.2.0" | ||
authors = ["Micah Johnston <[email protected]>"] | ||
edition = "2021" | ||
description = "Binding generator for the VST 3 API" | ||
repository = "https://github.com/coupler-rs/vst3-rs" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
com-scrape = { path = "../com-scrape", version = "0.1.1" } |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# vst3-bindgen | ||
|
||
[![Cargo](https://img.shields.io/crates/v/vst3-bindgen.svg)](https://crates.io/crates/vst3-bindgen) | ||
[![Docs](https://docs.rs/vst3-bindgen/badge.svg)](https://docs.rs/vst3-bindgen) | ||
|
||
A binding generator for the VST 3 API. `vst3-bindgen` can be used to generate Rust bindings for the VST 3 API from the original C++ headers. | ||
|
||
## License | ||
|
||
`vst3-bindgen` is distributed under the terms of both the [MIT license](LICENSE-MIT) and the [Apache license, version 2.0](LICENSE-APACHE). Contributions are accepted under the same terms. |
Oops, something went wrong.