smb2-client 0.2.5

Minimal async SMB2 client in pure Rust: negotiate, NTLMv2 (SPNEGO) session setup, message signing (HMAC-SHA256 / AES-CMAC), tree connect, named-pipe and file I/O — no FFI.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.74"
name = "smb2-client"
version = "0.2.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal async SMB2 client in pure Rust: negotiate, NTLMv2 (SPNEGO) session setup, message signing (HMAC-SHA256 / AES-CMAC), tree connect, named-pipe and file I/O — no FFI."
documentation = "https://docs.rs/smb2-client"
readme = "README.md"
keywords = [
    "smb",
    "smb2",
    "cifs",
    "ntlm",
    "windows",
]
categories = [
    "network-programming",
    "authentication",
    "os::windows-apis",
]
license = "MIT"
repository = "https://github.com/icedracon/smb2-client"

[badges.maintenance]
status = "actively-developed"

[lib]
name = "smb2_client"
path = "src/lib.rs"

[dependencies.aes]
version = "0.8"

[dependencies.cmac]
version = "0.7"

[dependencies.hmac]
version = "0.12"

[dependencies.ntlmssp]
version = "0.1"

[dependencies.rand]
version = "0.8"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "io-util",
    "time",
    "rt",
    "sync",
]

[dependencies.tracing]
version = "0.1"