forked from denoland/deno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
51 lines (45 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 2018-2026 the Deno authors. MIT license.
[package]
name = "deno_npm_cache"
version = "0.53.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
readme = "README.md"
repository.workspace = true
description = "Helpers for downloading and caching npm dependencies for Deno"
[lib]
path = "lib.rs"
[dependencies]
async-trait.workspace = true
base64.workspace = true
boxed_error.workspace = true
deno_cache_dir = { workspace = true, features = ["sync"] }
deno_error = { workspace = true, features = ["serde", "serde_json"] }
deno_npm.workspace = true
deno_path_util.workspace = true
deno_semver.workspace = true
deno_unsync.workspace = true
faster-hex.workspace = true
flate2 = { workspace = true, features = ["default"] }
futures.workspace = true
log.workspace = true
parking_lot.workspace = true
percent-encoding.workspace = true
serde.workspace = true
serde_json.workspace = true
sys_traits.workspace = true
tar.workspace = true
thiserror.workspace = true
url.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
deno_error = { workspace = true, features = ["serde", "serde_json", "tokio"] }
deno_unsync = { workspace = true, features = ["tokio"] }
aws-lc-rs.workspace = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
flate2 = { workspace = true, features = ["rust_backend"] }
sha2.workspace = true
sha1.workspace = true
[dev-dependencies]
sys_traits = { workspace = true, features = ["real"] }
tempfile.workspace = true