first commit
This commit is contained in:
43
crates/hue/Cargo.toml
Normal file
43
crates/hue/Cargo.toml
Normal file
@@ -0,0 +1,43 @@
|
||||
[package]
|
||||
name = "hue"
|
||||
version = "0.1.0"
|
||||
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
rust-version.workspace = true
|
||||
description.workspace = true
|
||||
readme.workspace = true
|
||||
repository.workspace = true
|
||||
license.workspace = true
|
||||
categories.workspace = true
|
||||
keywords.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
bitflags = "2.8.0"
|
||||
byteorder = "1.5.0"
|
||||
chrono = { version = "0.4.39", default-features = false, features = ["clock", "std"] }
|
||||
hex = "0.4.3"
|
||||
iana-time-zone = "0.1.61"
|
||||
packed_struct = "0.10.1"
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
siphasher = "1.0.1"
|
||||
thiserror = "2.0.11"
|
||||
uuid = { version = "1.13.1", features = ["serde", "v5"] }
|
||||
|
||||
mac_address = { version = "1.1.8", features = ["serde"], optional = true }
|
||||
maplit = "1.0.2"
|
||||
|
||||
[features]
|
||||
default = ["event", "mac", "rng"]
|
||||
|
||||
rng = ["uuid/v4"]
|
||||
event = []
|
||||
mac = ["dep:mac_address"]
|
||||
|
||||
[dev-dependencies]
|
||||
hex = "0.4.3"
|
||||
uuid = { version = "1.13.1", features = ["v4"] }
|
||||
Reference in New Issue
Block a user