You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build the library simply go to the root directory of the repo and run
39
-
40
-
```
41
-
$ cargo build
42
-
```
43
-
44
-
### Test
45
-
46
-
The library's tests can be run with
47
-
48
-
```
49
-
$ cargo test
50
-
```
51
-
52
-
### View Documentation
53
-
54
-
Like most Rust projects, the library documentation is written into the source code and can be built and viewed with
55
-
56
-
```
57
-
$ cargo doc --open
58
-
```
59
-
60
-
After the first release of the library, the documentation will be hosted on docs.rs. We will update this README with a link to that documentation once it is ready.
36
+
The `main` branch currently targets bevy version 0.12 (bevy impulse 0.0.x)
37
+
so that new developments are still compatible for users of bevy 0.12. New features
38
+
will be forward-ported as soon as possible. `main` will move forward to newer
39
+
versions of bevy when we judge that enough of the ecosystem has finished migrating
40
+
forward that there is no longer value in supporting old versions. In the future
41
+
we may come up with a more concrete policy for this, and we are open to input on
0 commit comments