mirror of https://github.com/Tim-Paik/neutauri.git
Tim-Paik 2a0fafc5bf | ||
---|---|---|
.cargo | ||
neutauri_bundler | ||
neutauri_runtime | ||
web_src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md | ||
README.zh-CN.md | ||
neutauri.toml.example |
README.md
Neutauri
Under construction...
Compilation Guide
Linux
Dependency installation
Archlinux:
$ sudo pacman -Syu
$ sudo pacman -S --needed webkit2gtk base-devel curl wget openssl gtk3
Compile
$ git clone https://github.com/Tim-Paik/neutauri.git
$ cd neutauri
$ cargo build --release --bin neutauri_runtime
$ cargo build --release --bin neutauri_bundler
Then you can find the neutauri_bundler
executable in the target/release
directory.
Windows
Dependency installation
You need to install Visual Studio to use Rust, please install it yourself.
Compile
PS C:\SomePath> git clone https://github.com/Tim-Paik/neutauri.git
PS C:\SomePath> cd .\neutauri\
PS C:\SomePath> cargo build --release --bin neutauri_runtime
PS C:\SomePath> cargo build --release --bin neutauri_bundler
Then you can find the neutauri_bundler.exe
executable in the .\target\release\
folder.