-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (52 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "froggr"
description = "🐸 Simple file system implementation using the 9P protocol"
version = "0.1.0"
authors = ["Dorian Davì <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/doriancodes/froggr"
documentation = "https://docs.rs/froggr"
readme = "README.md"
keywords = ["filesystem", "9p", "fuse", "bind", "namespace"]
categories = ["filesystem", "os::unix-apis", "virtualization"]
edition = "2021"
# Documentation configuration
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu"]
[[bin]]
name = "frg"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
fuser = "0.15.1"
libc = "0.2"
signal-hook = "0.3"
tokio = { version = "1", features = ["full"] }
clap = { version = "4.4", features = ["derive"] }
log = "0.4"
env_logger = "0.10"
nix = "0.26"
uuid = { version = "1.0", features = ["v4"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.133"
parking_lot = "0.12.3"
[dev-dependencies]
tempfile = "3.2"
tokio-test = "0.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = 'abort'
strip = true
debug = false
[profile.dev]
opt-level = 0
debug = true
[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = false