* Override column name with the name of model field in `DeriveEntityModel` macros [issues] * Fixup: trim prefix and tailing underscore Co-authored-by: Chris Tsang <chris.2y3@outlook.com>
24 lines
563 B
TOML
24 lines
563 B
TOML
[workspace]
|
|
# A separate workspace
|
|
|
|
[package]
|
|
name = "sea-orm-issues-630"
|
|
version = "0.1.0"
|
|
authors = ["Erik Rhodes <erik@space-nav.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
serde = "^1"
|
|
tokio = { version = "^1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
[dependencies.sea-orm]
|
|
path = "../../" # remove this line in your own project
|
|
version = "^0.7"
|
|
default-features = false
|
|
features = ["macros", "runtime-tokio-native-tls", "debug-print", "with-json", "with-chrono"]
|
|
|
|
[features]
|
|
default = ["sqlx-mysql"]
|
|
sqlx-mysql = ["sea-orm/sqlx-mysql"]
|