sitewriter/Cargo.toml

32 lines
649 B
TOML
Raw Normal View History

2020-11-22 14:43:41 +00:00
[package]
name = "sitewriter"
2022-08-31 10:29:19 +00:00
version = "0.5.3"
2021-02-01 09:35:45 +00:00
authors = ["Edgar <git@edgarluque.com>"]
2021-10-29 09:45:44 +00:00
edition = "2021"
2020-11-22 14:43:41 +00:00
description = "A sitemap writing library."
readme = "README.md"
2020-11-27 13:35:10 +00:00
documentation = "https://docs.rs/sitewriter"
2020-11-22 14:43:41 +00:00
repository = "https://github.com/edg-l/sitewriter"
license = "MIT"
keywords = ["sitemap", "sitemapindex", "xml", "parser"]
categories = ["parsing"]
[dependencies]
2022-08-31 10:29:01 +00:00
chrono = "0.4.22"
derive_builder = "0.11.2"
2022-10-24 08:13:09 +00:00
quick-xml = "0.26.0"
url = "2.3.1"
2021-07-23 14:13:03 +00:00
[dev-dependencies]
2022-10-24 08:13:09 +00:00
criterion = { version = "0.4.0", features = ["html_reports"] }
2021-07-23 14:13:03 +00:00
[[bench]]
name = "benchmark"
harness = false
2021-10-19 15:11:10 +00:00
[profile.bench]
debug = true
[profile.release]
debug = true