fcnetd-client 0.2.4

A daemon-based Firecracker microVM networking backend based on fcnet-types.
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"
name = "fcnetd-client"
version = "0.2.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A daemon-based Firecracker microVM networking backend based on fcnet-types."
readme = "README.md"
keywords = [
    "firecracker",
    "microvm",
    "networking",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/rust-firecracker/fcnet"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
connection-pool = []
deadpool = [
    "connection-pool",
    "dep:deadpool",
]
default = []
full = [
    "deadpool",
    "tokio-socket",
    "smol-socket",
]
smol-socket = [
    "dep:async-net",
    "dep:futures-lite",
]
tokio-socket = [
    "dep:tokio",
    "dep:tokio-util",
]

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

[dependencies.async-net]
version = "2.0.0"
optional = true

[dependencies.deadpool]
version = "0.13.0"
features = ["managed"]
optional = true
default-features = false

[dependencies.fcnet-types]
version = "0.1.1"
features = ["full"]

[dependencies.futures-lite]
version = "2.6.1"
optional = true

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

[dependencies.serde_json]
version = "1.0.149"

[dependencies.tokio]
version = "1.52.3"
features = [
    "net",
    "io-util",
]
optional = true

[dependencies.tokio-util]
version = "0.7.18"
features = ["compat"]
optional = true
default-features = false

[dev-dependencies]