Compare commits

..

No commits in common. "1de69907272448929f8a42e7794a6949c7aff015" and "1f4666fee55aa79a12d78c2016887355f07786fd" have entirely different histories.

5 changed files with 2 additions and 5 deletions

View file

@ -63,7 +63,7 @@ steps:
when:
- event: tag
# INFO: https://woodpecker-ci.org/plugins/Gitea%20Release
image: docker.io/woodpeckerci/plugin-gitea-release:latest
image: docker.io/woodpeckerci/plugin-gitea-release:0.3
settings:
base_url: https://git.kemitix.net
api_key:

View file

@ -1,6 +1,6 @@
[package]
name = "kxio"
version = "1.1.2"
version = "1.1.1"
edition = "2021"
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
description = "Provides injectable Filesystem and Network resources to make code more testable"

View file

@ -48,7 +48,6 @@ pub fn temp() -> Result<FileSystem> {
temp::new().map(FileSystem::Temp)
}
#[derive(Clone, Debug)]
pub enum FileSystem {
Real(real::RealFileSystem),
Temp(temp::TempFileSystem),

View file

@ -4,7 +4,6 @@ pub const fn new(base: PathBuf) -> RealFileSystem {
RealFileSystem { base }
}
#[derive(Clone, Debug)]
pub struct RealFileSystem {
base: PathBuf,
}

View file

@ -14,7 +14,6 @@ pub(super) fn new() -> super::Result<TempFileSystem> {
})
}
#[derive(Clone, Debug)]
pub struct TempFileSystem {
real: super::real::RealFileSystem,
_temp_dir: Arc<Mutex<TempDir>>,