Rename to Project Mentat (cli).
This commit is contained in:
parent
7a4c75ba44
commit
3af0d479aa
3 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "datomish-cli"
|
||||
name = "mentat-cli"
|
||||
version = "0.0.1"
|
||||
|
||||
[dependencies]
|
||||
[dependencies.datomish]
|
||||
[dependencies.mentat]
|
||||
path = "../"
|
|
@ -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.
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
// specific language governing permissions and limitations under the License.
|
||||
|
||||
use std::env;
|
||||
extern crate datomish;
|
||||
extern crate mentat;
|
||||
|
||||
// This is just a placeholder to get the project structure in place.
|
||||
fn main() {
|
||||
println!("Loaded {}", datomish::get_name());
|
||||
println!("Loaded {}", mentat::get_name());
|
||||
|
||||
let args: Vec<String> = env::args().collect();
|
||||
println!("I got {:?} arguments: {:?}.", args.len() - 1, &args[1..]);
|
||||
|
|
Loading…
Reference in a new issue