Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Better error handling/reporting #1670

Merged
merged 16 commits into from
Sep 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
utils: re-export "anyhow" unconditionally
even for wasm targets.
  • Loading branch information
har7an committed Sep 4, 2022
commit 9c77cd3bb42fe0a9377802c9a52472d9c4c83f9c
6 changes: 4 additions & 2 deletions zellij-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ pub mod logging; // Requires log4rs

#[cfg(not(target_family = "wasm"))]
pub use ::{
anyhow, async_std, clap, interprocess, lazy_static, libc, nix, regex, serde, serde_yaml,
signal_hook, tempfile, termwiz, vte,
async_std, clap, interprocess, lazy_static, libc, nix, regex, serde, serde_yaml, signal_hook,
tempfile, termwiz, vte,
};

pub use anyhow;