-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
45 lines (37 loc) · 910 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "sx"
version = "1.0.3"
edition = "2021"
authors = ["Pierre Tomasina"]
description = "Lightweight sandbox for macOS development"
license = "MIT"
repository = "https://github.com/agentic-dev3o/sandbox-shell"
keywords = ["sandbox", "security", "macos", "seatbelt"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
# CLI
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
# Configuration
serde = { version = "1", features = ["derive"] }
toml = "1.1"
# Paths and directories
dirs = "6"
shellexpand = "3"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utilities
thiserror = "2"
anyhow = "1"
tempfile = "3"
# Signal handling and syscalls
signal-hook = "0.4"
libc = "0.2"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[profile.release]
lto = true
strip = true
codegen-units = 1