2026-03-10 15:33:06 +00:00
|
|
|
[package]
|
|
|
|
|
name = "furumi-mount-linux"
|
2026-03-17 16:05:14 +00:00
|
|
|
version = "0.3.4"
|
2026-03-10 15:33:06 +00:00
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
furumi-common = { path = "../furumi-common" }
|
|
|
|
|
furumi-client-core = { path = "../furumi-client-core" }
|
|
|
|
|
anyhow = "1.0.102"
|
|
|
|
|
fuser = "0.15.0"
|
|
|
|
|
libc = "0.2.183"
|
|
|
|
|
clap = { version = "4.5.60", features = ["derive", "env"] }
|
|
|
|
|
tracing = "0.1.44"
|
|
|
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|
|
|
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
|
|
|
tokio-stream = "0.1.18"
|
2026-03-10 15:52:16 +00:00
|
|
|
ctrlc = "3.5.2"
|
2026-03-13 15:52:17 +00:00
|
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
|
maintainer = "Furumi"
|
|
|
|
|
copyright = "Furumi contributors"
|
|
|
|
|
extended-description = "Furumi-ng: mount remote filesystem via encrypted gRPC + FUSE"
|
|
|
|
|
depends = "fuse3"
|
|
|
|
|
section = "utils"
|
|
|
|
|
priority = "optional"
|
2026-03-13 16:31:58 +00:00
|
|
|
maintainer-scripts = "debian/"
|
2026-03-13 15:52:17 +00:00
|
|
|
assets = [
|
|
|
|
|
{ source = "target/release/furumi-mount-linux", dest = "usr/bin/furumi-mount-linux", mode = "755" },
|
2026-03-13 16:31:58 +00:00
|
|
|
{ source = "debian/furumi-mount.service", dest = "usr/lib/systemd/user/furumi-mount.service", mode = "644" },
|
2026-03-13 15:52:17 +00:00
|
|
|
]
|