-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
40 lines (34 loc) · 1.1 KB
/
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
34
35
36
37
38
39
40
[package]
name = "extrasafe"
version = "0.5.1"
edition = "2021"
authors = ["Harry Stern <[email protected]>",]
description = "Make your code extrasafe by reducing what it can access."
repository = "https://github.com/boustrophedon/extrasafe"
license = "MIT"
keywords = ["security", "seccomp", "landlock", "syscall"]
categories = ["os::linux-apis"]
[package.metadata.docs.rs]
all-features = true
[features]
landlock = ["dep:landlock"]
isolate = []
[dependencies]
seccompiler = { version = "^0.4", default-features = false }
libc = "^0.2"
syscalls = { version = "^0.6", default-features = false }
landlock = { version ="^0.3", optional = true }
[dev-dependencies]
bytes = "^1"
crossbeam = "^0.8"
crossbeam-queue = "^0.3"
crossbeam-channel = "^0.5"
tempfile = "^3"
tokio = "^1.15"
hyper = { version = "^0.14", features = ["http1", "server", "runtime", "tcp"] }
warp = "^0.3"
rusqlite = "^0.26"
[target.'cfg(target_env = "musl")'.dev-dependencies]
reqwest = { version = "^0.11", default-features = false, features = ["rustls-tls"] }
[target.'cfg(not(target_env = "musl"))'.dev-dependencies]
reqwest = { version = "^0.11" }