From 0dca0c5196249c5f947de9ced572967872c0ad6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 7 Apr 2023 00:55:53 +0200 Subject: chore: remove lockfile/ (#18618) New home at https://github.com/denoland/deno_lockfile. --- lockfile/error.rs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 lockfile/error.rs (limited to 'lockfile/error.rs') diff --git a/lockfile/error.rs b/lockfile/error.rs deleted file mode 100644 index 361303316..000000000 --- a/lockfile/error.rs +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. - -use thiserror::Error; - -#[derive(Debug, Error)] -pub enum LockfileError { - #[error(transparent)] - Io(#[from] std::io::Error), - - #[error("Unable to read lockfile: \"{0}\"")] - ReadError(String), - - #[error("Unable to parse contents of lockfile: \"{0}\"")] - ParseError(String), -} -- cgit v1.2.3