Update simulator dependencies
Since logging was broken due to incompatibility between log and
env_logger versions, those crates were updated to known to be compatible
versions. Update initialization of env_logger that does not return a
Result<> anymore.
Other crates were updated to remove duplicated versions as much as
possible.
Signed-off-by: Fabio Utzig <utzig@apache.org>
diff --git a/sim/src/testlog.rs b/sim/src/testlog.rs
index c62e007..28a189a 100644
--- a/sim/src/testlog.rs
+++ b/sim/src/testlog.rs
@@ -14,6 +14,6 @@
/// Setup the logging system. Intended to be called at the beginning of each test.
pub fn setup() {
INIT.call_once(|| {
- env_logger::init().unwrap();
+ env_logger::init();
});
}