mirror of
https://github.com/actix/actix-website
synced 2025-06-27 15:39:02 +02:00
docs: Add documentation supporting native, asynchronous database operations (#580)
* feat: add sea orm documents * feat: add description for sea orm cli
This commit is contained in:
15
examples/sea-orm-databases/Cargo.toml
Normal file
15
examples/sea-orm-databases/Cargo.toml
Normal file
@ -0,0 +1,15 @@
|
||||
[package]
|
||||
name = "sea-orm-databases"
|
||||
version = "0.1.0"
|
||||
publish = false
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4"
|
||||
sea-orm = { version = "1.1.0", features = [
|
||||
"sqlx-sqlite",
|
||||
"runtime-tokio-native-tls",
|
||||
"macros",
|
||||
] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
uuid = { version = "1", features = ["v4"] }
|
Reference in New Issue
Block a user