network 1.0.0

Network Basic Library: Network Basic Operations, WiFi Definition, Linux WPA Implementation
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 = "network"
version = "1.0.0"
authors = ["yaobos@outlook.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Network Basic Library: Network Basic Operations, WiFi Definition, Linux WPA Implementation"
readme = "README.md"
license = "MIT"
repository = "https://github.com/yaobo-lab/network"

[features]
default = []
wifi = ["async-trait"]
wpa = [
    "libc",
    "config",
    "tempfile",
]

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

[dependencies.anyhow]
version = "1.0.100"

[dependencies.async-trait]
version = "0.1.89"
optional = true

[dependencies.config]
version = "0.15.17"
features = ["ini"]
optional = true
default-features = false

[dependencies.futures]
version = "0.3.28"
features = ["std"]
default-features = false

[dependencies.if-watch]
version = "3.2.1"
features = ["tokio"]

[dependencies.libc]
version = "0.2.175"
optional = true

[dependencies.log]
version = "0.4.28"

[dependencies.netdev]
version = "0.39.0"
features = ["serde"]

[dependencies.regex]
version = "1.11.3"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.145"

[dependencies.tempfile]
version = "3.23.0"
optional = true

[dependencies.tokio]
version = "1.47.1"
features = [
    "macros",
    "rt",
    "net",
    "io-util",
    "process",
    "time",
    "sync",
]
default-features = false

[dev-dependencies.encoding_rs]
version = "0.8.35"

[dev-dependencies.fast_log]
version = "1.7.7"

[dev-dependencies.regex]
version = "1.11.1"

[dev-dependencies.tabled]
version = "0.20.0"

[dev-dependencies.tokio]
version = "1"
features = [
    "net",
    "rt-multi-thread",
    "io-std",
    "io-util",
]