Rename to Project Mentat (query-parser).

This commit is contained in:
Richard Newman 2017-01-06 17:19:46 -08:00
parent 84f468ce41
commit a665926fe6
2 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,3 @@
[package]
name = "datomish-query-parser"
version = "0.0.1"
name = "mentat-query-parser"
version = "0.0.1"

View file

@ -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());
}
}
}