Skip to content

Commit

Permalink
bump to v0.3.0
Browse files Browse the repository at this point in the history
- update Cargo.toml.
- update dependencies.
  • Loading branch information
joseluis committed Sep 30, 2022
1 parent 3ea276c commit c1c4805
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
12 changes: 8 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
[package]
name = "sofiza"
description = "SFZ format parser"
version = "0.2.3"
version = "0.3.0"
edition = "2021"
resolver = "2"
authors = ["José Luis Cruz <joseluis@andamira.net>"]
repository = "https://github.com/andamira/sofiza"
license = "MIT/Apache-2.0"
include = [
"/src/",
"/src/**/*.rs",
"/Cargo.toml",
"/LICENSE-*",
"/README.md"
]
categories = ["parser-implementations", "multimedia::audio"]
keywords = ["parser", "audio", "virtual", "music", "instrument"]
publish = true

[dependencies]
logos = "^0.12"
logos = "0.12.1"
regex = "1"

phf = { version = "^0.10", features = ["macros"] }
phf = { version = "^0.11.1", features = ["macros"] }

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

[badges]
# actively-developed, passively-maintained, looking-for-maintainer, as-is,
# experimental, deprecated, none
maintenance = { status = "actively-developed" }
1 change: 0 additions & 1 deletion examples/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ fn main() {
// println!("{:?}", region);
// }


println!("{:#?}", i);

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

0 comments on commit c1c4805

Please sign in to comment.