- Add Playwright E2E testing framework with cross-browser support (Chrome, Firefox) - Create authentication helpers for CalDAV server integration - Implement calendar interaction helpers with event creation, drag-and-drop, and view switching - Add comprehensive drag-and-drop test suite with event cleanup - Configure CI/CD integration with Gitea Actions for headless testing - Support both local development and CI environments with proper dependency management - Include video recording, screenshots, and HTML reporting for test debugging - Handle Firefox-specific timing and interaction challenges with force clicks and timeouts 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
77 lines
1.5 KiB
TOML
77 lines
1.5 KiB
TOML
[package]
|
|
name = "runway"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# Frontend binary only
|
|
|
|
[dependencies]
|
|
calendar-models = { workspace = true, features = ["wasm"] }
|
|
yew = { version = "0.21", features = ["csr"] }
|
|
web-sys = { version = "0.3", features = [
|
|
"console",
|
|
"HtmlSelectElement",
|
|
"HtmlInputElement",
|
|
"HtmlTextAreaElement",
|
|
"HtmlLinkElement",
|
|
"HtmlHeadElement",
|
|
"Event",
|
|
"MouseEvent",
|
|
"InputEvent",
|
|
"Element",
|
|
"Document",
|
|
"Window",
|
|
"Location",
|
|
"Navigator",
|
|
"DomTokenList",
|
|
"Headers",
|
|
"Request",
|
|
"RequestInit",
|
|
"RequestMode",
|
|
"Response",
|
|
"CssStyleDeclaration",
|
|
] }
|
|
wasm-bindgen = "0.2"
|
|
js-sys = "0.3"
|
|
|
|
# HTTP client for CalDAV requests
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
# Calendar and iCal parsing
|
|
ical = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde-wasm-bindgen = "0.6"
|
|
|
|
# Date and time handling
|
|
chrono = { version = "0.4", features = ["serde", "wasm-bindgen"] }
|
|
chrono-tz = "0.8"
|
|
|
|
# Error handling
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
# Logging
|
|
log = "0.4"
|
|
console_log = "1.0"
|
|
|
|
# UUID generation for calendar events
|
|
uuid = { version = "1.0", features = ["v4", "wasm-bindgen", "serde"] }
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
|
|
# Environment variable handling
|
|
dotenvy = "0.15"
|
|
base64 = "0.21"
|
|
|
|
# XML/Regex parsing
|
|
regex = "1.0"
|
|
|
|
# Yew routing and local storage (WASM only)
|
|
yew-router = "0.18"
|
|
gloo-storage = "0.3"
|
|
gloo-timers = "0.3"
|
|
wasm-bindgen-futures = "0.4"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
|