ubolonton / emacs-module-rs

Rust binding and tools for Emacs's dynamic modules
340 stars 22 forks source link

Replace `failure` with `thiserror` #26

Closed ubolonton closed 3 years ago

ubolonton commented 4 years ago

Most improvements from failure are now incorporated into std::error::Error.

This is also the chance to drop the Send + Sync requirement on core error types, and therefore the clunky TempValue type.

See also: