[package]
edition = "2024"
name = "mounter"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mount remote SSH directories via SMB2-over-SFTP. No FUSE, no Docker, no sudo."
homepage = "https://github.com/nitingupta910/mounter"
readme = "README.md"
keywords = [
"ssh",
"sftp",
"smb",
"mount",
"sshfs",
]
categories = [
"filesystem",
"network-programming",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/nitingupta910/mounter"
[lib]
name = "mounter"
path = "src/lib.rs"
[[bin]]
name = "mounter"
path = "src/main.rs"
[[bench]]
name = "hot_paths"
path = "benches/hot_paths.rs"
harness = false
[dependencies.env_logger]
version = "0.11"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[profile.release]
opt-level = 2
lto = true
strip = true