defguard icon indicating copy to clipboard operation
defguard copied to clipboard

Don't use deprecated generic_array module

Open j-chmielewski opened this issue 3 weeks ago • 0 comments
trafficstars

defguard_core::enterprise::ldap::hash::salted_sha1_hash currently depends on the deprecated generic_array crate. This dependency is brought in transitively via the sha1 crate.

It’s possible that an upcoming release of sha1 will update its dependency to generic_array v1.x, which should resolve the deprecation warning after running cargo update.

For now, #[allow(deprecated)] attributes have been added to suppress the warnings until the dependency is updated.

j-chmielewski avatar Nov 03 '25 11:11 j-chmielewski