-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 883 Bytes
/
Cargo.toml
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
39
[package]
name = "packtool"
version = "0.3.0"
authors = ["Nicolas Di Prima <[email protected]>"]
edition = "2018"
description = "In memory packing made easy"
homepage = "https://github.com/primetype/packtool"
repository = "https://github.com/primetype/packtool/"
license = "MIT OR Apache-2.0"
keywords = [
"packtool",
"packing",
"memory",
"view",
"format"
]
categories = [ "encoding", "parsing" ]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
hex = "0.4.3"
packtool-macro = { path = "./packtool-macro", version = "0.3" }
thiserror = "1.0.25"
[dev-dependencies]
quickcheck = "1"
quickcheck_macros = "1"
# be kind with crates.io and only compile the doc once
# there's no difference based on the architecture anyway
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[workspace]
members = [
"packtool-macro"
]