[package]
edition = "2024"
name = "bms-table"
version = "0.13.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.anyhow]
version = "1"
[dependencies.scraper]
version = "0.27"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.url]
version = "2"
features = ["serde"]
[dev-dependencies.reqwest]
version = "0.13"
features = ["cookies"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
]
[lints.clippy]
async_yields_async = "warn"
await_holding_lock = "warn"
bind_instead_of_map = "warn"
clone_on_copy = "warn"
collapsible_match = "warn"
default_trait_access = "warn"
doc_markdown = "warn"
expect_used = "warn"
explicit_deref_methods = "warn"
float_cmp = "warn"
future_not_send = "warn"
if_let_mutex = "warn"
implicit_clone = "warn"
incompatible_msrv = "warn"
indexing_slicing = "warn"
large_futures = "warn"
macro_use_imports = "warn"
manual_filter = "warn"
manual_map = "warn"
manual_memcpy = "warn"
match_bool = "warn"
match_same_arms = "warn"
missing_const_for_fn = "warn"
missing_const_for_thread_local = "warn"
missing_docs_in_private_items = "warn"
missing_errors_doc = "warn"
module_name_repetitions = "warn"
must_use_candidate = "warn"
must_use_unit = "warn"
needless_borrow = "warn"
needless_borrowed_reference = "warn"
needless_borrows_for_generic_args = "warn"
needless_range_loop = "warn"
option_if_let_else = "warn"
option_option = "warn"
panic_in_result_fn = "warn"
ptr_arg = "warn"
redundant_clone = "warn"
redundant_closure = "warn"
redundant_closure_call = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
redundant_feature_names = "warn"
semicolon_if_nothing_returned = "warn"
shadow_unrelated = "warn"
significant_drop_in_scrutinee = "warn"
trivially_copy_pass_by_ref = "warn"
unnecessary_to_owned = "warn"
unnecessary_unwrap = "warn"
unreachable = "warn"
unwrap_used = "warn"
wildcard_imports = "warn"
[lints.rust]
missing_docs = "warn"