-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (29 loc) · 939 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "forkfs"
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."
repository = "https://github.com/SUPERCILEX/forkfs"
keywords = ["tools", "isolate", "files"]
categories = ["command-line-utilities", "development-tools", "development-tools::debugging", "filesystem"]
license = "Apache-2.0"
[dependencies]
clap = { version = "4.5.23", features = ["derive", "wrap_help"] }
dirs = "5.0.1"
error-stack = { version = "0.5.0", default-features = false, features = ["std"] }
fuc_engine = "2.2.0"
rustix = { version = "0.38.42", features = ["fs", "process", "thread", "linux_latest"] }
thiserror = "2.0.9"
[dev-dependencies]
supercilex-tests = "0.4.12"
trycmd = "0.15.8"
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.dr]
inherits = "release"
debug = true
strip = false