You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
authors = ["ThePerkinrex <theperkinrex@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["ansi"]
|
|
ansi = ["crossterm"]
|
|
|
|
[dependencies]
|
|
# Utilities
|
|
rand = "0.8"
|
|
image = "0.23"
|
|
uuid = {version = "0.8", features = ["v4", "serde"]}
|
|
futures = "0.3"
|
|
tokio = {version = "1", features = ["full"]}
|
|
tokio-stream = "0.1"
|
|
server_client = {git = "https://github.com/Mr-Llama-s-Wonderful-Soundboard/server_client.git", branch = "main", features = ["tokio1"]}
|
|
fallible-iterator = "0.2"
|
|
regex = "1"
|
|
lazy_static = "1"
|
|
anyhow = "1"
|
|
|
|
|
|
# Game loading
|
|
rhai = {version = "1", features = ["serde", "sync"]}
|
|
serde_json = "1"
|
|
serde = "1"
|
|
schemars = "0.8"
|
|
|
|
|
|
# PROTOBUF stack
|
|
bytes = "1"
|
|
prost = "0.9"
|
|
prost-types = "0.9"
|
|
tar = "0.4"
|
|
libflate = "1"
|
|
|
|
# Database (SQLite)
|
|
rusqlite = {version = "0.26", features=["bundled"]}
|
|
|
|
# TUI
|
|
crossterm = {version = "0.22", optional = true}
|
|
log = "0.4"
|
|
fern = {version = "0.6", features = ["colored"]}
|
|
chrono = "0.4"
|
|
[build-dependencies]
|
|
# PROTOBUF codegen
|
|
prost-build = "0.9"
|