From 862775ab07d60f5e412992ae10d249d80a5c496f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Liebau?= Date: Wed, 9 Sep 2020 14:52:39 +0200 Subject: [PATCH 1/2] Add cargo definition files and empty main code file. --- Cargo.lock | 5 +++++ Cargo.toml | 7 +++++++ src/main.rs | 2 ++ 3 files changed, 14 insertions(+) create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..0889798 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,5 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "stackable-agent" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8f8da9c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "stackable-agent" +version = "0.1.0" +authors = ["Sönke Liebau "] +edition = "2018" + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..f79c691 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,2 @@ +fn main() { +} From c976489aadfa208d349e5f38559edf10f4ce64ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Liebau?= Date: Wed, 9 Sep 2020 14:57:24 +0200 Subject: [PATCH 2/2] Fixed rustfmt error. --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index f79c691..f328e4d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,2 +1 @@ -fn main() { -} +fn main() {}