-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 936 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
[package]
name = "byteme"
description = "Converts a struct into Vec<u8> and back. The conversion is Big Endian by default."
version = "0.0.5"
edition = "2021"
authors = ["Yousuf Jawwad <yousuf@breu.io>"]
license = "Apache-2.0"
repository = "https://github.com/breuHQ/byteme"
documentation = "https://docs.rs/byteme"
readme = "README.md"
keywords = ["proc-macro", "bytes"]
categories = [
"development-tools::procedural-macro-helpers",
"encoding",
"rust-patterns",
"parser-implementations",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
path = "src/lib.rs"
[[test]]
name = "progress"
path = "tests/progress.rs"
[dev-dependencies]
trybuild = { version = "1.0.63", features = ["diff"] }
[dependencies]
num-derive = "0.3.3"
num-traits = "0.2.15"
proc-macro2 = "1.0.39"
quote = "1.0.18"
syn = { version = "1.0.96", features = ["full", "extra-traits"] }