15 lines
502 B
TOML
15 lines
502 B
TOML
[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 = { version = "2.33", features = ["wrap_help"] }
|
|
toml = "0.5"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
async-minecraft-ping = "0.2"
|
|
actix-web = "2.0" |