mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 16:02:59 +01:00
do not re-export actix_inner
This commit is contained in:
parent
0ff5f5f448
commit
3bfed36fcc
15
src/lib.rs
15
src/lib.rs
@ -133,7 +133,7 @@ extern crate serde_json;
|
|||||||
extern crate serde_urlencoded;
|
extern crate serde_urlencoded;
|
||||||
extern crate smallvec;
|
extern crate smallvec;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
pub extern crate actix as actix_inner;
|
extern crate actix as actix_inner;
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
@ -197,13 +197,14 @@ pub use json::Json;
|
|||||||
pub use scope::Scope;
|
pub use scope::Scope;
|
||||||
|
|
||||||
pub mod actix {
|
pub mod actix {
|
||||||
//! Re-exports [actix's](https://docs.rs/actix) prelude
|
//! Re-exports [actix's](https://docs.rs/actix/) prelude
|
||||||
|
|
||||||
pub use actix_inner::actors::resolver;
|
extern crate actix;
|
||||||
pub use actix_inner::actors::signal;
|
pub use self::actix::actors::resolver;
|
||||||
pub use actix_inner::fut;
|
pub use self::actix::actors::signal;
|
||||||
pub use actix_inner::msgs;
|
pub use self::actix::fut;
|
||||||
pub use actix_inner::prelude::*;
|
pub use self::actix::msgs;
|
||||||
|
pub use self::actix::prelude::*;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "openssl")]
|
#[cfg(feature = "openssl")]
|
||||||
|
Loading…
Reference in New Issue
Block a user