mirror of
https://github.com/timvisee/lazymc.git
synced 2025-05-18 20:30:23 -07:00
32 lines
886 B
TOML
32 lines
886 B
TOML
[package]
|
|
name = "lazymc"
|
|
version = "0.1.0"
|
|
authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"]
|
|
license = "GPL-3.0"
|
|
readme = "README.md"
|
|
# homepage = "https://timvisee.com/projects/lazymc"
|
|
repository = "https://gitlab.com/timvisee/lazymc"
|
|
description = "Put your Minecraft server to rest when idle."
|
|
keywords = ["minecraft", "server", "idle", "cli"]
|
|
categories = [
|
|
"command-line-interface",
|
|
"games",
|
|
]
|
|
exclude = [
|
|
"/.github",
|
|
"/contrib",
|
|
]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bytes = "1.1"
|
|
futures = { version = "0.3", default-features = false }
|
|
libc = "0.2"
|
|
minecraft-protocol = { git = "https://github.com/timvisee/minecraft-protocol", rev = "c578492" }
|
|
rand = "0.8"
|
|
tokio = { version = "1", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "macros", "time", "process", "signal"] }
|
|
|
|
dotenv = "0.15"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|