Update the compilation section of the README.
This commit is contained in:
parent
65211aa89a
commit
5b1388888b
16
README.md
16
README.md
|
@ -71,23 +71,21 @@ fn main() {
|
||||||
```
|
```
|
||||||
|
|
||||||
## Compilation
|
## Compilation
|
||||||
You will need the last rust compiler from the master branch.
|
You will need the last nightly build of the [rust compiler](http://www.rust-lang.org)
|
||||||
If you encounter problems, make sure you have the last version before creating an issue.
|
and the official package manager: [cargo](https://github.com/rust-lang/cargo).
|
||||||
|
|
||||||
git clone git://github.com/sebcrozet/nalgebra.git
|
Simply add the following to your `Cargo.toml` file:
|
||||||
cd nalgebra
|
|
||||||
make
|
|
||||||
|
|
||||||
You can build the documentation on the `doc` folder using:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
make doc
|
[dependencies.nalgebra]
|
||||||
|
git = "https://github.com/sebcrozet/nalgebra"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## **nalgebra** in use
|
## **nalgebra** in use
|
||||||
Here are some projects using **nalgebra**.
|
Here are some projects using **nalgebra**.
|
||||||
Feel free to add your project to this list if you happen to use **nalgebra**!
|
Feel free to add your project to this list if you happen to use **nalgebra**!
|
||||||
|
|
||||||
* [nphysics](http://nphysics-dev.org): a real-time physics engine.
|
* [nphysics](http://nphysics-dev.org): a real-time physics engine.
|
||||||
* [ncollide](http://ncollide.org): a collision detection library.
|
* [ncollide](http://ncollide.org): a collision detection library.
|
||||||
* [kiss3d](https://kiss3d.org): a minimalistic graphics engine.
|
* [kiss3d](http://kiss3d.org): a minimalistic graphics engine.
|
||||||
|
|
16
src/lib.rs
16
src/lib.rs
|
@ -71,20 +71,16 @@ fn main() {
|
||||||
```
|
```
|
||||||
|
|
||||||
## Compilation
|
## Compilation
|
||||||
You will need the last rust compiler from the master branch.
|
You will need the last nightly build of the [rust compiler](http://www.rust-lang.org)
|
||||||
If you encounter problems, make sure you have the last version before creating an issue.
|
and the official package manager: [cargo](https://github.com/rust-lang/cargo).
|
||||||
|
|
||||||
|
Simply add the following to your `Cargo.toml` file:
|
||||||
|
|
||||||
```.ignore
|
```.ignore
|
||||||
git clone git://github.com/sebcrozet/nalgebra.git
|
[dependencies.nalgebra]
|
||||||
cd nalgebra
|
git = "https://github.com/sebcrozet/nalgebra"
|
||||||
make
|
|
||||||
```
|
```
|
||||||
|
|
||||||
You can build the documentation on the `doc` folder using:
|
|
||||||
|
|
||||||
```.ignore
|
|
||||||
make doc
|
|
||||||
```
|
|
||||||
|
|
||||||
## **nalgebra** in use
|
## **nalgebra** in use
|
||||||
Here are some projects using **nalgebra**.
|
Here are some projects using **nalgebra**.
|
||||||
|
|
Loading…
Reference in New Issue