Rename parser_utils to mentat_parser_utils, clean up imports. (#234) r=vporof
This commit is contained in:
parent
f3f353661f
commit
fcdf759399
6 changed files with 5 additions and 7 deletions
|
@ -3,7 +3,7 @@ script:
|
||||||
- cargo build --verbose
|
- cargo build --verbose
|
||||||
- cargo test --verbose
|
- cargo test --verbose
|
||||||
- cargo test --verbose -p edn
|
- cargo test --verbose -p edn
|
||||||
- cargo test --verbose -p parser_utils
|
- cargo test --verbose -p mentat_parser_utils
|
||||||
- cargo test --verbose -p mentat_db
|
- cargo test --verbose -p mentat_db
|
||||||
- cargo test --verbose -p mentat_query
|
- cargo test --verbose -p mentat_query
|
||||||
- cargo test --verbose -p mentat_query_parser
|
- cargo test --verbose -p mentat_query_parser
|
||||||
|
|
|
@ -18,7 +18,7 @@ features = ["bundled"]
|
||||||
[dependencies.edn]
|
[dependencies.edn]
|
||||||
path = "edn"
|
path = "edn"
|
||||||
|
|
||||||
[dependencies.parser_utils]
|
[dependencies.mentat_parser_utils]
|
||||||
path = "parser-utils"
|
path = "parser-utils"
|
||||||
|
|
||||||
[dependencies.mentat_db]
|
[dependencies.mentat_db]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "parser_utils"
|
name = "mentat_parser_utils"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Victor Porof <vporof@mozilla.com>"]
|
authors = ["Victor Porof <vporof@mozilla.com>"]
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ combine = "2.1.1"
|
||||||
[dependencies.edn]
|
[dependencies.edn]
|
||||||
path = "../edn"
|
path = "../edn"
|
||||||
|
|
||||||
[dependencies.parser_utils]
|
[dependencies.mentat_parser_utils]
|
||||||
path = "../parser-utils"
|
path = "../parser-utils"
|
||||||
|
|
||||||
[dependencies.mentat_query]
|
[dependencies.mentat_query]
|
||||||
|
|
|
@ -8,9 +8,8 @@
|
||||||
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
||||||
// specific language governing permissions and limitations under the License.
|
// specific language governing permissions and limitations under the License.
|
||||||
|
|
||||||
#![allow(unused_imports)]
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate parser_utils;
|
extern crate mentat_parser_utils;
|
||||||
|
|
||||||
mod error;
|
mod error;
|
||||||
mod util;
|
mod util;
|
||||||
|
|
|
@ -34,7 +34,6 @@ pub fn get_connection() -> Connection {
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
|
||||||
use edn::symbols::Keyword;
|
use edn::symbols::Keyword;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Reference in a new issue