-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
39 lines (33 loc) · 903 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
35
36
37
38
39
[package]
name = "sofiza"
description = "SFZ format parser"
version = "0.3.1"
edition = "2021"
resolver = "2"
authors = ["José Luis Cruz <[email protected]>"]
repository = "https://github.com/andamira/sofiza"
license = "MIT/Apache-2.0"
include = [
"/src/**/*.rs",
"/Cargo.toml",
"/LICENSE-*",
"/README.md"
]
categories = ["parser-implementations", "multimedia::audio"]
keywords = ["parser", "audio", "virtual", "music", "instrument"]
publish = true
[dependencies]
logos = "0.12.1"
regex = "1"
phf = { version = "0.11.1", features = ["macros"] }
# change for the `!` type when it stabilizes:
# https://github.com/rust-lang/rust/issues/35121
never = "0.1"
thiserror = "^1.0"
log = "0.4.17"
[dev-dependencies]
anyhow = "^1.0"
[badges]
# actively-developed, passively-maintained, looking-for-maintainer, as-is,
# experimental, deprecated, none
maintenance = { status = "actively-developed" }