caldata 0.15.0

Ical/Vcard parser for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "caldata"
version = "0.15.0"
authors = [
    "Lennart Kämmle",
    "Peltoche <dev@halium.fr>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ical/Vcard parser for Rust"
homepage = "https://github.com/lennart-k/caldata-rs"
documentation = "https://docs.rs/caldata"
readme = "README.md"
keywords = [
    "ical",
    "vcard",
    "parser",
]
categories = ["parsing"]
license-file = "LICENSE"
repository = "https://github.com/lennart-k/caldata-rs"

[features]
bench = []
chrono-tz = ["dep:chrono-tz"]
default = ["chrono-tz"]
rkyv = ["dep:rkyv"]
test = []
vtimezones-rs = ["dep:vtimezones-rs"]

[lib]
name = "caldata"
path = "src/lib.rs"
test = true
doc = true

[[example]]
name = "ical_generator"
path = "examples/ical_generator.rs"

[[example]]
name = "ical_parser"
path = "examples/ical_parser.rs"

[[example]]
name = "line_reader"
path = "examples/line_reader.rs"

[[example]]
name = "property_parser"
path = "examples/property_parser.rs"

[[example]]
name = "vcard_parser"
path = "examples/vcard_parser.rs"

[[test]]
name = "mod"
path = "tests/mod.rs"

[[bench]]
name = "parse_benchmark"
path = "benches/parse_benchmark.rs"
harness = false

[dependencies.chrono]
version = "0.4"

[dependencies.chrono-tz]
version = "0.10"
optional = true

[dependencies.derive_more]
version = "2.1"
features = [
    "display",
    "from",
    "deref",
    "into",
]

[dependencies.itertools]
version = "0.14"

[dependencies.lazy_static]
version = "1.5"

[dependencies.log]
version = "0.4.29"

[dependencies.phf]
version = "0.13"
features = ["macros"]

[dependencies.regex]
version = "1.11"

[dependencies.rkyv]
version = "0.8"
optional = true

[dependencies.thiserror]
version = "2.0"

[dependencies.vtimezones-rs]
version = "0.3.1"
optional = true

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.insta]
version = "1.44"
features = ["filters"]

[dev-dependencies.rstest]
version = "0.26"

[dev-dependencies.similar-asserts]
version = "1.7"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]

[profile.bench]
debug = 2