-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
42 lines (37 loc) · 906 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
34
35
36
37
38
39
40
41
42
[package]
authors = ["Julio Merino <jmmv@google.com>"]
categories = ["filesystems"]
description = "A virtual file system for sandboxing"
homepage = "https://github.com/bazelbuild/sandboxfs"
keywords = ["bazel", "filesystem", "fuse", "sandboxing"]
license = "Apache-2.0"
name = "sandboxfs"
readme = "README.md"
repository = "https://github.com/bazelbuild/sandboxfs"
version = "0.2.0"
[badges]
travis-ci = { repository = "bazelbuild/sandboxfs", branch = "master" }
[features]
default = []
profiling = ["cpuprofiler"]
[dependencies]
cpuprofiler = { version = "0.0", optional = true }
env_logger = "0.5"
failure = "~0.1.2"
fuse = "0.3"
getopts = "0.2"
log = "0.4"
nix = "0.12"
num_cpus = "1.11"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
signal-hook = "0.1"
threadpool = "1.0"
time = "0.1"
xattr = "0.2.2"
[build-dependencies]
pkg-config = "0.3"
[dev-dependencies]
tempfile = "3"
users = "0.9"