-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 915 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
[package]
name = "libeq"
version = "0.5.0"
authors = ["Chad Jablonski <chad@jablonski.xyz>"]
edition = "2024"
description = "Libraries and tools for working with EverQuest game data"
repository = "https://github.com/cjab/eq_wld"
readme = "README.md"
keywords = ["everquest", "eq", "wld", "loader"]
categories = ["game-development", "graphics", "parsing", "rendering::data-formats"]
license = "MIT"
[workspace]
members = ["crates/*", "tools/*"]
[workspace.dependencies]
libeq_wld = { path = "crates/libeq_wld", version = "0.5.0" }
libeq_pfs = { path = "crates/libeq_pfs", version = "0.5.0" }
nom = "8.0.0"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
thiserror = "2"
[dependencies]
libeq_wld = { workspace = true, optional = true }
libeq_pfs = { workspace = true, optional = true }
[features]
default = ["wld", "pfs"]
wld = ["libeq_wld"]
pfs = ["libeq_pfs"]