22 lines
657 B
TOML
22 lines
657 B
TOML
[package]
|
|
name = "stationeers_data"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
prefab_database = [] # compile with the prefab database enabled
|
|
tsify = ["dep:tsify", "dep:wasm-bindgen"]
|
|
wasm-bindgen = ["dep:wasm-bindgen"]
|
|
|
|
[dependencies]
|
|
num-integer = "0.1.46"
|
|
phf = "0.11.2"
|
|
serde = "1.0.202"
|
|
serde_derive = "1.0.202"
|
|
serde_with = "3.8.1"
|
|
strum = { version = "0.26.2", features = ["derive", "phf", "strum_macros"] }
|
|
tsify = { version = "0.4.5", optional = true, features = ["json"] }
|
|
wasm-bindgen = { version = "0.2.92", optional = true }
|