Skip to content

Commit 1ce0552

Browse files
committed
Set license to MIT OR Apache-2.0, with Asivery's permission
1 parent 4f0a189 commit 1ce0552

File tree

4 files changed

+235
-669
lines changed

4 files changed

+235
-669
lines changed

Cargo.toml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
[package]
22
name = "minidisc"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
homepage = "https://github.com/G2-Games/minidisc-rs/"
66
repository = "https://github.com/G2-Games/minidisc-rs/"
77
documentation = "https://docs.rs/cross_usb"
88
description = "A library for interacting with NetMD and Hi-MD minidisc devices."
9-
license = "AGPL-3.0"
9+
license = "MIT OR Apache-2.0"
1010
authors = ["G2 <ke0bhogsg@gmail.com>", "Asivery"]
1111
readme = "README.md"
1212

13-
keywords = ["minidisc"]
13+
keywords = ["minidisc", "netmd", "net-md", "hi-md", "sony"]
1414
categories = ["hardware-support", "wasm", "multimedia::audio"]
1515

1616
# Have docs.rs make documentation for most supported targets
1717
[package.metadata.docs.rs]
18-
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"]
18+
targets = [
19+
"x86_64-unknown-linux-gnu",
20+
"x86_64-pc-windows-msvc",
21+
"aarch64-pc-windows-msvc",
22+
"x86_64-apple-darwin",
23+
"aarch64-apple-darwin",
24+
"wasm32-unknown-unknown"
25+
]
1926

2027
[lib]
2128
crate-type = ["cdylib", "rlib"]
@@ -28,7 +35,7 @@ once_cell = "1.18.0"
2835
unicode-normalization = "0.1.22"
2936
regex = "1.10"
3037
cross_usb = "0.3"
31-
num-derive = "0.3.3"
38+
num-derive = "0.4.2"
3239
num-traits = "0.2.14"
3340
rand = "0.8.5"
3441
getrandom = { version = "0.2", features = ["js"] }
@@ -44,6 +51,3 @@ byteorder = "1.5.0"
4451
[target.'cfg(target_family = "wasm")'.dependencies]
4552
gloo = { version = "0.11.0", features = ["futures", "worker"] }
4653
futures = "0.3.30"
47-
48-
[package.metadata.wasm-pack.profile.dev.wasm-bindgen]
49-
dwarf-debug-info = true

0 commit comments

Comments
 (0)