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
In short, I'm working with sodiumoxide, and running tests fails with something like this:
src/sodiumoxide/crypto/secretbox.rs:26:9: 26:35 error: import `__test_reexports` conflicts with type in this module
src/sodiumoxide/crypto/secretbox.rs:26 pub use self::xsalsa20poly1305::*;
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/sodiumoxide/lib.rs:1:1: 1:1 note: note conflicting type here
src/sodiumoxide/lib.rs:1 /*!
^
src/sodiumoxide/crypto/sign.rs:28:9: 28:26 error: import `__test_reexports` conflicts with type in this module
src/sodiumoxide/crypto/sign.rs:28 pub use self::ed25519::*;
^~~~~~~~~~~~~~~~~
src/sodiumoxide/lib.rs:1:1: 1:1 note: note conflicting type here
src/sodiumoxide/lib.rs:1 /*!
^
src/sodiumoxide/crypto/shorthash.rs:17:9: 17:28 error: import `__test_reexports` conflicts with type in this module
src/sodiumoxide/crypto/shorthash.rs:17 pub use self::siphash24::*;
^~~~~~~~~~~~~~~~~~~
src/sodiumoxide/lib.rs:1:1: 1:1 note: note conflicting type here
src/sodiumoxide/lib.rs:1 /*!
There are actually more errors, all of the same format. This pretty much breaks pub use glob::* entirely - I haven't been able to find a workaround (short of just explicitly stating what to use, which kind of defeats the purpose).
The text was updated successfully, but these errors were encountered:
In short, I'm working with sodiumoxide, and running tests fails with something like this:
There are actually more errors, all of the same format. This pretty much breaks
pub use glob::*
entirely - I haven't been able to find a workaround (short of just explicitly stating what to use, which kind of defeats the purpose).The text was updated successfully, but these errors were encountered: