From 99c3480323f2df0c1cd455e2e03e832c1196050a Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Wed, 7 Apr 2021 21:29:02 +0200 Subject: First semi-working implementation. --- clock/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 clock/Cargo.toml (limited to 'clock/Cargo.toml') diff --git a/clock/Cargo.toml b/clock/Cargo.toml new file mode 100644 index 0000000..2215005 --- /dev/null +++ b/clock/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "swaystatus-clock" +version = "0.1.0" +authors = ["Andreas Grois "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +swaystatus-plugin = { path = '../swaystatus-plugin', version = '*'} +serde = { version = "1.0", features = ["derive"] } +erased-serde = "0.3" +chrono = { version = "0.4", features = ["serde"] } + +[lib] +crate-type = ["dylib"] -- cgit v1.2.3