From d852766dfed8e2224fa66188a4c11d7d38e39b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Wed, 24 May 2023 09:46:37 +0200 Subject: [PATCH] chore: initial commit --- .gitignore | 1 + Cargo.toml | 4 ++++ src/main.rs | 3 +++ 3 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..dca5ac2 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "acmed-hook-rfc2136" +version = "0.1.0" +edition = "2021" diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}