-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from RustAudio/develop
Version 0.6 Release
- Loading branch information
Showing
242 changed files
with
22,983 additions
and
5,378 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[alias] | ||
systool = "run -p systool --" |
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,34 @@ | ||
name: Book | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
|
||
jobs: | ||
book: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: 3.8 | ||
- name: Install Sphinx | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r docs/requirements.txt | ||
- name: Build Book | ||
run: | | ||
cd docs | ||
make html | ||
touch _build/html/.nojekyll | ||
- name: Deploy | ||
if: success() | ||
uses: crazy-max/ghaction-github-pages@v1 | ||
with: | ||
target_branch: gh-pages | ||
build_dir: docs/_build/html | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,72 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
toolchain: [stable, beta, nightly] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.toolchain }} | ||
override: true | ||
- name: Build | ||
run: cargo build --all --all-features --verbose | ||
- name: Run tests | ||
run: cargo test --all --all-features --verbose | ||
|
||
check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
- name: Format | ||
run: cargo fmt --all -- --check | ||
- uses: actions-rs/clippy-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
args: --all --all-features -- -D warnings | ||
|
||
linux-bindings: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
target: i686-unknown-linux-gnu | ||
- name: Install 32-bit libc | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libc6-dev-i386 | ||
- name: Generate | ||
run: | | ||
mkdir bindings | ||
cargo run -p systool -- -I ./sys/lv2/ -o bindings/x86_64.rs -- -target x86_64-unknown-linux-gnu | ||
cargo run -p systool -- -I ./sys/lv2/ -o bindings/x86.rs -- -target i686-unknown-linux-gnu | ||
- uses: actions/upload-artifact@v1 | ||
with: | ||
name: linux-bindings | ||
path: bindings |
This file was deleted.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "lv2" | ||
version = "0.5.1" | ||
version = "0.6.0" | ||
authors = ["Jan-Oliver 'Janonard' Opdenhövel <[email protected]>", "Adrien Prokopowicz <[email protected]>", | ||
"Yruama_Lairba <[email protected]>"] | ||
edition = "2018" | ||
|
@@ -16,39 +16,43 @@ travis-ci = { repository = "RustAudio/rust-lv2", branch = "master" } | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies.lv2-atom] | ||
version = "1.0.0" | ||
version = "2.0.0" | ||
optional = true | ||
|
||
[dependencies.lv2-core] | ||
version = "2.0.0" | ||
version = "3.0.0" | ||
optional = true | ||
|
||
[dependencies.lv2-midi] | ||
version = "1.0.0" | ||
version = "1.2.0" | ||
optional = true | ||
|
||
[dependencies.lv2-time] | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
optional = true | ||
|
||
[dependencies.lv2-units] | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
optional = true | ||
|
||
[dependencies.urid] | ||
version = "0.1.0" | ||
optional = true | ||
|
||
[dependencies.lv2-urid] | ||
version = "2.0.0" | ||
version = "2.1.0" | ||
optional = true | ||
|
||
[dependencies.lv2-state] | ||
version = "1.0.0" | ||
version = "2.0.0" | ||
optional = true | ||
|
||
[dependencies.lv2-sys] | ||
version = "2.0.0" | ||
optional = true | ||
|
||
[dependencies.lv2-worker] | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
optional = true | ||
|
||
[features] | ||
|
@@ -74,6 +78,7 @@ full = [ | |
"urid", | ||
"lv2-urid", | ||
"lv2-state", | ||
"lv2-sys", | ||
"lv2-worker", | ||
] | ||
wmidi = ["lv2-midi", "lv2-midi/wmidi"] | ||
|
@@ -86,10 +91,33 @@ members = [ | |
"midi", | ||
"state", | ||
"sys", | ||
"sys/tool", | ||
"time", | ||
"units", | ||
"urid", | ||
"urid/derive", | ||
"urid/lv2-urid", | ||
"worker", | ||
"docs/amp", | ||
"docs/fifths", | ||
"docs/metro", | ||
"docs/midigate", | ||
] | ||
|
||
[profile.release] | ||
lto = true | ||
|
||
[patch.crates-io] | ||
lv2 = { path = "." } | ||
lv2-atom = { path = "atom" } | ||
lv2-core = { path = "core" } | ||
lv2-core-derive = { path = "core/derive" } | ||
lv2-midi = { path = "midi" } | ||
lv2-state = { path = "state" } | ||
lv2-sys = { path = "sys" } | ||
lv2-time = { path = "time" } | ||
lv2-units = { path = "units" } | ||
urid = { path = "urid" } | ||
urid-derive = { path = "urid/derive" } | ||
lv2-urid = { path = "urid/lv2-urid" } | ||
lv2-worker = { path = "worker" } |
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.