-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 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
[package]
name = "zffmount"
version = "2.0.0-beta.0"
edition = "2021"
rust-version = "1.67.1"
license = "MIT OR Apache-2.0"
description = "A command line utility to mount a zff container using FUSE."
homepage = "https://zff.dev"
repository = "https://github.com/zff-team/zffmount"
keywords = ["forensics", "security", "file-format", "file"]
categories = ["command-line-utilities"]
publish = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.11", features = [ "derive" ] }
fuser = "0.14.0"
libc = "0.2.102"
zff = { path="../zff", features = [ "log" ] }
nix = { version = "0.29", features = [ "user" ] }
walkdir = "2.3.2"
time = { version = "0.3.4", features = [ "formatting" ] }
signal-hook = "0.3.13"
#logging
log = "0.4.6"
env_logger = "0.11"
#serialize
serde = { version = "1.0", features = ["derive"] }
hex = "0.4.3"
toml = "0.8.8"
dialoguer = "0.11"
redb = "2"
[profile.release]
lto = true # enables link time optimization
panic = 'unwind' # unwinds the stack if panic
debug = true # I won't see any debug options in release mode.
opt-level = 2 # optimized for performance.
codegen-units = 1 # Set to 1 to allow for maximum size reduction optimizations - at the expense of the compile time.