protoflow 0.4.3

Protoflow implements flow-based programming (FBP) for Rust using Protocol Buffers messages.
Documentation
// This is free and unencumbered software released into the public domain.

/// The set of features that are enabled in this build of the crate.
pub static FEATURES: &[&str] = &[
    #[cfg(feature = "beta")]
    "beta",
    #[cfg(feature = "blocks")]
    "blocks",
    #[cfg(feature = "crossbeam")]
    "crossbeam",
    #[cfg(feature = "derive")]
    "derive",
    #[cfg(feature = "flume")]
    "flume",
    #[cfg(feature = "rand")]
    "rand",
    #[cfg(feature = "serde")]
    "serde",
    #[cfg(feature = "syntax")]
    "syntax",
    #[cfg(feature = "sysml")]
    "sysml",
    #[cfg(feature = "tracing")]
    "tracing",
    #[cfg(feature = "web")]
    "web",
    #[cfg(feature = "zeromq")]
    "zeromq",
];