-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 741 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
32
33
34
35
36
37
38
[package]
name = "dbus-message-parser"
version = "4.3.1"
edition = "2018"
description = "Libary to encode and decode DBus message"
readme = "README.md"
authors = ["LinkTed <link.ted@mailbox.org>"]
license = "BSD-3-Clause"
keywords = ["dbus", "parser"]
include = [
"src/**/*.rs",
"tests/*.rs",
"examples/*.rs",
"benches/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
"NOTICE"
]
repository = "https://github.com/LinkTed/dbus-message-parser"
categories = [
"parser-implementations",
"encoding"
]
[dependencies]
bytes = "~1.1.0"
lazy_static = "~1.4.0"
bitflags = "~1.3.1"
thiserror = "~1.0.26"
cfg-if = "~1.0.0"
[dev-dependencies]
criterion = "~0.3.5"
[[bench]]
name = "message"
harness = false