-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
38 lines (34 loc) · 900 Bytes
/
Cargo.toml
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
[package]
name = "deno_npm"
version = "0.27.0"
edition = "2021"
description = "npm registry client and dependency resolver used in the Deno CLI"
homepage = "https://deno.land/"
repository = "https://github.com/denoland/deno_npm"
documentation = "https://docs.rs/deno_npm"
authors = ["the Deno authors"]
license = "MIT"
[dependencies]
async-trait = "0.1.68"
deno_semver = "0.7.0"
deno_error = "0.5.2"
deno_lockfile = "0.24.0"
monch = "0.5.0"
log = "0.4"
serde = { version = "1.0.130", features = ["derive", "rc"] }
serde_json = { version = "1.0.67", features = ["preserve_order"] }
thiserror = "2.0.3"
futures = "0.3.28"
url = "2"
capacity_builder = "0.5.0"
[dev-dependencies]
divan = "0.1.17"
pretty_assertions = "1.0.0"
reqwest = "0.12.9"
tokio = { version = "1.27.0", features = ["full"] }
[profile.release-with-debug]
inherits = "release"
debug = true
[[bench]]
name = "bench"
harness = false