From a665926fe6f8330de499ab6b8e67674a67ad439f Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Fri, 6 Jan 2017 17:19:46 -0800 Subject: [PATCH] Rename to Project Mentat (query-parser). --- query-parser/Cargo.toml | 4 ++-- query-parser/src/lib.rs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/query-parser/Cargo.toml b/query-parser/Cargo.toml index a17d9c6c..b170385c 100644 --- a/query-parser/Cargo.toml +++ b/query-parser/Cargo.toml @@ -1,3 +1,3 @@ [package] -name = "datomish-query-parser" -version = "0.0.1" \ No newline at end of file +name = "mentat-query-parser" +version = "0.0.1" diff --git a/query-parser/src/lib.rs b/query-parser/src/lib.rs index 952491a8..4589b6b8 100644 --- a/query-parser/src/lib.rs +++ b/query-parser/src/lib.rs @@ -10,7 +10,7 @@ // This file is just a stub pub fn get_name() -> String { - return String::from("datomish-query-parser"); + return String::from("mentat-query-parser"); } #[cfg(test)] @@ -19,6 +19,6 @@ mod tests { #[test] fn it_works() { - assert_eq!(String::from("datomish-query-parser"), get_name()); + assert_eq!(String::from("mentat-query-parser"), get_name()); } -} \ No newline at end of file +}