[package] name = "server" version = "0.1.0" authors = ["ThePerkinrex "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # Utilities rand = "0.7.3" image = "0.23.11" uuid = {version = "0.8.1", features = ["v4"]} tokio = {version = "0.2", 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.4", features = ["serde", "sync"]} serde_json = "1.0.59" serde = "1.0.117" schemars = "0.8.0" # GRPC stack tonic = "0.3" prost = "0.6" prost-types = "0.6.1" # Database (SQLite) rusqlite = {version = "0.24.1", 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"