[package]
edition = "2024"
rust-version = "1.85"
name = "bms-table"
version = "0.14.0"
authors = ["MiyakoMeow"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BMS (Be-Music Source) difficulty table parser"
documentation = "https://docs.rs/bms-table"
readme = "README.md"
keywords = [
"bms",
"table",
"data",
"fetch",
"parser",
]
categories = [
"data-structures",
"games",
]
license = "Apache-2.0"
repository = "https://codeberg.org/brightmeows/bms-table-rs"
[lib]
name = "bms_table"
path = "src/lib.rs"
[[example]]
name = "multi_fetch"
path = "examples/multi_fetch.rs"
[[example]]
name = "single_fetch"
path = "examples/single_fetch.rs"
[[example]]
name = "single_fetch_list"
path = "examples/single_fetch_list.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"
[dependencies.htmlparser]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2"
features = ["serde"]
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.reqwest]
version = "0.13"
features = ["cookies"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
]
[lints.clippy]
allow_attributes = "deny"
allow_attributes_without_reason = "deny"
dbg_macro = "warn"
expect_used = "deny"
indexing_slicing = "deny"
missing_docs_in_private_items = "deny"
mod_module_files = "deny"
panic_in_result_fn = "warn"
pub_use = "allow"
todo = "warn"
unwrap_used = "deny"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
dead_code = "deny"
missing_docs = "deny"
[lints.rust.unused]
level = "deny"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "deny"