mehcode / config-rs

⚙️ Layered configuration system for Rust applications (with strong support for 12-factor applications).
Apache License 2.0
2.56k stars 213 forks source link

Very old version of async_trait crate is used #537

Closed mauricefisher64 closed 7 months ago

mauricefisher64 commented 7 months ago

The current version of async_trait used is over 3 yrs old. Is it possible to update a newer version. Our dependency checker used in our product will not let us use crates with very old versions of common dependencies.

Thanks

matthiasbeyer commented 7 months ago

Our spec async-trait = "0.1" is the lower bound. You can easily use a newer version of async-trait in your application that uses config-rs!

mauricefisher64 commented 7 months ago

I see it was updated