aboutsummaryrefslogtreecommitdiff
path: root/src/packed/teddy/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/packed/teddy/mod.rs')
-rw-r--r--src/packed/teddy/mod.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/packed/teddy/mod.rs b/src/packed/teddy/mod.rs
index b896023..3268cdf 100644
--- a/src/packed/teddy/mod.rs
+++ b/src/packed/teddy/mod.rs
@@ -1,11 +1,11 @@
#[cfg(target_arch = "x86_64")]
-pub use packed::teddy::compile::Builder;
+pub use crate::packed::teddy::compile::Builder;
#[cfg(not(target_arch = "x86_64"))]
-pub use packed::teddy::fallback::Builder;
+pub use crate::packed::teddy::fallback::Builder;
#[cfg(not(target_arch = "x86_64"))]
-pub use packed::teddy::fallback::Teddy;
+pub use crate::packed::teddy::fallback::Teddy;
#[cfg(target_arch = "x86_64")]
-pub use packed::teddy::runtime::Teddy;
+pub use crate::packed::teddy::runtime::Teddy;
#[cfg(target_arch = "x86_64")]
mod compile;
@@ -14,8 +14,8 @@ mod runtime;
#[cfg(not(target_arch = "x86_64"))]
mod fallback {
- use packed::pattern::Patterns;
- use Match;
+ use crate::packed::pattern::Patterns;
+ use crate::Match;
#[derive(Clone, Debug, Default)]
pub struct Builder(());