* 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
405 B
TOML
18 lines
405 B
TOML
[workspace]
|
|
# A separate workspace
|
|
|
|
[package]
|
|
name = "sea-orm-issues-892"
|
|
version = "0.1.0"
|
|
authors = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.20.0", features = ["rt-multi-thread", "macros"] }
|
|
|
|
[dependencies.sea-orm]
|
|
path = "../../" # remove this line in your own project
|
|
features = ["runtime-tokio-rustls", "tests-cfg", "sqlx-sqlite", "macros"]
|
|
default-features = false
|