Only build verbatim parsing code when parsing feature is selected
diff --git a/src/lib.rs b/src/lib.rs
index 60da219..112361f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -447,7 +447,7 @@
 #[cfg(all(feature = "parsing", feature = "printing"))]
 pub mod spanned;
 
-#[cfg(feature = "full")]
+#[cfg(all(feature = "parsing", feature = "full"))]
 mod verbatim;
 
 mod gen {