[package]
edition = "2021"
name = "rust_calendar_parser"
version = "0.1.1"
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser built in Rust for parsing Google Calendar events using Pest grammar rules and converting them to JSON format."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Inez-git/rust_calendar_parser"
[lib]
name = "rust_calendar_parser"
path = "src/lib.rs"
[[bin]]
name = "rust_calendar_parser"
path = "src/main.rs"
[[test]]
name = "grammar_tests"
path = "tests/grammar_tests.rs"
[dependencies.anyhow]
version = "1.0.93"
[dependencies.pest]
version = "2.7.14"
[dependencies.pest_derive]
version = "2.7.14"
[dependencies.serde_json]
version = "1.0.132"
[dependencies.thiserror]
version = "2.0.3"