Skip to content

Commit b0efa25

Browse files
authored
fix: prosa_macros compilation (#27)
Signed-off-by: Jeremy HERGAULT <[email protected]>
1 parent cf70357 commit b0efa25

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

prosa_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ include.workspace = true
1313
proc-macro = true
1414

1515
[dependencies]
16-
syn = "2"
16+
syn = { version = "2", features = ["full"] }
1717
quote = "1"
1818
proc-macro2 = "1"
1919
chrono.workspace = true

prosa_macros/src/proc.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use syn::{parse::Parser, punctuated::Punctuated};
66

77
use crate::add_angle_bracketed;
88

9-
#[derive(Debug)]
109
struct ProcParams {
1110
settings: Option<syn::Path>,
1211
queue_size: syn::LitInt,

0 commit comments

Comments
 (0)