mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
e02a32be27
Bumped versions for 1.44.1 Please ensure: - [x] Target branch is correct (`vX.XX` if a patch release, `main` if minor) - [x] Crate versions are bumped correctly - [x] Releases.md is updated correctly (think relevancy and remove reverts) To make edits to this PR: ```shell git fetch upstream release_1_44.1 && git checkout -b release_1_44.1 upstream/release_1_44.1 ``` cc @devsnek Co-authored-by: devsnek <devsnek@users.noreply.github.com>
38 lines
910 B
TOML
38 lines
910 B
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_kv"
|
|
version = "0.63.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Implementation of the Deno database API"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
chrono = { workspace = true, features = ["now"] }
|
|
deno_core.workspace = true
|
|
deno_fetch.workspace = true
|
|
deno_node.workspace = true
|
|
deno_tls.workspace = true
|
|
denokv_proto.workspace = true
|
|
denokv_remote.workspace = true
|
|
denokv_sqlite.workspace = true
|
|
faster-hex.workspace = true
|
|
log.workspace = true
|
|
num-bigint.workspace = true
|
|
prost.workspace = true
|
|
rand.workspace = true
|
|
rusqlite.workspace = true
|
|
serde.workspace = true
|
|
url.workspace = true
|
|
|
|
[build-dependencies]
|
|
prost-build.workspace = true
|