diff options
| author | crowlKats <13135287+crowlKats@users.noreply.github.com> | 2021-05-10 12:02:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-10 12:02:47 +0200 |
| commit | dfe528198d363ebc883da84dc816bce112ecd24b (patch) | |
| tree | dfa0e67521a5b0a968b57514aa02fc8f114d4132 /extensions/webstorage/Cargo.toml | |
| parent | 32ad8f77d68df04e26ecaed71bdd8d37f048218a (diff) | |
feat: add WebStorage API (#7819)
This commit introduces localStorage and sessionStorage.
Diffstat (limited to 'extensions/webstorage/Cargo.toml')
| -rw-r--r-- | extensions/webstorage/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/extensions/webstorage/Cargo.toml b/extensions/webstorage/Cargo.toml new file mode 100644 index 000000000..acfaf6a16 --- /dev/null +++ b/extensions/webstorage/Cargo.toml @@ -0,0 +1,19 @@ +# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_webstorage" +version = "0.1.0" +edition = "2018" +description = "Implementation of WebStorage API for Deno" +authors = ["the Deno authors"] +license = "MIT" +readme = "README.md" +repository = "https://github.com/denoland/deno" + +[lib] +path = "lib.rs" + +[dependencies] +deno_core = { version = "0.86.0", path = "../../core" } +rusqlite = { version = "0.25.0", features = ["unlock_notify", "bundled"] } +serde = { version = "1.0.125", features = ["derive"] } |
