aboutsummaryrefslogtreecommitdiff
path: root/clock/Cargo.toml
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2021-04-07 21:29:02 +0200
committerAndreas Grois <andi@grois.info>2021-04-18 20:25:00 +0200
commit99c3480323f2df0c1cd455e2e03e832c1196050a (patch)
tree02331612925d9ce8a02d47fc471626701c364682 /clock/Cargo.toml
parent1c394103886ed58b72016c971a6ab54dbd64d55b (diff)
First semi-working implementation.
Diffstat (limited to 'clock/Cargo.toml')
-rw-r--r--clock/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
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 <andi@grois.info>"]
+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"]