Fix Subscription re-export after moving it into its own module

This commit is contained in:
Max Brunsfeld 2021-12-06 17:40:17 -08:00
parent 102926d171
commit 39cc0cac93
2 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,6 @@ use std::{
time::{Duration, Instant, SystemTime, UNIX_EPOCH},
vec,
};
use text::subscription::Subscription;
pub use text::{Buffer as TextBuffer, Operation as _, *};
use theme::SyntaxTheme;
use tree_sitter::{InputEdit, Parser, QueryCursor, Tree};

View File

@ -32,7 +32,7 @@ use std::{
sync::Arc,
time::{Duration, Instant},
};
use subscription::{Subscription, Topic};
pub use subscription::*;
pub use sum_tree::Bias;
use sum_tree::{FilterCursor, SumTree};