diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-01 15:10:35 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-01 15:10:35 +0200 |
| commit | 7c12f0c07f9d4ed473027dbd00cbbc00e4a3050c (patch) | |
| tree | e097c908761cc67605d6c151f680c3e173e0344b /src/parse | |
| parent | 7fcad452b87c8bd31a9b7dfba78c1b1a92d33dd9 (diff) | |
Flatten compute module
Diffstat (limited to 'src/parse')
| -rw-r--r-- | src/parse/mod.rs | 2 | ||||
| -rw-r--r-- | src/parse/tests.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 7a0002d6..ea030ce1 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -13,7 +13,7 @@ pub use tokens::*; use std::str::FromStr; use crate::color::RgbaColor; -use crate::compute::dict::DictKey; +use crate::compute::DictKey; use crate::syntax::*; use crate::{Feedback, Pass}; diff --git a/src/parse/tests.rs b/src/parse/tests.rs index 302e93ee..7ffbeeda 100644 --- a/src/parse/tests.rs +++ b/src/parse/tests.rs @@ -6,7 +6,7 @@ use std::fmt::Debug; use super::parse; use crate::color::RgbaColor; -use crate::compute::dict::DictKey; +use crate::compute::DictKey; use crate::length::Length; use crate::syntax::*; |
