Skip to content

Commit de81976

Browse files
author
Jonathan Woollett-Light
committed
CPUID template expansion
Signed-off-by: Jonathan Woollett-Light <[email protected]>
1 parent 01f0970 commit de81976

File tree

13 files changed

+6229
-0
lines changed

13 files changed

+6229
-0
lines changed

src/bit-fields-macros/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "bit-fields-macros"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[lib]
9+
proc-macro = true

src/bit-fields-macros/src/lib.rs

Lines changed: 609 additions & 0 deletions
Large diffs are not rendered by default.

src/bit-fields/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "bit-fields"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
bit-fields-macros = { path = "../bit-fields-macros" }
10+
serde = { version = "1.0.139", optional = true }

0 commit comments

Comments
 (0)