[package]
edition = "2024"
rust-version = "1.88"
name = "rtime-net"
version = "0.14.0"
authors = ["Zeros And Ones LLC"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Network I/O with software/hardware packet timestamping, multicast, and interface helpers for the rTime NTP/PTP daemon"
homepage = "https://github.com/ZerosAndOnesLLC/rTime"
documentation = "https://docs.rs/rtime-net"
readme = "README.md"
keywords = [
"ntp",
"udp",
"timestamping",
"network",
"socket",
]
categories = [
"network-programming",
"os::unix-apis",
]
license = "MIT"
repository = "https://github.com/ZerosAndOnesLLC/rTime"
resolver = "2"
[lib]
name = "rtime_net"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.31"
features = [
"time",
"net",
"ioctl",
"fs",
"process",
]
[dependencies.rtime-core]
version = "0.14.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"time",
"sync",
"signal",
"macros",
]