-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 loc) · 860 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
[package]
name = "fuse-http"
version = "0.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/jsen-/fuse-http"
[profile.release-min-size]
inherits = "release"
strip = true
lto = "fat"
panic = "abort"
incremental = false
codegen-units = 1
opt-level = "z"
[dependencies]
byte-unit = { version = "4.0.14", default-features = false }
clap = { version = "4.3.1", features = ["derive"] }
daemonize = "0.5.0"
env_logger = { version = "0.10.0", default-features = false, features = ["humantime"] }
fuser = { version = "0.12.0", default-features = false, features = ["abi-7-31"] }
libc = { version = "0.2.125", default-features = false }
log = { version = "0.4.17", default-features = false }
reqwest = { version = "0.11.18", default-features = false, features = ["blocking", "rustls-tls"] }
thiserror = "1.0.31"