Comparing version 0.3.2 to 0.3.3
@@ -68,3 +68,3 @@ "use strict"; | ||
_a = options.crate, crate = _a === void 0 ? 'native' : _a; | ||
return [4 /*yield*/, child_process_1.execFile("cargo", ["metadata", "--format-version=1"], { | ||
return [4 /*yield*/, child_process_1.execFile("cargo", ["metadata", "--format-version=1", "--no-deps"], { | ||
cwd: path.join(root, crate) | ||
@@ -71,0 +71,0 @@ })]; |
{ | ||
"name": "neon-cli", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"description": "Build and load native Rust/Neon modules.", | ||
@@ -5,0 +5,0 @@ "author": "Dave Herman <david.herman@gmail.com>", |
@@ -29,3 +29,3 @@ import * as path from 'path'; | ||
let { crate = 'native' } = options; | ||
const { stdout } = await execFile("cargo", ["metadata", "--format-version=1"], { | ||
const { stdout } = await execFile("cargo", ["metadata", "--format-version=1", "--no-deps"], { | ||
cwd: path.join(root, crate) | ||
@@ -32,0 +32,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
124747