mirror of
https://github.com/SeCherkasov/util-linux-cal.git
synced 2026-03-30 07:51:46 +03:00
Initial commit: Rust calendar utility
This commit is contained in:
29
Cargo.toml
Normal file
29
Cargo.toml
Normal file
@@ -0,0 +1,29 @@
|
||||
[package]
|
||||
name = "cal"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
description = "Calendar display utility"
|
||||
authors = ["Se.Cherkasov@yahoo.com"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
chrono = { version = "0.4.43", features = ["unstable-locales"] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
unicode-width = "0.1"
|
||||
terminal_size = "0.4"
|
||||
libloading = { version = "0.8", optional = true }
|
||||
shellexpand = { version = "3.1", optional = true }
|
||||
libc = { version = "0.2", optional = true }
|
||||
|
||||
[features]
|
||||
plugins = ["dep:libloading", "dep:shellexpand", "dep:libc"]
|
||||
default = ["plugins"]
|
||||
|
||||
[dev-dependencies]
|
||||
assert_cmd = "2.0"
|
||||
predicates = "3.0"
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"plugins/holiday_highlighter",
|
||||
]
|
||||
Reference in New Issue
Block a user