rusnmp 0.1.0

A lightweight, async SNMP v1/v2c/v3 client library for Rust with minimal dependencies.
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 = "2024"
name = "rusnmp"
version = "0.1.0"
authors = ["Eric Chen <610521240@gms.ndhu.edu.tw>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, async SNMP v1/v2c/v3 client library for Rust with minimal dependencies."
documentation = "https://docs.rs/rusnmp"
readme = "README.md"
keywords = [
    "snmp",
    "network-monitoring",
    "async",
    "udp",
    "datacenter",
]
categories = [
    "network-programming",
    "hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dalof41014/rusnmp"

[features]
default = ["v3"]
v3 = [
    "hmac",
    "sha1",
    "sha2",
    "md-5",
    "aes",
    "cbc",
    "cfb-mode",
    "des",
    "block-padding",
]

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

[[test]]
name = "basic"
path = "tests/basic.rs"

[dependencies.aes]
version = "0.8"
optional = true

[dependencies.block-padding]
version = "0.3"
optional = true

[dependencies.cbc]
version = "0.1"
features = ["alloc"]
optional = true

[dependencies.cfb-mode]
version = "0.8"
optional = true

[dependencies.des]
version = "0.8"
optional = true

[dependencies.hmac]
version = "0.12"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.md-5]
version = "0.10"
optional = true

[dependencies.rand]
version = "0.8"

[dependencies.sha1]
version = "0.10"
optional = true

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "time",
    "macros",
    "rt-multi-thread",
]

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.tokio]
version = "1"
features = ["full"]