-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 882 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
[package]
name = "chord-progression-parser"
version = "0.6.2"
authors = ["lainNao"]
edition = "2021"
license = "MIT"
description = "a converter from chord progression strings to AST"
repository = "https://github.com/lainNao/chord-progression-parser"
readme = "README.md"
keywords = ["music", "chord-progression", "parser", "AST"]
[dependencies]
regex = "1.9.5"
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.108"
strum = "0.26.1"
strum_macros = "0.26.1"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
console_error_panic_hook = { version = "0.1.1", optional = true }
wasm-bindgen-test = "0.3.38"
typeshare = "1.0.1"
serde-wasm-bindgen = "0.6.1"
insta = "1.34.0"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"