summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 4ae944a11085b1df3be7f3680188338722d7e8a0 (plain)
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 = "blown-fuse"
version = "0.2.0"
authors = ["Alejandro Soto <alejandro@34project.org>"]
edition = "2021"
description = "Filesystem in Userspace"
license = "LGPL-3.0-or-later"

[features]
default = ["server", "mount"]
server = []
mount = ["server"]
client = []

[dependencies]
bitflags = "1.3.2"
bytemuck = "1.7.3"
bytemuck_derive = "1.0.1"
bytes = "1.1.0"
log = "0.4.14"
nix = "0.23.1"
num_enum = "0.5.5"
quick-error = "2.0.1"
smallvec = "1.7.0"
tokio = { version = "1.15.0", features = ["rt", "net", "macros", "sync"] }

[dev-dependencies]
clap = "2.34.0"
env_logger = "0.9.0"
futures-util = "0.3.19"
tokio = { version = "1.15.0", features = ["rt-multi-thread"] }
uuid = "0.8.2"