sig-net 0.7.0

Sig-Net secure CoAP-based DMX512 lighting control protocol library
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 = "sig-net"
version = "0.7.0"
authors = ["Wayne Howell <wayne@singularity.uk>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sig-Net secure CoAP-based DMX512 lighting control protocol library"
readme = "README.md"
keywords = [
    "dmx512",
    "coap",
    "lighting",
    "signet",
    "protocol",
]
categories = [
    "network-programming",
    "encoding",
    "cryptography",
]
license = "MIT"
repository = "https://github.com/Pixout-Lighting/sig-net"

[features]
crypto = [
    "dep:hmac",
    "dep:sha2",
    "dep:hkdf",
    "dep:pbkdf2",
    "dep:getrandom",
    "dep:subtle",
]
default = [
    "crypto",
    "net",
]
net = [
    "dep:socket2",
    "crypto",
]

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

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

[dependencies.getrandom]
version = "0.2"
optional = true

[dependencies.hkdf]
version = "0.12"
optional = true

[dependencies.hmac]
version = "0.12"
optional = true

[dependencies.pbkdf2]
version = "0.12"
features = ["hmac"]
optional = true
default-features = false

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.socket2]
version = "0.5"
optional = true

[dependencies.subtle]
version = "2.6"
optional = true