2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-05-10 06:02:47 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_webstorage"
|
2022-08-04 18:10:47 -04:00
|
|
|
version = "0.59.0"
|
2021-05-10 06:02:47 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-05-10 06:02:47 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Implementation of WebStorage API for Deno"
|
2021-05-10 06:02:47 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-04 18:10:47 -04:00
|
|
|
deno_core = { version = "0.146.0", path = "../../core" }
|
|
|
|
deno_web = { version = "0.95.0", path = "../web" }
|
2022-03-25 08:32:50 -04:00
|
|
|
rusqlite = { version = "0.27.0", features = ["unlock_notify", "bundled"] }
|
2022-05-05 06:41:59 -04:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|