diff options
author | Satya Rohith <me@satyarohith.com> | 2022-08-27 19:48:59 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 19:48:59 +0530 |
commit | 19fb9abe334313bec9f885818ed82ae754dd84e2 (patch) | |
tree | aa14759c03470ec513269330a2ab33554d494198 /ext | |
parent | 09c256d5eb925d06d7fc9352ddbf99abf98fba3d (diff) |
chore(ext/webstorage): upgrade rusqlite to 0.28.0 (#15638)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/webstorage/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml index 4ad1b7259..30125c4a1 100644 --- a/ext/webstorage/Cargo.toml +++ b/ext/webstorage/Cargo.toml @@ -16,5 +16,5 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.148.0", path = "../../core" } deno_web = { version = "0.97.0", path = "../web" } -rusqlite = { version = "0.27.0", features = ["unlock_notify", "bundled"] } +rusqlite = { version = "0.28.0", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.136", features = ["derive"] } |