[package]
edition = "2024"
name = "sambrs"
version = "0.2.0"
authors = ["Samuel Van der Stappen <shogun_einst.0i@icloud.com>"]
build = false
include = [
"/src",
"/tests",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe, opinionated Windows SMB client operations: connect, disconnect, persist, query, and enumerate existing network shares."
readme = "README.md"
keywords = [
"windows",
"smb",
"share",
"network",
]
categories = [
"os::windows-apis",
"filesystem",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/samvdst/sambrs"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[lib]
name = "sambrs"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
test = false
[target."cfg(windows)".dependencies.tracing]
version = "0.1"
default-features = false
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = ["Win32_NetworkManagement_WNet"]
[target."cfg(windows)".dependencies.zeroize]
version = "1"