Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMarkelov committed Mar 16, 2020
1 parent 98238be commit b4c4f65
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "hakufile"
name = "haku"
version = "0.3.1"
authors = ["Vladimir Markelov <[email protected]>"]
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ both tools are for different purposes and it does not make much sense to compare
You can compile the application from sources, or install using cargo:

```shell
$ cargo install hakufile
$ cargo install haku
```

You need Rust compiler that supports Rust 2018 edition (Rust 1.38 or newer) to do it. If you want
to upgrade existing haku, execute the following command:

```shell
$ cargo install hakufile --force
$ cargo install haku --force
```

For rust 1.41 and newer flag `--force` can be omitted.
Expand Down
2 changes: 1 addition & 1 deletion changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ haku (0.3.1) unstable; urgency=medium

* First public version

-- Vladimir Markelov <[email protected]> Sun, 15 Mar 2020 10:37:06 -0700
-- Vladimir Markelov <[email protected]> Mon, 16 Mar 2020 12:10:19 -0700
2 changes: 1 addition & 1 deletion src/bin/haku/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::env;
use std::iter::FromIterator;
use std::process::exit;

use hakufile::errors::HakuError;
use haku::errors::HakuError;

pub struct Config {
pub dry_run: bool,
Expand Down
4 changes: 2 additions & 2 deletions src/bin/haku/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use std::process::exit;

use config::{parse_args, Config};

use hakufile::errors::HakuError;
use hakufile::vm::{Engine, RunOpts};
use haku::errors::HakuError;
use haku::vm::{Engine, RunOpts};

fn nice_vec_print(lst: &[String]) {
for (idx, s) in lst.iter().enumerate() {
Expand Down

0 comments on commit b4c4f65

Please sign in to comment.