lodestone-parser/Cargo.toml

40 lines
807 B
TOML
Raw Normal View History

2018-09-02 19:12:52 +00:00
[package]
name = "lodestone_parser"
2019-01-15 19:12:11 +00:00
version = "0.1.1"
2020-07-23 18:43:25 +00:00
authors = ["Anna Clemens <git@annaclemens.io>"]
2018-09-02 19:12:52 +00:00
edition = "2018"
[features]
default = ["logic", "with_serde"]
logic = [
"cssparser",
"failure",
"lazy_static",
"scraper",
2019-04-04 23:49:14 +00:00
"with_serde",
]
with_serde = [
"serde",
"serde_derive",
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.27", optional = true }
failure = { version = "0.1", optional = true }
lazy_static = { version = "1", optional = true }
2020-07-23 18:33:48 +00:00
scraper = { version = "0.12", optional = true }
serde = { version = "1", optional = true }
serde_derive = { 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"]