diff options
Diffstat (limited to 'resolvers/node/Cargo.toml')
-rw-r--r-- | resolvers/node/Cargo.toml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/resolvers/node/Cargo.toml b/resolvers/node/Cargo.toml new file mode 100644 index 000000000..104204569 --- /dev/null +++ b/resolvers/node/Cargo.toml @@ -0,0 +1,32 @@ +# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + +[package] +name = "node_resolver" +version = "0.7.0" +authors.workspace = true +edition.workspace = true +license.workspace = true +readme = "README.md" +repository.workspace = true +description = "Node.js module resolution algorithm used in Deno" + +[lib] +path = "lib.rs" + +[features] +sync = ["deno_package_json/sync"] + +[dependencies] +anyhow.workspace = true +async-trait.workspace = true +deno_media_type.workspace = true +deno_package_json.workspace = true +futures.workspace = true +lazy-regex.workspace = true +once_cell.workspace = true +path-clean = "=0.1.0" +regex.workspace = true +serde_json.workspace = true +thiserror.workspace = true +tokio.workspace = true +url.workspace = true |