[package] name = "osu-file-parser" version = "1.1.0" edition = "2021" authors = ["yuu0141 "] description = "A crate to parse an osu! beatmap file" repository = "https://github.com/Eddio0141/osu-file-parser" license = "MIT OR Apache-2.0" readme = "readme.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rust_decimal = "1.25.0" rust_decimal_macros = "1.25.0" thiserror = "1.0.31" strum = "0.24.1" strum_macros = "0.24.0" nom = "7.1.1" either = "1.7.0" pretty_assertions = "1.2.1" [dev-dependencies] criterion = { version = "0.3.5", features = ["html_reports"] } [[bench]] name = "bench" harness = false