2024-09-28 19:17:48 -04:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_resolver"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
|
|
|
description = "Deno resolution algorithm"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-30 09:33:32 -04:00
|
|
|
anyhow.workspace = true
|
|
|
|
base32.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-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-09-28 19:17:48 -04:00
|
|
|
url.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test_util.workspace = true
|