-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 902 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
[workspace]
members = ["musicxml_internal", "musicxml_macros", "musicxml"]
resolver = "2"
[workspace.package]
edition = "2021"
version = "1.1.2"
authors = ["Will Hedgecock <[email protected]>"]
license = "MIT"
documentation = "https://docs.rs/musicxml/latest/"
readme = "README.md"
homepage = "https://github.com/hedgetechllc/musicxml"
repository = "https://github.com/hedgetechllc/musicxml"
keywords = ["musicxml", "parser", "deserializer", "music", "format"]
categories = ["api-bindings", "encoding", "parsing", "no-std"]
publish = true
[workspace.dependencies]
musicxml_internal = { path = "musicxml_internal", version = "1.1.2" }
musicxml_macros = { path = "musicxml_macros", version = "1.1.2" }
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"
rpath = false
strip = "symbols"