quicfs/Cargo.toml

30 lines
745 B
TOML

[package]
name = "quicfs"
description = "FUSE filesystem for interactive remote mounting"
version = "0.1.0"
edition = "2021"
authors = ["Jack O'Sullivan <j@ckos.ie>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.4", features = ["derive"] }
env_logger = "0.10.0"
fuser = { version = "0.13.0", optional = true }
libc = { version = "0.2.148", optional = true }
log = "0.4.20"
prost = "0.12.1"
prost-build = "0.12.1"
quinn = "0.10.2"
signal-hook = "0.3.17"
tokio = { version = "1", features = ["full"] }
[features]
default = ["client"]
client = ["dep:libc", "dep:fuser"]
[[bin]]
name = "quicfs"
path = "src/client/main.rs"
required-features = ["client"]