We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07c1e7f commit 1213232Copy full SHA for 1213232
Cargo.toml
@@ -0,0 +1,16 @@
1
+[package]
2
+name = "proc-macro-workshop"
3
+version = "0.0.0"
4
+edition = "2018"
5
+publish = false
6
+
7
+[[bin]]
8
+name = "workshop"
9
+path = "main.rs"
10
11
+[dependencies]
12
+bitfield = { path = "bitfield" }
13
+derive_builder = { path = "builder" }
14
+derive_debug = { path = "debug" }
15
+seq = { path = "seq" }
16
+sorted = { path = "sorted" }
main.rs
@@ -0,0 +1,9 @@
+// Write code here.
+//
+// To see what the code looks like after macro expansion:
+// $ cargo expand
+// To run the code:
+// $ cargo run
+fn main() {}
0 commit comments