2024-02-09 21:22:29 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "factoriauth"
|
|
|
|
description = "An unofficial authentication server for Factorio"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Lambda"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
keywords = ["offline"]
|
|
|
|
categories = ["authentication", "games"]
|
|
|
|
|
2024-02-10 10:53:28 +01:00
|
|
|
[profile.dev.package.backtrace]
|
|
|
|
opt-level = 3
|
|
|
|
|
2024-02-09 21:22:29 +01:00
|
|
|
[dependencies]
|
2024-02-10 10:53:28 +01:00
|
|
|
axum = "0.7.4"
|
|
|
|
color-eyre = { version = "0.6.2" }
|
|
|
|
ldap3 = { version = "0.11.3", default-features = false, features = ["tls-rustls"] }
|
2024-02-10 11:10:58 +01:00
|
|
|
secrecy = "0.8.0"
|
2024-02-10 10:53:28 +01:00
|
|
|
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls"] }
|
|
|
|
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
|
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|