Cargo.toml

 1[package]
 2name = "sandbox"
 3version = "0.1.0"
 4edition.workspace = true
 5publish.workspace = true
 6license = "GPL-3.0-or-later"
 7description = "OS-level sandboxing for terminal processes in Zed"
 8
 9[lints]
10workspace = true
11
12[lib]
13path = "src/sandbox.rs"
14doctest = false
15
16[dependencies]
17log.workspace = true
18serde.workspace = true
19serde_json.workspace = true
20settings_content.workspace = true
21
22[target.'cfg(target_os = "macos")'.dependencies]
23uuid.workspace = true
24
25[target.'cfg(unix)'.dependencies]
26libc.workspace = true
27
28[target.'cfg(target_os = "linux")'.dependencies]
29landlock = "0.4"
30uuid.workspace = true
31
32[dev-dependencies]
33settings_content.workspace = true
34tempfile.workspace = true