New comment by cinerea0 on void-packages repository https://github.com/void-linux/void-packages/pull/47948#issuecomment-1874765825 Comment: This is the error I get when compiling the new latest version (8.5.4): ``` error[E0658]: use of unstable library feature 'file_set_times' --> src/tunnel/tls_reloader.rs:89:26 | 89 | let _ = file.set_modified(SystemTime::now()).map_err(|err| { | ^^^^^^^^^^^^ | = note: see issue #98245 for more information ``` That feature was stabilized in Rust 1.75. However, it can be made to compile by commenting out one small block that supports an edge case (see https://github.com/erebe/wstunnel/issues/209#issuecomment-1873437744). What do you think?