Bump codegen's sea-query version [cli] Update CLI subcommand method Move migration utility into sea-orm-migration
25 lines
411 B
TOML
25 lines
411 B
TOML
[package]
|
|
name = "entity"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "entity"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
rocket = { version = "0.5.0-rc.1", features = [
|
|
"json",
|
|
] }
|
|
|
|
[dependencies.sea-orm]
|
|
path = "../../../" # remove this line in your own project
|
|
version = "^0.7.0"
|
|
features = [
|
|
"macros",
|
|
"runtime-tokio-native-tls",
|
|
"sqlx-postgres",
|
|
# "sqlx-mysql",
|
|
# "sqlx-sqlite",
|
|
] |