diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-09-28 13:04:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 13:04:16 -0400 |
commit | d677ba67f50e5edb0491d8ed1e4171473d662081 (patch) | |
tree | 9f8740666298ac8e1041fa3e169d8f3a9e074448 /cli/npm/registry.rs | |
parent | 23125b275f282f96a6316d11f97e5603dab0d009 (diff) |
feat(npm): functionality to support child_process.fork (#15891)
Diffstat (limited to 'cli/npm/registry.rs')
-rw-r--r-- | cli/npm/registry.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/npm/registry.rs b/cli/npm/registry.rs index a0ffd0544..ccbe18c7f 100644 --- a/cli/npm/registry.rs +++ b/cli/npm/registry.rs @@ -92,7 +92,7 @@ impl NpmPackageVersionInfo { } } -#[derive(Debug, Default, Deserialize, Serialize, Clone)] +#[derive(Debug, Default, Clone, Serialize, Deserialize)] pub struct NpmPackageVersionDistInfo { /// URL to the tarball. pub tarball: String, |