2025-01-01 04:12:39 +09:00
|
|
|
# Copyright 2018-2025 the Deno authors. MIT license.
|
2024-09-28 19:17:48 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_resolver"
|
2025-01-09 17:38:18 -05:00
|
|
|
version = "0.16.0"
|
2024-09-28 19:17:48 -04:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
|
|
|
description = "Deno resolution algorithm"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
2024-12-15 08:18:04 +00:00
|
|
|
[features]
|
2025-01-09 14:04:52 -05:00
|
|
|
sync = ["dashmap", "deno_package_json/sync", "node_resolver/sync"]
|
2024-12-15 08:18:04 +00:00
|
|
|
|
2024-09-28 19:17:48 -04:00
|
|
|
[dependencies]
|
2024-09-30 09:33:32 -04:00
|
|
|
anyhow.workspace = true
|
2025-01-09 12:10:07 -05:00
|
|
|
async-trait.workspace = true
|
2024-09-30 09:33:32 -04:00
|
|
|
base32.workspace = true
|
2024-11-15 23:22:50 -05:00
|
|
|
boxed_error.workspace = true
|
2024-12-15 08:18:04 +00:00
|
|
|
dashmap = { workspace = true, optional = true }
|
2025-01-09 12:10:07 -05:00
|
|
|
deno_cache_dir.workspace = true
|
2024-11-14 15:24:25 -05:00
|
|
|
deno_config.workspace = true
|
2025-01-08 14:52:32 -08:00
|
|
|
deno_error.workspace = true
|
2024-09-28 19:17:48 -04:00
|
|
|
deno_media_type.workspace = true
|
2025-01-09 12:10:07 -05:00
|
|
|
deno_npm.workspace = true
|
2025-01-09 14:04:52 -05:00
|
|
|
deno_package_json.workspace = true
|
2024-09-28 19:17:48 -04:00
|
|
|
deno_path_util.workspace = true
|
2024-09-30 09:33:32 -04:00
|
|
|
deno_semver.workspace = true
|
2025-01-10 14:48:43 -05:00
|
|
|
log.workspace = true
|
2025-01-09 14:04:52 -05:00
|
|
|
node_resolver.workspace = true
|
2025-01-09 12:10:07 -05:00
|
|
|
parking_lot.workspace = true
|
2024-12-30 12:38:20 -05:00
|
|
|
sys_traits.workspace = true
|
2024-10-02 21:17:39 +01:00
|
|
|
thiserror.workspace = true
|
2024-09-28 19:17:48 -04:00
|
|
|
url.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test_util.workspace = true
|