Skip to content

Commit

Permalink
chore: update CodeResolver trait to implement Send and Sync (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
miseyu authored May 20, 2024
1 parent 54fecde commit 3701788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nusamai-citygml/src/codelist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use url::Url;

use crate::parser::ParseError;

pub trait CodeResolver {
pub trait CodeResolver: Send + Sync {
fn resolve(
&self,
base_url: &Url,
Expand Down

0 comments on commit 3701788

Please sign in to comment.