[package]
edition = "2021"
name = "clasp-core"
version = "3.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and encoding for CLASP protocol"
homepage = "https://clasp.to"
readme = "README.md"
keywords = [
"osc",
"midi",
"dmx",
"artnet",
"protocol",
]
categories = [
"multimedia",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lumencanvas/clasp"
[features]
alloc = []
default = ["std"]
std = []
[lib]
name = "clasp_core"
path = "src/lib.rs"
[[test]]
name = "address_tests"
path = "tests/address_tests.rs"
[[test]]
name = "codec_tests"
path = "tests/codec_tests.rs"
[[test]]
name = "embedded_compat_tests"
path = "tests/embedded_compat_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "frame_tests"
path = "tests/frame_tests.rs"
[[test]]
name = "protocol_tests"
path = "tests/protocol_tests.rs"
[[test]]
name = "state_tests"
path = "tests/state_tests.rs"
[[test]]
name = "time_tests"
path = "tests/time_tests.rs"
[[bench]]
name = "codec"
path = "benches/codec.rs"
harness = false
[dependencies.bytes]
version = "1.5"
[dependencies.glob-match]
version = "0.2"
[dependencies.regex-lite]
version = "0.1"
[dependencies.rmp-serde]
version = "1.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.uuid]
version = "1.6"
features = ["v4"]
[dev-dependencies.clasp-client]
version = "3.0"
[dev-dependencies.clasp-embedded]
version = "3.0"
features = ["alloc"]
[dev-dependencies.clasp-router]
version = "3.0"
[dev-dependencies.clasp-test-utils]
version = "3.0"
[dev-dependencies.clasp-transport]
version = "3.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.midir]
version = "0.9"
[dev-dependencies.rosc]
version = "0.10"
[dev-dependencies.tokio]
version = "1.35"
features = [
"full",
"macros",
"rt-multi-thread",
]