-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "tauri-plugin-midi"
links = "tauri-plugin-midi"
description = "A WebMIDI-compatible plugin for Tauri"
license = "MIT"
version = "0.1.2"
authors = ["Brendan Allan", "Oscar Beaumont"]
edition = "2021"
rust-version = "1.60"
include = ["/src", "/build.rs", "/permissions", "/LICENSE", "/README.md"]
repository = "https://github.com/specta-rs/tauri-plugin-midi"
documentation = "https://docs.rs/tauri-plugin-midi"
keywords = ["tauri", "midi", "webmidi", "tauri-plugin"]
categories = ["web-programming"]
# /bin/sh RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features
[package.metadata."docs.rs"]
all-features = true
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
midir = "0.10.1"
serde = "1.0.195"
specta = "=2.0.0-rc.20"
tauri = { version = "^2.0.0-rc.16" }
tauri-specta = { version = "=2.0.0-rc.20", features = ["derive"] }
[target.'cfg(target_os = "macos")'.dependencies]
coremidi-hotplug-notification = "0.1.1"
[dev-dependencies]
tauri-specta = { version = "=2.0.0-rc.20", features = ["typescript"] }
specta-typescript = { version = "0.0.7" }
[build-dependencies]
tauri-plugin = { version = "2.0.0-rc.13", features = ["build"] }