ezcal 0.3.4

Ergonomic iCalendar + vCard library 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 = "ezcal"
version = "0.3.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ergonomic iCalendar + vCard library for Rust"
homepage = "https://adamperlinski.github.io/ezcal/"
readme = "README.md"
keywords = [
    "ical",
    "icalendar",
    "vcard",
    "calendar",
    "vcf",
]
categories = [
    "parser-implementations",
    "encoding",
]
license = "MIT"
repository = "https://github.com/AdamPerlinski/ezcal"

[features]
default = ["chrono"]

[lib]
name = "ezcal"
path = "src/lib.rs"

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = [
    "std",
    "clock",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "2"

[dependencies.uuid]
version = "1"
features = ["v4"]

[dev-dependencies.pretty_assertions]
version = "1"