bms-table 0.12.0

BMS (Be-Music Source) difficulty table parser & fetcher
Documentation
[dependencies.anyhow]
version = "1"

[dependencies.reqwest]
features = ["cookies"]
optional = true
version = "0.12"

[dependencies.scraper]
optional = true
version = "0.25"

[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"
path = "examples/single_fetch.rs"

[[example]]
name = "single_fetch_list"
path = "examples/single_fetch_list.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"

[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"

[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.12.0"

[[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"