-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (39 loc) · 1.08 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright (c) 2025 Joshua Seaton
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
[workspace]
members = [ ".", "bitfld-macro" ]
[workspace.package]
version = "0.1.7"
edition = "2024"
license = "MIT"
readme = "README.md"
repository = "https://github.com/joshuaseaton/bitfld"
[workspace.lints.clippy]
all = {level = "deny", priority = -1 }
pedantic = {level = "deny", priority = -1 }
too_many_lines = "allow"
[package]
name = "bitfld"
version.workspace = true
edition.workspace = true
categories = [ "encoding", "no-std" ]
keywords = [ "bitfield", "bit-field", "layout" ]
description = "Ergonomic, no-std specification of bitfield layouts"
license.workspace = true
readme.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
bitfld-macro = { path = "bitfld-macro" }
[dev-dependencies]
zerocopy = { version = "0.8", features = [ "derive" ] }
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "bitfield-repr"
path = "examples/bitfield-repr.rs"