eventix 0.4.0

High-level calendar & recurrence crate with timezone-aware scheduling, exceptions, and ICS import/export
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 = "2021"
name = "eventix"
version = "0.4.0"
authors = ["Raj Sarkar <ariajsarkar@gmail.com>"]
build = false
exclude = [
    "usage-examples/",
    "examples_output/",
    ".github/",
    "target/",
    "TODO.md",
    "llms.txt",
    "rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level calendar & recurrence crate with timezone-aware scheduling, exceptions, and ICS import/export"
homepage = "https://github.com/AriajSarkar/eventix"
readme = "README.md"
keywords = [
    "calendar",
    "scheduling",
    "booking",
    "availability",
    "ics",
]
categories = ["date-and-time"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AriajSarkar/eventix"

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.chrono-tz]
version = "0.10"
features = ["serde"]

[dependencies.icalendar]
version = "0.17"

[dependencies.rrule]
version = "0.14"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

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

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

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

[dev-dependencies.proptest]
version = "1.10"

[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"