* 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
25 lines
546 B
TOML
25 lines
546 B
TOML
[package]
|
|
name = "sea-orm-actix-4-beta-example"
|
|
version = "0.1.0"
|
|
authors = ["Sam Samai <sam@studio2pi.com.au>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[workspace]
|
|
members = [".", "entity", "migration"]
|
|
|
|
[dependencies]
|
|
actix-files = "0.6.0-beta.4"
|
|
actix-http = "=3.0.0-beta.5"
|
|
actix-rt = "2.2.0"
|
|
actix-service = "=2.0.0-beta.5"
|
|
actix-web = "=4.0.0-beta.5"
|
|
|
|
tera = "1.8.0"
|
|
dotenv = "0.15"
|
|
listenfd = "0.3.3"
|
|
serde = "1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
entity = { path = "entity" }
|
|
migration = { path = "migration" }
|