sea-orm/issues/630/Cargo.toml
Billy Chan 840f8f6148
DeriveEntityModel macros override column name (#695)
* 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>
2022-05-09 22:08:59 +08:00

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"]