[dependencies.anyhow]
version = "1"
[dependencies.reqwest]
features = ["cookies"]
optional = true
version = "0.12"
[dependencies.scraper]
optional = true
version = "0.24"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1"
[dependencies.serde_json]
optional = true
version = "1"
[dependencies.url]
optional = true
version = "2"
[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread", "test-util"]
version = "1"
[[example]]
name = "multi_fetch"
path = "examples/multi_fetch.rs"
[[example]]
name = "single_fetch_index"
path = "examples/single_fetch_index.rs"
[features]
default = ["serde", "scraper", "reqwest"]
reqwest = ["scraper", "dep:reqwest"]
scraper = ["serde", "dep:scraper", "dep:url"]
serde = ["dep:serde", "dep:serde_json"]
[lib]
name = "bms_table"
path = "src/lib.rs"
[package]
authors = ["MiyakoMeow"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "games"]
description = "BMS (Be-Music Source) difficulty table parser & fetcher"
documentation = "https://docs.rs/bms-table"
edition = "2024"
keywords = ["bms", "table", "data", "fetch", "parser"]
license = "Apache-2.0"
name = "bms-table"
readme = "README.md"
repository = "https://github.com/MiyakoMeow/bms-table-rs"
version = "0.10.4"
[[test]]
name = "fetch_reqwest"
path = "tests/fetch_reqwest.rs"
[[test]]
name = "parse_html"
path = "tests/parse_html.rs"
[[test]]
name = "parse_json"
path = "tests/parse_json.rs"
[[test]]
name = "serialize"
path = "tests/serialize.rs"
[[test]]
name = "serialize_info"
path = "tests/serialize_info.rs"