-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 830 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 830 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
[package]
name = "sandcrust"
version = "0.1.0"
authors = ["Benjamin Lamowski <benjamin@lamowski.net>"]
#repository = ""
#homepage = ""
#documentation =
keywords = [ "componentization", "compartmentalization", "sandbox", "sandboxing", "C"]
license = "MIT/Apache-2.0"
readme = "README.md"
description = "Automatically execute wrapped functions in a sandboxed process."
[dependencies]
bincode = { git = "https://github.com/bincode-org/bincode.git", tag = "v1.0.0-alpha7" }
lazy_static = "0.2.6"
libc = "0.2.21"
memmap = { version = "0.5.2", optional = true }
nix = { version = "0.30.1", features = [ "process" ] }
serde = "0.9.13"
serde_derive = "0.9.13"
[dependencies.sandheap]
git = "https://github.com/atopia/sandheap"
[features]
auto_respawn = []
shm = ["memmap"]
custom_vec = []
[lib]
name = "sandcrust"
path = "src/lib.rs"