Skip to content

Commit

Permalink
Merge pull request #227 from biscuit-auth/bump-proc-macro-error
Browse files Browse the repository at this point in the history
Bump proc-macro-error
  • Loading branch information
divarvel authored Sep 6, 2024
2 parents 61a12b0 + feb4a74 commit bf2f22a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions biscuit-auth/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@ mod capi;
#[cfg(cargo_c)]
pub use capi::*;

#[cfg(bwk)]
#[cfg(feature = "bwk")]
mod bwk;
#[cfg(bwk)]
#[cfg(feature = "bwk")]
pub use bwk::*;

mod time;
Expand Down
2 changes: 1 addition & 1 deletion biscuit-quote/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ biscuit-parser = { path = "../biscuit-parser", features = ["datalog-macro"], ver
proc-macro2 = "1"
quote = "1.0.14"
syn = { version = "1.0.85", features = ["full", "extra-traits"] }
proc-macro-error = "1.0"
proc-macro-error2 = "2.0"

[dev-dependencies]
hex = "0.4.3"
2 changes: 1 addition & 1 deletion biscuit-quote/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use biscuit_parser::{
parser::{parse_block_source, parse_source},
};
use proc_macro2::{Span, TokenStream};
use proc_macro_error::{abort_call_site, proc_macro_error};
use proc_macro_error2::{abort_call_site, proc_macro_error};
use quote::{quote, ToTokens};
use std::collections::{HashMap, HashSet};
use syn::{
Expand Down

0 comments on commit bf2f22a

Please sign in to comment.