mirror of
https://github.com/denoland/deno.git
synced 2025-01-09 23:58:23 -05:00
37 lines
851 B
TOML
37 lines
851 B
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "deno_resolver"
|
|
version = "0.15.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Deno resolution algorithm"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
sync = ["dashmap"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
base32.workspace = true
|
|
boxed_error.workspace = true
|
|
dashmap = { workspace = true, optional = true }
|
|
deno_config.workspace = true
|
|
deno_media_type.workspace = true
|
|
deno_package_json.workspace = true
|
|
deno_package_json.features = ["sync"]
|
|
deno_path_util.workspace = true
|
|
deno_semver.workspace = true
|
|
node_resolver.workspace = true
|
|
node_resolver.features = ["sync"]
|
|
sys_traits.workspace = true
|
|
thiserror.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
test_util.workspace = true
|