mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
7b33623b1d
Originally landed in
f6fd6619e7
.
Reverted in https://github.com/denoland/deno/pull/24574.
This reland contains a fix that sends "Accept: */*" header for calls made
from "FileFetcher". Absence of this header made downloading source code
from JSR broken. This is tested by ensuring this header is present in the
test server that servers JSR packages.
---------
Co-authored-by: Sean McArthur <sean@seanmonstar.com>
42 lines
1,021 B
TOML
42 lines
1,021 B
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_kv"
|
|
version = "0.69.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
|
|
bytes.workspace = true
|
|
chrono = { workspace = true, features = ["now"] }
|
|
deno_core.workspace = true
|
|
deno_fetch.workspace = true
|
|
deno_node.workspace = true
|
|
deno_permissions.workspace = true
|
|
deno_tls.workspace = true
|
|
denokv_proto.workspace = true
|
|
denokv_remote.workspace = true
|
|
denokv_sqlite.workspace = true
|
|
faster-hex.workspace = true
|
|
http.workspace = true
|
|
http-body-util.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
|