44 lines
1.6 KiB
TOML
44 lines
1.6 KiB
TOML
# 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"
|
|
repository = "https://git.it-syndikat.org/xiretza/factoriauth"
|
|
documentation = "https://docs.rs/factoriauth"
|
|
version = "1.1.0"
|
|
authors = ["Lambda", "deneb"]
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
keywords = ["offline"]
|
|
categories = ["authentication", "games"]
|
|
|
|
[profile.dev.package.backtrace]
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.77"
|
|
axum = "0.7.4"
|
|
base64 = "0.22.0"
|
|
clap = { version = "4.5.0", features = ["derive"] }
|
|
color-eyre = { version = "0.6.2" }
|
|
derive-debug = "0.1.2"
|
|
enum_dispatch = "0.3.13"
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
|
hmac = "0.12.1"
|
|
ldap3 = { version = "0.11.3", default-features = false, features = ["tls-rustls"] }
|
|
md-5 = "0.10.6"
|
|
pam = "0.8.0"
|
|
rand = "0.8.5"
|
|
reqwest = { version = "0.12.0", default-features = false, features = ["charset", "http2", "macos-system-configuration", "json", "rustls-tls-native-roots"] }
|
|
secrecy = { version = "0.10.0", features = ["serde"] }
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
sha2 = "0.10.8"
|
|
sqlx = { version = "0.8.0", features = ["runtime-tokio", "sqlite", "time"] }
|
|
thiserror = "1.0.56"
|
|
time = { version = "0.3.34", features = ["formatting", "macros"] }
|
|
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
|
|
toml = "0.8.10"
|
|
tracing = "0.1.40"
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
url = { version = "2.5.0", features = ["serde"] }
|