-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 730 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
[package]
name = "bit_seq"
version = "0.2.1"
authors = ["Johannes Zottele official@johannes-zottele.at"]
edition = "2021"
license = "MIT"
description = "A procedural macro for creating bit sequences."
repository = "https://github.com/Jozott00/bit_seq"
categories = ["encoding", "parser-implementations"]
keywords = ["bits", "macros", "bitmask", "proc-macro", "bit-manipulation"]
readme = "README.md"
[lib]
name = "bit_seq"
path = "src/lib.rs"
proc-macro = true
[dependencies]
syn = { version = "2.0.18" }
quote = "1.0"
proc-macro2 = "1.0"
proc-macro-error = "1.0.4"
[dev-dependencies]
trybuild = "1.0.42"
# tests
[[test]]
name = "bseq_pass"
path = "tests/bseq_pass.rs"
[[test]]
name = "bseq_fail"
path = "tests/bseq_fail.rs"