#249 Build with mock only
This commit is contained in:
parent
01eff84ce8
commit
55dbdb7626
11
issues/249/Cargo.toml
Normal file
11
issues/249/Cargo.toml
Normal file
@ -0,0 +1,11 @@
|
||||
[workspace]
|
||||
# A separate workspace
|
||||
|
||||
[package]
|
||||
name = "sea-orm-issues-249"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
sea-orm = { path = "../../", default-features = false, features = ["mock"] }
|
0
issues/249/src/lib.rs
Normal file
0
issues/249/src/lib.rs
Normal file
@ -2,7 +2,7 @@
|
||||
# A separate workspace
|
||||
|
||||
[package]
|
||||
name = "sea-orm-example-tokio"
|
||||
name = "sea-orm-issues-86"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
publish = false
|
||||
|
@ -1,5 +1,5 @@
|
||||
use crate::{
|
||||
error::*, ConnectionTrait, EntityTrait, FromQueryResult, IdenStatic, Iterable, JsonValue,
|
||||
error::*, ConnectionTrait, EntityTrait, FromQueryResult, IdenStatic, Iterable,
|
||||
ModelTrait, Paginator, PrimaryKeyToColumn, QueryResult, Select, SelectA, SelectB, SelectTwo,
|
||||
SelectTwoMany, Statement, TryGetableMany,
|
||||
};
|
||||
@ -8,6 +8,9 @@ use sea_query::SelectStatement;
|
||||
use std::marker::PhantomData;
|
||||
use std::pin::Pin;
|
||||
|
||||
#[cfg(feature = "with-json")]
|
||||
use crate::JsonValue;
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct Selector<S>
|
||||
where
|
||||
|
@ -274,6 +274,7 @@ mod executor;
|
||||
pub mod query;
|
||||
pub mod schema;
|
||||
#[doc(hidden)]
|
||||
#[cfg(feature = "macros")]
|
||||
pub mod tests_cfg;
|
||||
mod util;
|
||||
|
||||
@ -298,5 +299,4 @@ pub use sea_query::Iden;
|
||||
pub use sea_query::Iden as DeriveIden;
|
||||
|
||||
pub use sea_strum;
|
||||
#[cfg(feature = "macros")]
|
||||
pub use sea_strum::EnumIter;
|
||||
|
Loading…
x
Reference in New Issue
Block a user