This crate implements standalone default() function that can be imported with use default::default; and then in your code you can just:
default()
use default::default;
let foo = default();
instead of the usual:
let foo = Default::default();