feat(card_db): Switch to fully-fledged diesel-based sqlite db
This commit is contained in:
parent
7e9f0ff128
commit
2bb09cbe54
14 changed files with 361 additions and 148 deletions
|
@ -7,10 +7,17 @@ edition = "2021"
|
|||
console_error_panic_hook = "0.1.7"
|
||||
dedent = "0.1.1"
|
||||
futures = "0.3.31"
|
||||
idb = "0.6.4"
|
||||
leptos = { version = "0.7.7", features = ["csr"] }
|
||||
diesel = { git = "https://github.com/diesel-rs/diesel.git", features = ["sqlite"] }
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde-wasm-bindgen = "0.6.5"
|
||||
serde_json = "1.0.140"
|
||||
thiserror = "2.0.12"
|
||||
url = "2.5.4"
|
||||
wasm-bindgen = "0.2.100"
|
||||
wasm-bindgen-futures = "0.4.50"
|
||||
diesel-derive-enum = { version = "2.1.0", features = ["sqlite"] }
|
||||
diesel_migrations = { git = "https://github.com/diesel-rs/diesel.git", features = ["sqlite"] }
|
||||
|
||||
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
|
||||
sqlite-wasm-rs = { version = ">=0.3.0, <0.4.0" , default-features = false, features = ["precompiled"]}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue