Initialize project structure
This commit is contained in:
parent
8cd1b4bec3
commit
0f88d7ecfc
15
Cargo.toml
Normal file
15
Cargo.toml
Normal 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
4
src/main.rs
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#[tokio::main]
|
||||||
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
Ok(())
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user