-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 986 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 986 Bytes
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
[package]
name = "navkit-rpkg-lib"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
categories = ["game-development", "data-structures", "parser-implementations"]
description = "A C++ library that has functions to find needed resources from a NavKit scene file and extract resources."
repository = "https://github.com/glacier-modding/navkit-rpkg-lib"
readme = "README.md"
[lib]
name = "navkit_rpkg_lib"
crate-type = ["cdylib", "rlib"]
[badges.maintenance]
status = "actively-developed"
[dependencies]
rpkg-rs = "=1.0.0-rc.1"
itertools = { version = "0.12.1", features = [] }
rayon = { version = "1.10.0", optional = true}
serde = { version = "1.0.199", optional = true, features = ["derive"] }
serde_json = { version = "1.0.117"}
serde-hex = { version = "0.1.0", optional = true }
[features]
default = ["path-list", "serde"]
path-list = ["dep:rayon"]
serde = ["dep:serde", "dep:serde-hex"]
[dev-dependencies]
serde_json = "1.0.116"
[build-dependencies]
cbindgen = "0.26"