LICENSE with the standard text, `license = "MIT"` in Cargo.toml so the metadata matches, and a line in the README pointing at it. Copyright is attributed to `randogoth`, taken from the repository's author setting, and dated 2026. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
26 lines
628 B
TOML
26 lines
628 B
TOML
[package]
|
|
name = "calcalist"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.97"
|
|
description = "Aggregate and sync events between CalDAV, Google Calendar and iCal feeds"
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
blake3 = "1.8"
|
|
clap = { version = "4.6", features = ["derive"] }
|
|
jiff = "0.2"
|
|
rustix = { version = "1.1", features = ["fs"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha2 = "0.11"
|
|
thiserror = "2.0"
|
|
toml = "1.1"
|
|
ureq = { version = "3.4", default-features = false, features = ["json", "rustls", "gzip"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|