aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorBernhard Guillon <Bernhard.Guillon@begu.org>2025-09-22 16:00:28 +0200
committerBernhard Guillon <Bernhard.Guillon@begu.org>2025-09-22 16:00:28 +0200
commitfce9ead9c50e00fb1315cd2c1df79a9fe79ddf13 (patch)
tree1b0c924da8f216722c3cd2e31054b68e72816aed /Cargo.toml
parent1bbbc6659120f79468ac0d60df42aae633926c3c (diff)
downloadfuture-me-fce9ead9c50e00fb1315cd2c1df79a9fe79ddf13.tar.gz
future-me-fce9ead9c50e00fb1315cd2c1df79a9fe79ddf13.zip
future-me: move git stuff into it's own library
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 97d761a..53ebcd5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,6 +3,15 @@ name = "future-me"
version = "0.1.0"
edition = "2024"
+[lib]
+name = "git"
+path = "src/git.rs"
+
+[[bin]]
+name = "future-me"
+path = "src/bin/main.rs"
+
+
[dependencies]
chrono = "0.4.42"
serde = { version = "1.0.145", features = ["derive"] }