2020-11-22 14:43:41 +00:00
|
|
|
[package]
|
|
|
|
name = "sitewriter"
|
2023-04-05 07:14:38 +00:00
|
|
|
version = "1.0.1"
|
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]
|
2023-04-05 07:13:31 +00:00
|
|
|
chrono = "0.4.24"
|
2023-01-11 13:23:59 +00:00
|
|
|
derive_builder = "0.12.0"
|
2023-05-03 09:38:45 +00:00
|
|
|
quick-xml = "0.28.2"
|
2022-10-24 08:13:09 +00:00
|
|
|
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
|