remove snafu for now

This commit is contained in:
llama 2025-10-20 09:57:37 +08:00
parent 1325147854
commit 0d1204521b
No known key found for this signature in database
GPG key ID: 0B7543854B9413C3
4 changed files with 0 additions and 14 deletions

1
Cargo.lock generated
View file

@ -4705,7 +4705,6 @@ dependencies = [
"prost-reflect", "prost-reflect",
"serde", "serde",
"serde_json", "serde_json",
"snafu",
"strum 0.27.2", "strum 0.27.2",
"syn 2.0.106", "syn 2.0.106",
"tauri", "tauri",

View file

@ -32,7 +32,6 @@ portable-pty.workspace = true
prost.workspace = true prost.workspace = true
serde.workspace = true serde.workspace = true
serde_json.workspace = true serde_json.workspace = true
snafu.workspace = true
strum.workspace = true strum.workspace = true
tauri.workspace = true tauri.workspace = true
tauri-plugin-dialog.workspace = true tauri-plugin-dialog.workspace = true

View file

@ -1,11 +0,0 @@
// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
use snafu::Snafu;
// TODO: these aren't used yet
#[derive(Debug, PartialEq, Snafu)]
pub enum Error {
OsUnsupported,
InvalidInput,
}

View file

@ -6,7 +6,6 @@
mod app; mod app;
mod commands; mod commands;
mod error;
mod generated; mod generated;
mod lang; mod lang;
mod platform; mod platform;