audio-graph-bsd 0.3.1

Real-time-safe directed node-graph audio processing engine for Rust (topological scheduling, alloc-free process_cycle, rtrb bridge) — FreeBSD-oriented
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"
rust-version = "1.85"
name = "audio-graph-bsd"
version = "0.3.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Real-time-safe directed node-graph audio processing engine for Rust (topological scheduling, alloc-free process_cycle, rtrb bridge) — FreeBSD-oriented"
readme = "README.md"
keywords = [
    "audio",
    "freebsd",
    "real-time",
    "graph",
    "dsp",
]
categories = ["multimedia::audio"]
license = "BSD-2-Clause"
repository = "https://github.com/IT-Whistle/audio-graph-bsd"

[package.metadata.docs.rs]
all-features = true
targets = [
    "x86_64-unknown-freebsd",
    "x86_64-unknown-linux-gnu",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
distributed = [
    "topology",
    "dep:arc-swap",
]
topology = ["dep:serde"]

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

[[example]]
name = "simple_route"
path = "examples/simple_route.rs"

[[test]]
name = "distributed_partition"
path = "tests/distributed_partition.rs"

[[test]]
name = "distributed_rt"
path = "tests/distributed_rt.rs"

[[test]]
name = "graph_flow"
path = "tests/graph_flow.rs"

[[test]]
name = "graph_property"
path = "tests/graph_property.rs"

[[test]]
name = "hot_reload"
path = "tests/hot_reload.rs"

[[test]]
name = "ring_concurrency"
path = "tests/ring_concurrency.rs"

[[test]]
name = "rt_alloc_free"
path = "tests/rt_alloc_free.rs"

[[test]]
name = "topology_serde"
path = "tests/topology_serde.rs"

[[bench]]
name = "process_cycle_latency"
path = "benches/process_cycle_latency.rs"
harness = false

[dependencies.arc-swap]
version = "1.7"
optional = true

[dependencies.audio-core-bsd]
version = "0.1.0"

[dependencies.rtrb]
version = "0.3"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.bincode]
version = "1"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.proptest]
version = "1.11.0"