Bump subprocess and toml. Also remove the demo project I accidentally

pushed.
This commit is contained in:
Cutieguwu
2026-02-15 19:38:20 -05:00
parent 79629391c5
commit b338f76e06
23 changed files with 73 additions and 164 deletions

View File

@@ -5,16 +5,13 @@ pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug, From, Display)]
pub enum Error {
#[from]
Io(io::Error),
Io(std::io::Error),
#[from]
Java(java::Error),
MissingFileName,
#[from]
StdIo(std::io::Error),
#[from]
TomlDeserialize(toml::de::Error),