658dbe2f24
RETAINED PRE-EXISTING WIP (brought forward after verification, not authored
here, not production-ready). Substantive mapper.rs proxy expansion plus a
multi-stage Dockerfile/.dockerignore (rustls, self-signed cert at startup).
No secrets/captures staged. Preserved off the detached base c58e7326a1.
52 lines
1.5 KiB
TOML
52 lines
1.5 KiB
TOML
[package]
|
|
name = "openfut-bridge"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["OpenFUT Contributors"]
|
|
description = "FIFA 23 integration layer and reverse-engineering proxy"
|
|
license = "MIT"
|
|
repository = "https://git.aleshym.co/funman300/OpenFUT-Bridge.git"
|
|
|
|
[lib]
|
|
name = "openfut_bridge"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "openfut-bridge"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "openfut-bridge-replay"
|
|
path = "src/bin/replay.rs"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7", features = ["macros"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tower = { version = "0.4", features = ["util"] }
|
|
tower-http = { version = "0.5", features = ["cors", "trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
thiserror = "1"
|
|
anyhow = "1"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
|
|
dotenvy = "0.15"
|
|
http = "1"
|
|
bytes = "1"
|
|
rcgen = "0.11"
|
|
# TLS: same rustls version as reqwest 0.11 uses internally
|
|
rustls = "0.21"
|
|
rustls-pemfile = "1"
|
|
tokio-rustls = "0.24"
|
|
# hyper 1.x + hyper-util (same versions axum 0.7 pulls in)
|
|
hyper = { version = "1", features = ["http1", "http2"] }
|
|
hyper-util = { version = "0.1", features = ["server-auto", "tokio"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tower = { version = "0.4", features = ["util"] }
|