Skip to content

Commit

Permalink
v0.2.8
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <[email protected]>
  • Loading branch information
SUPERCILEX committed Dec 8, 2023
1 parent fd7e2f6 commit 63b0dee
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 44 deletions.
67 changes: 29 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forkfs"
version = "0.2.7"
version = "0.2.8"
authors = ["Alex Saveau <[email protected]>"]
edition = "2021"
description = "ForkFS allows you to sandbox a process's changes to your file system."
Expand All @@ -10,15 +10,15 @@ categories = ["command-line-utilities", "development-tools", "development-tools:
license = "Apache-2.0"

[dependencies]
clap = { version = "4.4.10", features = ["derive", "wrap_help"] }
clap = { version = "4.4.11", features = ["derive", "wrap_help"] }
dirs = "5.0.1"
error-stack = "0.4.1"
fuc_engine = "1.1.9"
rustix = { version = "0.38.26", features = ["fs", "process", "thread", "linux_latest"] }
rustix = { version = "0.38.27", features = ["fs", "process", "thread", "linux_latest"] }
thiserror = "1.0.50"

[dev-dependencies]
supercilex-tests = "0.4.1"
supercilex-tests = "0.4.3"
trycmd = "0.14.19"

[profile.release]
Expand Down
4 changes: 2 additions & 2 deletions api.golden
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ pub forkfs::Error::NotRoot
pub forkfs::Error::SessionNotFound
pub forkfs::Error::SetupRequired
impl core::error::Error for forkfs::Error
impl core::fmt::Display for forkfs::Error
pub fn forkfs::Error::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Debug for forkfs::Error
pub fn forkfs::Error::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for forkfs::Error
pub fn forkfs::Error::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Send for forkfs::Error
impl core::marker::Sync for forkfs::Error
impl core::marker::Unpin for forkfs::Error
Expand Down

0 comments on commit 63b0dee

Please sign in to comment.