factoriauth/Cargo.toml

47 lines
1.4 KiB
TOML
Raw Normal View History

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"
2024-02-10 23:08:39 +01:00
authors = ["Lambda", "deneb"]
2024-02-09 21:22:29 +01:00
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-20 20:58:28 +01:00
async-trait = "0.1.77"
2024-02-10 10:53:28 +01:00
axum = "0.7.4"
2024-02-10 12:34:32 +01:00
base64 = "0.21.7"
2024-02-10 14:14:55 +01:00
clap = { version = "4.5.0", features = ["derive"] }
2024-02-10 10:53:28 +01:00
color-eyre = { version = "0.6.2" }
2024-02-10 14:10:46 +01:00
hex = { version = "0.4.3", features = ["serde"] }
2024-02-10 12:08:48 +01:00
hmac = "0.12.1"
2024-02-10 10:53:28 +01:00
ldap3 = { version = "0.11.3", default-features = false, features = ["tls-rustls"] }
2024-02-10 12:08:48 +01:00
md-5 = "0.10.6"
2024-02-10 13:07:36 +01:00
rand = "0.8.5"
2024-02-20 22:50:49 +01:00
reqwest = { version = "0.11.24", features = ["json"] }
2024-02-10 11:23:49 +01:00
secrecy = { version = "0.8.0", features = ["serde"] }
2024-02-10 11:18:12 +01:00
serde = { version = "1.0.196", features = ["derive"] }
2024-02-10 19:49:23 +01:00
sha2 = "0.10.8"
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "sqlite", "time"] }
2024-02-10 13:08:29 +01:00
thiserror = "1.0.56"
2024-02-10 12:34:32 +01:00
time = { version = "0.3.34", features = ["formatting", "macros"] }
2024-02-10 10:53:28 +01:00
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
2024-02-10 13:54:40 +01:00
toml = "0.8.10"
2024-02-10 10:53:28 +01:00
tracing = "0.1.40"
2024-02-10 11:13:27 +01:00
tracing-error = "0.2.0"
2024-02-10 10:53:28 +01:00
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2024-02-20 22:50:49 +01:00
url = { version = "2.5.0", features = ["serde"] }
2024-02-10 23:05:41 +01:00
# latest versions with ring 0.16
rustls = "=0.21.7"
rustls-webpki = "=0.101.6"
sct = "=0.7.0"
2024-02-20 20:58:28 +01:00
# end of overrides