-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
46 lines (41 loc) · 1.43 KB
/
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
39
40
41
42
43
44
45
46
[package]
name = "deno_config"
description = "Config file implementation for the Deno CLI"
version = "0.43.0"
edition = "2021"
authors = ["the Deno authors"]
license = "MIT"
repository = "https://github.com/denoland/deno_config"
[workspace]
members = ["."]
[workspace.dependencies]
sys_traits = "0.1.0"
[features]
default = ["workspace"]
deno_json = ["jsonc-parser", "glob", "ignore", "import_map", "phf"]
package_json = ["deno_package_json"]
sync = ["deno_package_json/sync"]
workspace = ["deno_json", "deno_semver", "package_json"]
[dependencies]
indexmap = { version = "2", features = ["serde"] }
jsonc-parser = { version = "0.26.0", features = ["serde"], optional = true }
log = "0.4.20"
glob = { version = "0.3.1", optional = true }
ignore = { version = "0.4", optional = true }
percent-encoding = "2.3.0"
phf = { version = "0.11", features = ["macros"], optional = true }
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.85"
url = { version = "2.3.1" }
import_map = { version = "0.21.0", features = ["ext"], optional = true }
thiserror = "2"
deno_error = { version = "0.5.3", features = ["url"] }
boxed_error = "0.2.3"
deno_semver = { version = "0.7.1", optional = true }
deno_package_json = { version = "0.4.0", optional = true }
deno_path_util = "0.3.0"
sys_traits.workspace = true
[dev-dependencies]
tempfile = "3.4.0"
pretty_assertions = "1.4.0"
sys_traits = { workspace = true, features = ["memory", "real", "serde_json"] }