From c1c4805fa769154cdaf13c3b88e7ed6952d16aab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?joseLu=C3=ADs?= Date: Fri, 30 Sep 2022 14:12:14 +0200 Subject: [PATCH] bump to `v0.3.0` - update Cargo.toml. - update dependencies. --- Cargo.toml | 12 ++++++++---- examples/parse.rs | 1 - 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b3bc605..41f1c4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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 @@ -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" } diff --git a/examples/parse.rs b/examples/parse.rs index 6d21390..2a4427e 100644 --- a/examples/parse.rs +++ b/examples/parse.rs @@ -18,7 +18,6 @@ fn main() { // println!("{:?}", region); // } - println!("{:#?}", i); println!("groups: {}\nregions: {}", i.groups(), i.regions());