Remove collections::only::raw export

This commit is contained in:
Jonas Platte 2020-02-21 12:18:21 +01:00
parent 096b40c579
commit 9d7ff18463
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# [unreleased]
Breaking changes:
* `collections::only` no longer exports a `raw` submodule. It was never meant ot be exported in the first place.
# 0.16.0
Breaking changes:

View File

@ -3,7 +3,8 @@
use serde::Serialize;
pub use super::{all::StateEvent, raw::only as raw};
pub use super::all::StateEvent;
use super::raw::only as raw;
use crate::{
call::{
answer::AnswerEvent, candidates::CandidatesEvent, hangup::HangupEvent, invite::InviteEvent,