14 lines
371 B
TOML
14 lines
371 B
TOML
[package]
|
|
name = "jmserver"
|
|
version = "0.1.0"
|
|
authors = ["Timo Ley <timo@leyt.xyz>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.51"
|
|
sqlx = { version = "0.3", features = [ "mysql" ] }
|
|
rand = "0.8.0"
|