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.
31 lines
697 B
31 lines
697 B
[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.7.3"
|
|
uuid = {version = "0.8.1", features = ["v4"]}
|
|
tokio = {version = "0.2", features = ["full"]}
|
|
|
|
# Game loading
|
|
rhai = {version = "0.19.4", features = ["serde"]}
|
|
serde_json = "1.0.59"
|
|
serde = "1.0.117"
|
|
schemars = "0.8.0"
|
|
|
|
|
|
# GRPC stack
|
|
tonic = "0.3"
|
|
prost = "0.6"
|
|
|
|
# Database (SQLite)
|
|
sqlx = { version = "0.3", default-features = false, features = [ "runtime-tokio", "macros", "sqlite" ] }
|
|
|
|
[build-dependencies]
|
|
# Grpc codegen
|
|
tonic-build = "0.3"
|