-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCargo.toml
34 lines (30 loc) · 968 Bytes
/
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = ["magic-akari <[email protected]>"]
edition = "2021"
homepage = "https://github.com/magic-akari/ncmc"
license = "MIT"
readme = "README.md"
repository = "https://github.com/magic-akari/ncmc"
version = "0.2.11"
[workspace.dependencies]
ncm_core = { version = "0.2.11", path = "crates/ncm_core" }
ncm_meta = { version = "0.2.11", path = "crates/ncm_meta" }
aes = "0.8.4"
anyhow = "1.0.89"
base64 = "0.22.1"
bpaf = "0.9"
ecb = "0.1.2"
id3 = "1.14.0"
js-sys = "0.3.70"
metaflac = "0.2.7"
miniserde = "0.1"
serde-wasm-bindgen = "0.6"
testing = "0.42.0"
wasm-bindgen = "0.2.93"
[profile.release]
lto = true
panic = "abort"
strip = "debuginfo"