* Update examples sea-orm version * Update example sea-schema version * Update [cli] sea-schema version * Fix [cli] cargo publish failed * Update CHANGELOG * Edit rocket example * Poem example with migration * Axum example with migration * Refactoring * Actix4 example with migration * Actix example with migration * Use sea_schema::migration::prelude
26 lines
438 B
TOML
26 lines
438 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.6.0"
|
|
features = [
|
|
"macros",
|
|
"runtime-tokio-native-tls",
|
|
"sqlx-postgres",
|
|
# "sqlx-mysql",
|
|
# "sqlx-sqlite",
|
|
]
|
|
default-features = false |