2022-08-29 12:03:21 +02:00
|
|
|
[package]
|
|
|
|
name = "lan-party"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rocket = { version = "0.5.0-rc.2", features = ["json"] }
|
|
|
|
dashmap = "5.3.4"
|
|
|
|
thiserror = "1.0"
|
|
|
|
schemars = "0.8.10"
|
|
|
|
okapi = { version = "0.7.0-rc.1" }
|
2022-08-29 13:53:39 +02:00
|
|
|
rocket_okapi = { version = "0.8.0-rc.2", features = ["swagger", "rocket_db_pools", "rapidoc"] }
|
2022-08-29 12:03:21 +02:00
|
|
|
futures = "0.3"
|
2022-08-29 13:53:39 +02:00
|
|
|
lazy_static = "1.4"
|
|
|
|
serde_json = "1"
|
2022-08-29 12:03:21 +02:00
|
|
|
|
|
|
|
[dependencies.sqlx]
|
|
|
|
version = "*"
|
|
|
|
default-features = false
|
|
|
|
features = ["macros", "offline", "migrate"]
|
|
|
|
|
|
|
|
[dependencies.rocket_db_pools]
|
|
|
|
version = "0.1.0-rc.2"
|
|
|
|
features = ["sqlx_sqlite"]
|
|
|
|
|
|
|
|
[dependencies.uuid]
|
|
|
|
version = "1.1.2"
|
|
|
|
features = [
|
|
|
|
"v4", # Lets you generate random UUIDs
|
|
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
|
|
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
|
|
|
|
]
|