So my task is to update a Rust project using actix_web 3.1 to current 4.1. I had to replace the client, but that work out fine. But now the problem is that the project uses actix-settings https://crates.io/crates/actix-settings for configuring the HttpServer via a toml file. Unfortunately actix-settings hasn't been updated recently and the latest version still only supports actix_web 3.1.
Of course I could simply remove that dependency and move the configuration into the code, but is there maybe another crate that took over from actix-settings and supports configuration via toml (or via another file format)?
PS: I cloned actix-settings and checked if I can simply update its dependency to actix-web 4.1 but this seems to require non-trivial code changes as well, so it's not really an option for me.