1
1
<div align =" center " >
2
2
<a href="https://lunatic.solutions/" target="_blank">
3
- <img width="60" src="https://raw.githubusercontent.com/lunatic-solutions/lunatic/main/assets/logo.svg" alt="Lunatic logo">
3
+ <img width="60"
4
+ src="https://raw.githubusercontent.com/lunatic-solutions/lunatic/main/assets/logo.svg"
5
+ alt="lunatic logo"
6
+ >
4
7
</a>
5
8
<p> </p>
6
9
</div >
@@ -30,11 +33,15 @@ If you would like to see other languages supported or just follow the discussion
30
33
31
34
## Installation
32
35
33
- We provide pre-built binaries for ** Windows** , ** Linux** and ** macOS** on the [ releases page] [ 5 ] .
36
+ If you have rust (cargo) installed, you can build and install the lunatic runtime with:
37
+
38
+ ``` bash
39
+ cargo install lunatic-runtime
40
+ ```
34
41
35
42
---
36
43
37
- On ** macOS** you can also use [ Hombrew] [ 6 ] :
44
+ On ** macOS** you can use [ Hombrew] [ 6 ] too :
38
45
39
46
``` bash
40
47
brew tap lunatic-solutions/lunatic
@@ -43,16 +50,20 @@ brew install lunatic
43
50
44
51
---
45
52
46
- To build the project from source you will need to have [ rustup] [ 7 ] installed:
53
+ We also provide pre-built binaries for ** Windows** , ** Linux** and ** macOS** on the
54
+ [ releases page] [ 5 ] , that you can include in your ` PATH ` .
55
+
56
+ ---
57
+
58
+ And as always, you can also clone this repository and build it locally. The only dependency is
59
+ [ a rust compiler] [ 7 ] :
47
60
48
61
``` bash
49
- # Add wasm32 compilation target
50
- rustup target add wasm32-unknown-unknown
51
62
# Clone the repository
52
63
git clone https://github.com/lunatic-solutions/lunatic.git
53
64
# Jump into the cloned folder
54
65
cd lunatic
55
- # Build and install Lunatic
66
+ # Build and install lunatic
56
67
cargo install --path .
57
68
```
58
69
0 commit comments