17 lines
376 B
TOML
17 lines
376 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"
|
||
|
|
publish = false
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
clap = { version = "4.6", features = ["derive"] }
|
||
|
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
|
thiserror = "2.0"
|
||
|
|
toml = "1.1"
|
||
|
|
|
||
|
|
[lints.rust]
|
||
|
|
unsafe_code = "forbid"
|