quicfs/Cargo.toml

30 lines
745 B
TOML
Raw Normal View History

2023-09-21 12:17:01 +01:00
[package]
name = "quicfs"
2023-09-28 23:41:44 +01:00
description = "FUSE filesystem for interactive remote mounting"
2023-09-21 12:17:01 +01:00
version = "0.1.0"
edition = "2021"
2023-09-28 23:41:44 +01:00
authors = ["Jack O'Sullivan <j@ckos.ie>"]
2023-09-21 12:17:01 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-09-24 10:41:54 +01:00
clap = { version = "4.4.4", features = ["derive"] }
2024-01-26 12:07:51 +00:00
env_logger = "0.11.0"
fuser = { version = "0.14.0", optional = true }
2023-09-28 23:41:44 +01:00
libc = { version = "0.2.148", optional = true }
log = "0.4.20"
prost = "0.12.1"
prost-build = "0.12.1"
2023-09-24 10:41:54 +01:00
quinn = "0.10.2"
2023-09-28 23:41:44 +01:00
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"]