2024-09-28 19:17:48 -04:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_resolver"
|
2024-11-10 02:42:18 -05:00
|
|
|
version = "0.9.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"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-30 09:33:32 -04:00
|
|
|
anyhow.workspace = true
|
|
|
|
base32.workspace = true
|
2024-11-14 15:24:25 -05:00
|
|
|
dashmap.workspace = true
|
|
|
|
deno_config.workspace = true
|
2024-09-28 19:17:48 -04:00
|
|
|
deno_media_type.workspace = true
|
2024-09-30 09:33:32 -04:00
|
|
|
deno_package_json.workspace = true
|
2024-10-02 08:44:04 -04:00
|
|
|
deno_package_json.features = ["sync"]
|
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
|
|
|
|
node_resolver.workspace = true
|
2024-10-02 16:17:39 -04:00
|
|
|
thiserror.workspace = true
|
2024-09-28 19:17:48 -04:00
|
|
|
url.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test_util.workspace = true
|