diff options
Diffstat (limited to 'crates/tor-dircommon')
| -rw-r--r-- | crates/tor-dircommon/src/dir_plugin_backend.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/tor-dircommon/src/dir_plugin_backend.rs b/crates/tor-dircommon/src/dir_plugin_backend.rs index 3ac4521d8..8b19cc1b8 100644 --- a/crates/tor-dircommon/src/dir_plugin_backend.rs +++ b/crates/tor-dircommon/src/dir_plugin_backend.rs @@ -9,7 +9,7 @@ pub use http; /// An object that knows how to handle one or more kinds of directory requests. -pub trait DirBackendPlugin { +pub trait DirBackendPlugin: Send + Sync + 'static { /// Handle a GET request. /// /// Returns an http Response if the request is recognized, |
