cursive
cursive copied to clipboard
Which one is correct/preferred way?
Hi, During the compilation I got error and suggestion that I should use one of:
use cursive::event::EventResult; use cursive_core::event::EventResult;
Which one is the preferred one? Thank you
Both are the same. Cursive re exports all of cursive-core. If you write a library, it may help to only depend on cursive-core. If you write an application, just use cursive.