Rename to Project Mentat (cli).

This commit is contained in:
Richard Newman 2017-01-06 17:19:29 -08:00
parent 7a4c75ba44
commit 3af0d479aa
3 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "datomish-cli" name = "mentat-cli"
version = "0.0.1" version = "0.0.1"
[dependencies] [dependencies]
[dependencies.datomish] [dependencies.mentat]
path = "../" path = "../"

View file

@ -1,3 +1,3 @@
# datomish-cli # mentat-cli
Note: this isn't actually doing anything and is just a placeholder to get the project structure in place. Note: this isn't actually doing anything and is just a placeholder to get the project structure in place.

View file

@ -9,11 +9,11 @@
// specific language governing permissions and limitations under the License. // specific language governing permissions and limitations under the License.
use std::env; use std::env;
extern crate datomish; extern crate mentat;
// This is just a placeholder to get the project structure in place. // This is just a placeholder to get the project structure in place.
fn main() { fn main() {
println!("Loaded {}", datomish::get_name()); println!("Loaded {}", mentat::get_name());
let args: Vec<String> = env::args().collect(); let args: Vec<String> = env::args().collect();
println!("I got {:?} arguments: {:?}.", args.len() - 1, &args[1..]); println!("I got {:?} arguments: {:?}.", args.len() - 1, &args[1..]);