lodestone-parser/Cargo.toml

38 lines
751 B
TOML
Raw Normal View History

2018-09-02 19:12:52 +00:00
[package]
2022-06-16 14:10:03 +00:00
name = "lodestone-parser"
2024-01-24 12:03:14 +00:00
version = "1.1.0"
authors = ["Anna <git@anna.lgbt>"]
2018-09-02 19:12:52 +00:00
2022-06-16 14:10:03 +00:00
edition = "2021"
2018-09-02 19:12:52 +00:00
[features]
default = ["logic", "with_serde"]
logic = [
"cssparser",
"lazy_static",
"scraper",
2022-06-16 14:10:03 +00:00
"thiserror",
2019-04-04 23:49:14 +00:00
"with_serde",
]
with_serde = [
"serde",
2020-07-23 18:33:48 +00:00
"ffxiv_types/with_serde",
"chrono/serde",
"url/serde"
]
2018-09-02 19:12:52 +00:00
[dependencies]
2020-07-23 18:33:48 +00:00
chrono = "0.4"
cssparser = { version = "0.33", optional = true }
lazy_static = { version = "1", optional = true }
scraper = { version = "0.18", optional = true }
2022-06-16 14:10:03 +00:00
serde = { version = "1", features = ["derive"], optional = true }
thiserror = { version = "1", optional = true }
2020-07-23 18:33:48 +00:00
url = "2"
2018-09-02 19:12:52 +00:00
2020-07-23 18:33:48 +00:00
[dependencies.ffxiv_types]
version = "1"
default-features = false
features = ["worlds", "races", "clans", "guardians"]