mirror of https://github.com/Tim-Paik/neutauri
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 week ago | |
---|---|---|
.cargo | 4 months ago | |
neutauri_bundler | 1 week ago | |
neutauri_data | 2 weeks ago | |
neutauri_runtime | 1 week ago | |
web_src | 4 months ago | |
.drone.yml | 2 weeks ago | |
.gitignore | 4 months ago | |
Cargo.lock | 2 weeks ago | |
Cargo.toml | 2 weeks ago | |
LICENSE | 4 months ago | |
README.md | 4 months ago | |
README.zh-CN.md | 4 months ago | |
neutauri.toml.example | 4 months ago |
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.