Cargo Features

[dependencies]
agnostic-mdns = { version = "0.4.2", default-features = false, features = ["std", "worksteal", "tokio", "async-std", "smol"] }
default = std

The std feature is set by default whenever agnostic-mdns is added without default-features = false somewhere in the dependency tree.

std default async-std? smol? tokio?

Enables auto_enums and scopeguard

worksteal async-std? smol? tokio? = parking_lot

Affects agnostic-mdns::worksteal

tokio = std, worksteal

Enables tokio of agnostic-net

Affects agnostic-mdns::tokio

async-std = std, worksteal

Enables async-std of agnostic-net

Affects agnostic-mdns::async_std

smol = std, worksteal

Enables smol of agnostic-net

Affects agnostic-mdns::smol

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

parking_lot worksteal?