18 lines
398 B
TOML
18 lines
398 B
TOML
[package]
|
|
name = "sish_games"
|
|
description = "Server for sish games"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.89"
|
|
axum = "0.7.7"
|
|
base64 = "0.22.1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
hmac = "0.12.1"
|
|
jsonwebtoken = "9"
|
|
ring = "0.17.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10.8"
|
|
tokio = { version = "1", features = ["full"] }
|