-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "pwmp-msg"
version = "2.1.12"
edition = "2021"
authors = ["Fábián Varga <23280129+br0kenpixel@users.noreply.github.com>"]
description = "Provides the types representing all messages in the PixelWeather Messaging Protocol."
rust-version = "1.93"
homepage = "https://github.com/PixelWeatherProject"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/PixelWeatherProject/pwmp-msg"
[[bench]]
name = "serialization"
harness = false
[[bench]]
name = "deserialization"
harness = false
[dependencies]
derive_more = { version = "2.1.1", default-features = false, features = [
"debug",
] }
postcard = { version = "1.1.3", default-features = false, features = [
"use-std",
] }
serde = { version = "1.0.228", features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.8.2", features = ["html_reports"] }