feat(sql): Improve type decoding. Adds support for time and dates (#266)

* feat(sql): Improve type decoding. Adds support for time and dates

* remove default feat

* typo
This commit is contained in:
Fabian-Lars
2023-03-05 12:25:15 +01:00
committed by GitHub
parent 265acf7454
commit 1d52416f70
8 changed files with 271 additions and 67 deletions
+3 -2
View File
@@ -15,9 +15,10 @@ serde_json.workspace = true
tauri.workspace = true
log.workspace = true
thiserror.workspace = true
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "json"] }
futures-core = "0.3"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "json", "time"] }
time = "0.3"
tokio = { version = "1", features = ["sync"] }
futures = "0.3"
[features]
sqlite = ["sqlx/sqlite"]