Remove useless serde_json error

This commit is contained in:
oupson 2022-10-07 13:20:05 +02:00
parent 90f6a6db49
commit fce791717c
Signed by: oupson
GPG Key ID: 3BD88615552EFCB7
3 changed files with 0 additions and 5 deletions

1
Cargo.lock generated
View File

@ -570,7 +570,6 @@ dependencies = [
"libc", "libc",
"log", "log",
"rustcryptfs-lib", "rustcryptfs-lib",
"serde_json",
"thiserror", "thiserror",
] ]

View File

@ -10,5 +10,4 @@ fuser = "0.11"
log = "0.4" log = "0.4"
rustcryptfs-lib = { path = "../rustcryptfs-lib" } rustcryptfs-lib = { path = "../rustcryptfs-lib" }
thiserror = "1.0" thiserror = "1.0"
serde_json = "1.0"
libc = "0.2" libc = "0.2"

View File

@ -7,9 +7,6 @@ pub enum Error {
#[error(transparent)] #[error(transparent)]
IoError(#[from] std::io::Error), IoError(#[from] std::io::Error),
#[error(transparent)]
JsonError(#[from] serde_json::Error),
#[error(transparent)] #[error(transparent)]
RustCryptFsError(#[from] rustcryptfs_lib::error::Error), RustCryptFsError(#[from] rustcryptfs_lib::error::Error),