Files
OpenFUT/openfut-utas-host/Cargo.toml
T

20 lines
742 B
TOML

[package]
name = "openfut-utas-host"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "FIFA 17 UTAS migration host: serves implemented routes (/club) from OpenFUT Core, transparently proxies everything else to the Python UTAS oracle"
publish = false
[dependencies]
openfut-adapter-fifa17 = { path = "../openfut-adapter-fifa17" }
openfut-http = { path = "../openfut-http" }
openfut-identity = { path = "../openfut-identity" }
serde_json = "1"
# Plain-HTTP client for Core queries and Python passthrough. UTAS is plaintext
# HTTP (worker D: no wrap_socket, no cert), so no TLS backend is linked.
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json"] }
[dev-dependencies]
parking_lot = "0.12"