quicfs/Cargo.toml

33 lines
760 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]
2024-07-27 11:22:21 +01:00
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
fuser = { version = "0.14", optional = true }
libc = { version = "0.2", optional = true }
log = "0.4"
prost = "0.13"
quinn = "0.11"
rcgen = "0.13"
signal-hook = "0.3"
2023-09-28 23:41:44 +01:00
tokio = { version = "1", features = ["full"] }
2024-07-27 11:22:21 +01:00
[build-dependencies]
prost-build = "0.13"
2023-09-28 23:41:44 +01:00
[features]
default = ["client"]
client = ["dep:libc", "dep:fuser"]
[[bin]]
name = "quicfs"
path = "src/client/main.rs"
required-features = ["client"]