aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugin.rs')
-rw-r--r--src/plugin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin.rs b/src/plugin.rs
index e57f072..bc428d5 100644
--- a/src/plugin.rs
+++ b/src/plugin.rs
@@ -45,7 +45,7 @@ pub trait Plugin: PluginName + Send + Sync + fmt::Debug {
/// #[derive(PluginName)]
/// struct Foo;
/// ```
-pub trait PluginName: Send + Sync + fmt::Debug {
+pub trait PluginName {
/// Returns the name of the `Plugin`.
fn name(&self) -> &str;
}