From 0f88d7ecfc58c1275f28b6779e64206f84a79772 Mon Sep 17 00:00:00 2001 From: EliasSchriefer Date: Fri, 17 Jul 2020 21:47:50 +0200 Subject: [PATCH] Initialize project structure --- Cargo.toml | 15 +++++++++++++++ src/main.rs | 4 ++++ 2 files changed, 19 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8fe7cad --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "sfs-mc" +version = "0.1.0" +description = "More than a web server that dynamically show the status of a Minecraft server (formerly known as bukkit-server-status)" +authors = ["Elias Schriefer"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = "2.33" +toml = "0.5" +tokio = { version = "0.2", features = ["full"] } +async-minecraft-ping = "0.2" +actix-web = "2.0" \ No newline at end of file diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..a56d1fd --- /dev/null +++ b/src/main.rs @@ -0,0 +1,4 @@ +#[tokio::main] +async fn main() -> Result<(), Box> { + Ok(()) +} \ No newline at end of file