asimov-server 25.1.0

ASIMOV Software Development Kit (SDK) for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This is free and unencumbered software released into the public domain.

pub use tokio::{net::ToSocketAddrs, task::JoinHandle};
pub use tokio_util::sync::CancellationToken;

#[cfg(feature = "http")]
pub mod http;

#[cfg(feature = "persistence")]
pub mod persistence;

#[cfg(feature = "mdns")]
pub mod mdns;

#[cfg(feature = "ssdp")]
pub mod ssdp;