File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ buildtime_bindgen = ["bindgen"]
27
27
openssl = [" openssl-sys" ]
28
28
openssl_bundled = [" openssl-sys/vendored" , " threading" ]
29
29
threading = []
30
- tokio_backend = [" bundled " , " buildtime_bindgen" ]
30
+ tokio_backend = [" buildtime_bindgen" ]
31
31
32
32
# features for development
33
33
verbose_build = []
Original file line number Diff line number Diff line change 1
1
#![ allow( dead_code) ]
2
2
3
- use super :: { event:: * , tokio_backend :: Runtime } ;
3
+ use super :: event:: * ;
4
4
use crate :: EventCallbackWrapper ;
5
5
use bitflags:: bitflags;
6
6
use std:: io;
@@ -52,7 +52,7 @@ impl Base {
52
52
53
53
/// Replaces the standard libevent backend with an owned tokio runtime
54
54
#[ cfg( feature = "tokio_backend" ) ]
55
- pub fn inject_tokio ( & self , runtime : Box < dyn Runtime > ) {
55
+ pub fn inject_tokio ( & self , runtime : Box < dyn crate :: tokio_backend :: Runtime > ) {
56
56
super :: tokio_backend:: inject_tokio ( self . base , runtime)
57
57
}
58
58
You can’t perform that action at this time.
0 commit comments