generated from alecodes/base-template
feat: serialize database schema
This commit is contained in:
parent
fc0a9b4206
commit
de506a73df
5 changed files with 460 additions and 8 deletions
|
|
@ -6,7 +6,9 @@ edition = "2021"
|
|||
[dependencies]
|
||||
chrono = "0.4.39"
|
||||
clap = { version = "4.5.26", features = ["derive", "env"] }
|
||||
config = { version = "0.15.6", features = ["toml"] }
|
||||
futures = "0.3.31"
|
||||
heck = "0.5.0"
|
||||
sea-schema = { version = "0.16.1", features = [
|
||||
"sqlx-mysql",
|
||||
"sqlx-postgres",
|
||||
|
|
@ -15,7 +17,7 @@ sea-schema = { version = "0.16.1", features = [
|
|||
"probe",
|
||||
"with-serde",
|
||||
] }
|
||||
serde = "1.0.217"
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
sqlx = { version = "0.8", features = [
|
||||
"runtime-tokio",
|
||||
"tls-native-tls",
|
||||
|
|
@ -26,4 +28,5 @@ sqlx = { version = "0.8", features = [
|
|||
thiserror = "2.0.11"
|
||||
tokio = { version = "1.43.0", features = ["full"] }
|
||||
toml = "0.8.19"
|
||||
toml_edit = "0.22.22"
|
||||
url = "2.5.4"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue