Skip to content

Commit c1c4805

Browse files
committed
bump to v0.3.0
- update Cargo.toml. - update dependencies.
1 parent 3ea276c commit c1c4805

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Cargo.toml

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
[package]
22
name = "sofiza"
33
description = "SFZ format parser"
4-
version = "0.2.3"
4+
version = "0.3.0"
55
edition = "2021"
6+
resolver = "2"
67
authors = ["José Luis Cruz <[email protected]>"]
78
repository = "https://github.com/andamira/sofiza"
89
license = "MIT/Apache-2.0"
910
include = [
10-
"/src/",
11+
"/src/**/*.rs",
1112
"/Cargo.toml",
1213
"/LICENSE-*",
1314
"/README.md"
1415
]
1516
categories = ["parser-implementations", "multimedia::audio"]
1617
keywords = ["parser", "audio", "virtual", "music", "instrument"]
18+
publish = true
1719

1820
[dependencies]
19-
logos = "^0.12"
21+
logos = "0.12.1"
2022
regex = "1"
2123

22-
phf = { version = "^0.10", features = ["macros"] }
24+
phf = { version = "^0.11.1", features = ["macros"] }
2325

2426
# change for the `!` type when it stabilizes:
2527
# https://github.com/rust-lang/rust/issues/35121
@@ -31,4 +33,6 @@ thiserror = "^1.0"
3133
anyhow = "^1.0"
3234

3335
[badges]
36+
# actively-developed, passively-maintained, looking-for-maintainer, as-is,
37+
# experimental, deprecated, none
3438
maintenance = { status = "actively-developed" }

examples/parse.rs

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ fn main() {
1818
// println!("{:?}", region);
1919
// }
2020

21-
2221
println!("{:#?}", i);
2322

2423
println!("groups: {}\nregions: {}", i.groups(), i.regions());

0 commit comments

Comments
 (0)