[package]
name = "bfbb"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Library for interacting with SpongeBob SquarePants: Battle for Bikini Bottom"
repository = "https://github.com/BfBBModdingTools/bfbb"
keywords = ["spongebob", "bfbb"]
rust-version = "1.65"
[package.metadata.docs.rs]
all-features = true
[[example]]
name = "game-interface"
required-features = ["game-interface"]
[[example]]
name = "hooking"
required-features = ["game-interface"]
[features]
game-interface = [
"dep:process-memory",
"dep:proc-maps",
"dep:sysinfo",
"dep:winapi",
]
[dependencies]
tap = "1"
serde = { version = "1", features = ["derive"], optional = true }
strum = "0.24"
strum_macros = "0.24"
thiserror = "1"
log = "0.4"
process-memory = { version = "0.5", optional = true }
proc-maps = { version = "0.3", optional = true }
sysinfo = { version = "0.28", optional = true }
bytemuck = { version = "1.12", features = ["derive"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", optional = true }