Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ members = [

[package]
name = "fast_log"
version = "1.5.13"
version = "1.5.14"
description = "Rust async log High-performance asynchronous logging"
readme = "Readme.md"
authors = ["ce <zhuxiujia@qq.com>"]
2 changes: 1 addition & 1 deletion src/runtime.rs
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ pub type WaitGroup = crossbeam_utils::sync::WaitGroup;

#[cfg(feature = "runtime_thread")]
pub fn chan<T>() -> (Sender<T>, Receiver<T>) {
crossbeam::channel::unbounded()
crossbeam::channel::bounded(10000)
}

#[cfg(feature = "runtime_thread")]

0 comments on commit cf89720

Please sign in to comment.