-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (54 loc) · 1.77 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (54 loc) · 1.77 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "guitar-tab-generator"
version = "3.0.0"
edition = "2024"
rust-version = "1.87"
authors = ["Noah Baculi <noahbaculi@gmail.com>"]
description = "Generate fingerstyle guitar tabs based on the difficulty of different finger positions"
readme = "README.md"
repository = "https://github.com/noahbaculi/guitar-tab-generator"
license = "GPL-3.0-only"
keywords = ["guitar", "tab", "music", "fingering", "wasm"]
categories = ["multimedia::audio", "wasm"]
documentation = "https://docs.rs/guitar-tab-generator"
exclude = [
".scratch/",
"docs/superpowers/",
"docs/agents/",
"dev/",
"CLAUDE.md",
".vscode/",
]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
itertools = "0.14.0"
memoize = "0.6.0"
ordered-float = "5.1.0"
pathfinding = "4.15.0"
regex = "1.12.2"
serde = { version = "1.0.228", features = ["derive"] }
strum = "0.28.0"
strum_macros = "0.28.0"
tsify = { version = "0.5", features = ["js"] }
wasm-bindgen = "0.2.104"
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-bulk-memory", "--enable-nontrapping-float-to-int"]
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
[dev-dependencies]
serde_json = "1"
wasm-bindgen-test = "0.3.72"
# `criterion` (benches) and `proptest` (property tests) are host-only tooling whose
# transitive dependencies do not compile for `wasm32`. The WASM boundary test lane
# (`wasm-pack test --node`) builds the dev-dependency graph for wasm, so scope these to
# non-wasm targets. The wasm lane needs only `wasm-bindgen-test`.
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
proptest = "1"
[[bench]]
name = "benchmarks"
harness = false