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 +}