From 7a23fba2ae2a71729b3729efc651bfcf35e29f63 Mon Sep 17 00:00:00 2001 From: bel Date: Sun, 9 Nov 2025 21:21:35 -0700 Subject: [PATCH] pttodoest --- .gitignore | 1 + pttodoest/Cargo.lock | 7 +++++++ pttodoest/Cargo.toml | 6 ++++++ pttodoest/src/main.rs | 3 +++ 4 files changed, 17 insertions(+) create mode 100644 pttodoest/Cargo.lock create mode 100644 pttodoest/Cargo.toml create mode 100644 pttodoest/src/main.rs diff --git a/.gitignore b/.gitignore index 287729a..965d8ff 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ **/*.sw* +**/target/ todo-server-yaml cmd/cmd cmd/cli diff --git a/pttodoest/Cargo.lock b/pttodoest/Cargo.lock new file mode 100644 index 0000000..70d8ab8 --- /dev/null +++ b/pttodoest/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "pttodoest" +version = "0.1.0" diff --git a/pttodoest/Cargo.toml b/pttodoest/Cargo.toml new file mode 100644 index 0000000..9a73332 --- /dev/null +++ b/pttodoest/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "pttodoest" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/pttodoest/src/main.rs b/pttodoest/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/pttodoest/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}