-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (30 loc) · 780 Bytes
/
Cargo.toml
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
32
33
34
35
[package]
name = "sitewriter"
version = "1.0.5"
authors = ["Edgar <git@edgarluque.com>"]
edition = "2021"
description = "A sitemap writing library."
readme = "README.md"
documentation = "https://docs.rs/sitewriter"
repository = "https://github.com/edg-l/sitewriter"
license = "MIT"
keywords = ["sitemap", "sitemapindex", "xml", "parser"]
categories = ["parsing"]
resolver = "2"
[dependencies]
chrono = { version = "0.4.38", default-features = false, features = [
"std",
"clock",
] }
derive_builder = "0.20.0"
quick-xml = { version = "0.31.0", default-features = false }
url = "2.5.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "benchmark"
harness = false
[profile.bench]
debug = true
[profile.release]
debug = true