mirror of
https://github.com/lldap/lldap.git
synced 2026-06-10 05:20:33 +00:00
This commit upgrades the TLS stack to Rustls 0.23 Key changes: - Dependencies: Updated 'rustls' (v0.23), 'tokio-rustls' (v0.26), and 'actix-web' (v4.12.1). - Build Fix: Configured 'rustls' to use the 'ring' provider (disabling default 'aws-lc-rs') to ensure ARMv7 compatibility. - Refactor: Created 'server/src/tls.rs' to handle certificate loading (DRY). - LDAP: Updated 'ldap_server.rs' to use the new TLS module and Rustls APIs. - Healthcheck: Updated 'healthcheck.rs' to use Rustls 0.23 types.
16 lines
319 B
Rust
16 lines
319 B
Rust
pub mod auth_service;
|
|
pub mod cli;
|
|
pub mod configuration;
|
|
pub mod database_string;
|
|
pub mod db_cleaner;
|
|
pub mod graphql_server;
|
|
pub mod healthcheck;
|
|
pub mod jwt_sql_tables;
|
|
pub mod ldap_server;
|
|
pub mod logging;
|
|
pub mod mail;
|
|
pub mod sql_tcp_backend_handler;
|
|
pub mod tcp_backend_handler;
|
|
pub mod tcp_server;
|
|
pub mod tls;
|