* adds find_with_linked test * WIP(related test) * mock related test done * complete relation test * loader update * find_with/also_related missing test case for empty from other side * comments fixup * revert loader test * related select test done * find with/also linked test cases * removed due to it being functionally same as the new one * fmt, remove excess import * improved model generation * issue related test case #1790 * added loader test cases and slight improvement to find_related/linked * miscellaneous changes * added empty insert, merge load_one test case * completed loader many to many test case, fmt * removed empty_insert test case for now * commented insert_test * added Cargo.toml for issue 1790's folder * buffed salvo version for ci(0.49 yanked) * revert version for salvo example
19 lines
371 B
TOML
19 lines
371 B
TOML
[workspace]
|
|
# A separate workspace
|
|
|
|
[package]
|
|
name = "sea-orm-issues-1790"
|
|
version = "0.1.0"
|
|
edition = "2023"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
serde = "1"
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
[dependencies.sea-orm]
|
|
path = "../../"
|
|
default-features = false
|
|
features = ["macros", "runtime-tokio-native-tls", "sqlx-sqlite"]
|