summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarkus Unterwaditzer <markus@unterwaditzer.net>2015-01-19 21:11:36 +0100
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2015-01-19 21:11:36 +0100
commit1a62e46e831c4a1771cdeabc6d0dd4aa4c6702bb (patch)
tree0730b149f55430e400d288e3a26c8ce7ca5e43cf /src
parent029a4771250db5afcdb778a4690ce6a9cfb79fc0 (diff)
Fix for static binaries?
Diffstat (limited to 'src')
-rw-r--r--src/vobject/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vobject/lib.rs b/src/vobject/lib.rs
index b0f43f5..23cb616 100644
--- a/src/vobject/lib.rs
+++ b/src/vobject/lib.rs
@@ -2,7 +2,7 @@
#![allow(unstable)]
#![feature(plugin)]
-#[plugin] extern crate peg_syntax_ext;
+#[plugin] #[no_link] extern crate peg_syntax_ext;
use std::collections::HashMap;
use std::collections::hash_map::Entry::{Occupied, Vacant};