-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
25 lines (23 loc) · 875 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# SPDX-FileCopyrightText: 2021-2023 Birger Schacht <[email protected]>
# SPDX-License-Identifier: MIT
[package]
name = "carl"
version = "0.3.1"
authors = ["Birger Schacht <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A colorful commandline calendar with ical support. Similar to `cal`, but with features."
repository = "https://github.com/b1rger/carl"
keywords = ["calendar", "ical", "cli", "date", "cal"]
categories = ["command-line-utilities", "date-and-time"]
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock"] }
clap = { version = "4.4.18", features = ["derive", "cargo"] }
toml = "0.8.*"
serde = { version = "1.0", features = ["derive"] }
xdg = "2.5.2"
anstyle = "1.0.8"
icalendar = "0.16"
rrule = "0.11.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }