fix(sql): add SQL support for Postgres NUMERIC and custom data types (fix: #3158) (#3275)

This commit is contained in:
Mike
2026-03-05 21:31:20 +09:00
committed by GitHub
parent f5f68063e4
commit 1dc3612862
4 changed files with 34 additions and 2 deletions
+2 -1
View File
@@ -29,7 +29,8 @@ tauri = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
futures-core = "0.3"
sqlx = { version = "0.8", features = ["json", "time", "uuid"] }
sqlx = { version = "0.8", features = ["json", "time", "uuid", "rust_decimal"] }
rust_decimal = "1"
time = "0.3"
tokio = { version = "1", features = ["sync"] }
indexmap = { version = "2", features = ["serde"] }