mirror of
https://github.com/G2-Games/minidisc-cli.git
synced 2025-06-23 01:12:52 -05:00
Compare commits
4 commits
1c0b0c7f11
...
c292b4b533
Author | SHA1 | Date | |
---|---|---|---|
c292b4b533 | |||
0b403163be | |||
04ab4e75a6 | |||
94264f77d0 |
2 changed files with 10 additions and 6 deletions
4
.github/workflows/rust.yml
vendored
4
.github/workflows/rust.yml
vendored
|
@ -16,8 +16,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Build Linux
|
||||
run: cargo build --verbose --target x86_64-unknown-linux-gnu
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
- name: Run clippy
|
||||
|
|
12
Cargo.toml
12
Cargo.toml
|
@ -1,14 +1,18 @@
|
|||
[package]
|
||||
name = "minidisc"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
homepage = "https://github.com/G2-Games/minidisc-cli/"
|
||||
repository = "https://github.com/G2-Games/minidisc-cli/minidisc-rs/"
|
||||
homepage = "https://github.com/G2-Games/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."
|
||||
license-file = "LICENSE"
|
||||
license = "AGPL-3.0"
|
||||
authors = ["G2 <ke0bhogsg@gmail.com>", "Asivery"]
|
||||
readme = "README.md"
|
||||
|
||||
keywords = ["minidisc"]
|
||||
categories = ["hardware-support", "wasm", "multimedia::audio"]
|
||||
|
||||
# Have docs.rs make documentation for most supported targets
|
||||
[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"]
|
||||
|
|
Loading…
Reference in a new issue