✨ [seaorm] Añade soporte a SeaORM en PageTop
This commit is contained in:
parent
80ff4d9e8e
commit
d6c262cee6
17 changed files with 3453 additions and 12 deletions
35
packages/pagetop-seaorm/Cargo.toml
Normal file
35
packages/pagetop-seaorm/Cargo.toml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
[package]
|
||||
name = "pagetop-seaorm"
|
||||
version = "0.0.1"
|
||||
edition = "2021"
|
||||
|
||||
description = """\
|
||||
Integra SeaORM para trabajar con bases de datos en aplicaciones PageTop.\
|
||||
"""
|
||||
categories = ["web-programming", "database"]
|
||||
keywords = ["pagetop", "database", "sql", "orm"]
|
||||
|
||||
repository.workspace = true
|
||||
homepage.workspace = true
|
||||
license.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
[dependencies]
|
||||
pagetop.workspace = true
|
||||
|
||||
async-trait = "0.1.83"
|
||||
futures = "0.3.31"
|
||||
serde.workspace = true
|
||||
static-files.workspace = true
|
||||
url = "2.5.4"
|
||||
|
||||
[dependencies.sea-orm]
|
||||
version = "1.1.1"
|
||||
features = [
|
||||
"debug-print", "macros", "runtime-async-std-native-tls",
|
||||
"sqlx-mysql", "sqlx-postgres", "sqlx-sqlite",
|
||||
]
|
||||
default-features = false
|
||||
|
||||
[dependencies.sea-schema]
|
||||
version = "0.16.0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue