mirror of
https://github.com/wez/wezterm.git
synced 2024-12-12 13:13:15 +03:00
dd327617b1
These allow setting up some basic timers and constructing time-dependent config files. Needs to be used respsonsibly!
18 lines
461 B
TOML
18 lines
461 B
TOML
[package]
|
|
name = "time-funcs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
chrono = {version="0.4", features=["unstable-locales"]}
|
|
config = { path = "../../config" }
|
|
luahelper = { path = "../../luahelper" }
|
|
lazy_static = "1.4"
|
|
promise = { path = "../../promise" }
|
|
smol = "1.2"
|
|
spa = "0.3"
|
|
wezterm-dynamic = { path = "../../wezterm-dynamic" }
|