* fix: Support deriving ActiveEnum without importing EnumIter, Iden, and ActiveEnum * style: Fix format * DeriveActiveEnum without depending on sea_query::Iden derive macros * [issues] add tests * Fix [issues] features Co-authored-by: Naoki Ikeguchi <me@s6n.jp>
18 lines
345 B
TOML
18 lines
345 B
TOML
[workspace]
|
|
# A separate workspace
|
|
|
|
[package]
|
|
name = "sea-orm-issues-1143"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
serde = "^1"
|
|
tokio = { version = "^1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
[dependencies.sea-orm]
|
|
path = "../../"
|
|
default-features = false
|
|
features = ["macros", "runtime-tokio-native-tls"]
|