ember-plus 0.1.0

A complete Rust implementation of Lawo's Ember+ control protocol
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"
name = "ember-plus"
version = "0.1.0"
authors = ["Ember+ Rust Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A complete Rust implementation of Lawo's Ember+ control protocol"
readme = "README.md"
keywords = [
    "ember",
    "lawo",
    "broadcast",
    "control",
    "protocol",
]
categories = [
    "network-programming",
    "encoding",
    "multimedia",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dewiweb/emberplus_rust"

[features]
client = []
default = [
    "client",
    "server",
]
server = []

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

[[bin]]
name = "ember-plus-cli"
path = "src/main.rs"

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.bitflags]
version = "2.4"

[dependencies.bytes]
version = "1.5"

[dependencies.dashmap]
version = "5.5"

[dependencies.futures]
version = "0.3"

[dependencies.nom]
version = "7.1"

[dependencies.num-derive]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.parking_lot]
version = "0.12"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.35"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

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

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

[dev-dependencies.tokio-test]
version = "0.4"