-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
43 lines (36 loc) · 940 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "bdat"
version = "0.6.0"
description = "(De)serialization library for Monolithsoft's BDAT file format"
authors = ["RoccoDev <hey@rocco.dev>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/RoccoDev/bdat-rs"
keywords = ["bdat", "xenoblade", "monolithsoft", "switch", "nintendo"]
categories = ["parsing", "parser-implementations", "encoding"]
exclude = ["/.vscode", "/.github"]
[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
byteorder = "1.5"
thiserror = "2.0"
enum-kinds = "0.5.1"
num_enum = "0.7.2"
serde-value = { version = "0.7.0", optional = true }
[features]
default = []
serde = ["dep:serde", "dep:serde-value"]
bench = []
[dev-dependencies]
serde_json = "1.0"
criterion = "0.5.1"
[[bench]]
name = "scramble"
harness = false
[[bench]]
name = "murmur"
harness = false
[workspace]
members = ["toolset"]
[profile.release]
lto = true
strip = true