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.
43 lines
1.1 KiB
43 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
|
|
|
|
[dependencies]
|
|
# Utilities
|
|
rand = "0.8.0"
|
|
image = "0.23.12"
|
|
uuid = {version = "0.8.1", features = ["v4"]}
|
|
tokio = {version = "0.2.24", features = ["full"]}
|
|
server_client = {git = "https://github.com/Mr-Llama-s-Wonderful-Soundboard/server_client.git", branch = "main", features = ["tokio2"]}
|
|
fallible-iterator = "0.2.0"
|
|
regex = "1.4.2"
|
|
lazy_static = "1.4.0"
|
|
|
|
# Game loading
|
|
rhai = {version = "0.19.8", features = ["serde", "sync"]}
|
|
serde_json = "1.0.60"
|
|
serde = "1.0.118"
|
|
schemars = "0.8.0"
|
|
|
|
|
|
# GRPC stack
|
|
tonic = "0.3"
|
|
prost = "0.6"
|
|
prost-types = "0.6.1"
|
|
|
|
# Database (SQLite)
|
|
rusqlite = {version = "0.24.2", features=["bundled"]}
|
|
# sqlx = { version = "0.3", default-features = false, features = [ "runtime-tokio", "macros", "sqlite" ] }
|
|
|
|
# TUI
|
|
crossterm = "0.18.2"
|
|
log = "0.4.11"
|
|
fern = {version = "0.6.0", features = ["colored"]}
|
|
chrono = "0.4.19"
|
|
[build-dependencies]
|
|
# Grpc codegen
|
|
tonic-build = "0.3"
|