You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, error-chain uses quick-error by just copying the file to src/quick_error.rs, with #30 applied and removal of the Error implementation. That's not ideal since we have to copy the file and make the changes instead of just updating Cargo.toml. Solutions I see:
Add quick-error as a git sub-module and make a symbolic link. $crate could work if I reexport the few items you define in the crate... except that I also define a ResultExt ^^
And there is still the issue with Error.
Any thought about it?
The text was updated successfully, but these errors were encountered:
Currently,
error-chain
usesquick-error
by just copying the file tosrc/quick_error.rs
, with #30 applied and removal of theError
implementation. That's not ideal since we have to copy the file and make the changes instead of just updatingCargo.toml
. Solutions I see:macro_reexport
: nightly only, not in path for stabilisation.quick-error
as a git sub-module and make a symbolic link.$crate
could work if I reexport the few items you define in the crate... except that I also define aResultExt
^^And there is still the issue with
Error
.Any thought about it?
The text was updated successfully, but these errors were encountered: