[package]
edition = "2021"
rust-version = "1.85"
name = "audio-clock-bsd"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PTP/NTP clock synchronization and sample-index to timestamp conversion for real-time audio"
readme = "README.md"
keywords = [
"audio",
"clock",
"ptp",
"ntp",
"ieee1588",
]
categories = [
"multimedia::audio",
"date-and-time",
]
license = "BSD-2-Clause"
repository = "https://github.com/IT-Whistle/audio-clock-bsd"
[package.metadata.docs.rs]
all-features = true
targets = [
"x86_64-unknown-freebsd",
"x86_64-unknown-linux-gnu",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "audio_clock_bsd"
path = "src/lib.rs"
[[example]]
name = "ntp_clock"
path = "examples/ntp_clock.rs"
[[test]]
name = "clock_conversion"
path = "tests/clock_conversion.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[dependencies.audio-core-bsd]
version = "0.1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.proptest]
version = "1.11.0"