0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-15 18:16:12 -05:00

add debug

This commit is contained in:
David Sherret 2025-01-27 09:51:32 -05:00
parent 377ffff421
commit 98f9a0b0b1
3 changed files with 4 additions and 3 deletions

4
Cargo.lock generated
View file

@ -2208,9 +2208,9 @@ dependencies = [
[[package]]
name = "deno_package_json"
version = "0.4.1"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a850e68d99edecd4ff3426dd14a3d44a33a6b2175f54d85db7b42e4a3844ed0b"
checksum = "d07d26dbfcc01e636aef86f9baff7faf5338398e74d283d8fe01e39068f48049"
dependencies = [
"boxed_error",
"deno_error",

View file

@ -128,7 +128,7 @@ data-encoding = "2.3.3"
data-url = "=0.3.1"
deno_cache_dir = "=0.17.0"
deno_error = "=0.5.5"
deno_package_json = { version = "=0.4.1", default-features = false }
deno_package_json = { version = "=0.4.2", default-features = false }
deno_unsync = "0.4.2"
dlopen2 = "0.6.1"
ecb = "=0.1.2"

View file

@ -27,6 +27,7 @@ pub trait NodePackageJsonCache:
impl<T> NodePackageJsonCache for T
where
T: deno_package_json::PackageJsonCache
+ std::fmt::Debug
+ crate::sync::MaybeSend
+ crate::sync::MaybeSync,
{