[package]
edition = "2024"
name = "mailrs-ical"
version = "2.0.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 5545 (iCalendar) parser, serializer, and iTIP semantics — zero I/O, hand-rolled, with VTIMEZONE + RRULE support."
homepage = "https://github.com/goliajp/mailrs"
documentation = "https://docs.rs/mailrs-ical"
readme = "README.md"
keywords = [
"icalendar",
"itip",
"rfc5545",
"rfc5546",
"calendar",
]
categories = [
"parser-implementations",
"date-and-time",
"email",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/mailrs"
resolver = "2"
[lib]
name = "mailrs_ical"
path = "src/lib.rs"
[[example]]
name = "parse_invite"
path = "examples/parse_invite.rs"
[[test]]
name = "perf_gate"
path = "tests/perf_gate.rs"
[[bench]]
name = "compare_icalendar"
path = "benches/compare_icalendar.rs"
harness = false
[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.compact_str]
version = "0.9"
features = ["serde"]
[dependencies.rrule]
version = "0.14"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.icalendar]
version = "0.17"
[lints.clippy.all]
level = "deny"
priority = 0
[lints.rust]
warnings = "deny"