[package]
edition = "2024"
name = "lib-bcsv-jmap"
version = "0.1.0"
authors = ["Demorck"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for reading and writing BCSV/JMap format used for Wii and GC games, including Super Mario Galaxy."
readme = false
keywords = [
"bcsv",
"jmap",
"super-mario-galaxy",
]
license = "MIT"
repository = "https://github.com/Demorck/bcsv-jmap-rs"
[lib]
name = "lib_bcsv_jmap"
path = "src/lib.rs"
[[example]]
name = "read_bcsv"
path = "examples/read_bcsv.rs"
[[example]]
name = "write_bcsv"
path = "examples/write_bcsv.rs"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.csv]
version = "1.4.0"
[dependencies.encoding_rs]
version = "0.8.35"
[dependencies.indexmap]
version = "2.13.0"
[dependencies.thiserror]
version = "2.0.18"