Initialize project structure

This commit is contained in:
Elias Schriefer 2020-07-17 21:47:50 +02:00
parent 8cd1b4bec3
commit 0f88d7ecfc
2 changed files with 19 additions and 0 deletions

15
Cargo.toml Normal file
View File

@ -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"

4
src/main.rs Normal file
View File

@ -0,0 +1,4 @@
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}