Compare commits

..

4 commits

2 changed files with 10 additions and 6 deletions

View file

@ -16,8 +16,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build - name: Build Linux
run: cargo build --verbose run: cargo build --verbose --target x86_64-unknown-linux-gnu
- name: Run tests - name: Run tests
run: cargo test --verbose run: cargo test --verbose
- name: Run clippy - name: Run clippy

View file

@ -1,14 +1,18 @@
[package] [package]
name = "minidisc" name = "minidisc"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
homepage = "https://github.com/G2-Games/minidisc-cli/" homepage = "https://github.com/G2-Games/minidisc-rs/"
repository = "https://github.com/G2-Games/minidisc-cli/minidisc-rs/" repository = "https://github.com/G2-Games/minidisc-rs/"
documentation = "https://docs.rs/cross_usb"
description = "A library for interacting with NetMD and Hi-MD minidisc devices." description = "A library for interacting with NetMD and Hi-MD minidisc devices."
license-file = "LICENSE" license = "AGPL-3.0"
authors = ["G2 <ke0bhogsg@gmail.com>", "Asivery"] authors = ["G2 <ke0bhogsg@gmail.com>", "Asivery"]
readme = "README.md" readme = "README.md"
keywords = ["minidisc"]
categories = ["hardware-support", "wasm", "multimedia::audio"]
# Have docs.rs make documentation for most supported targets # Have docs.rs make documentation for most supported targets
[package.metadata.docs.rs] [package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "aarch64-pc-windows-msvc", "x86_64-apple-darwin", "aarch64-apple-darwin", "wasm32-unknown-unknown"] targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "aarch64-pc-windows-msvc", "x86_64-apple-darwin", "aarch64-apple-darwin", "wasm32-unknown-unknown"]