2025-01-01 04:12:39 +09:00
|
|
|
# Copyright 2018-2025 the Deno authors. MIT license.
|
2021-05-10 12:02:47 +02:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_webstorage"
|
2025-01-09 17:38:18 -05:00
|
|
|
version = "0.180.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-05-10 12:02:47 +02:00
|
|
|
readme = "README.md"
|
2022-11-22 21:07:35 +01:00
|
|
|
repository.workspace = true
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Implementation of WebStorage API for Deno"
|
2021-05-10 12:02:47 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_core.workspace = true
|
2025-01-08 14:52:32 -08:00
|
|
|
deno_error.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_web.workspace = true
|
|
|
|
rusqlite.workspace = true
|
2024-10-14 13:53:17 -07:00
|
|
|
thiserror.workspace = true
|