fixup! feat(sdk): Expose the list of tracked users publicly

master
Damir Jelić 2021-09-09 10:27:59 +02:00
parent 5ff69ad1a9
commit afc8597d3b
1 changed files with 5 additions and 5 deletions

View File

@ -13,11 +13,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#[cfg(feature = "encryption")]
use std::{
collections::HashSet,
io::{Cursor, Write},
};
#[cfg(all(feature = "encryption", not(target_arch = "wasm32")))]
use std::path::PathBuf;
use std::{
@ -36,6 +31,11 @@ use std::{
io::{Error as IoError, ErrorKind as IoErrorKind},
ops::Range,
};
#[cfg(feature = "encryption")]
use std::{
collections::HashSet,
io::{Cursor, Write},
};
use dashmap::DashMap;
use futures::FutureExt;