Add syntax highlighting to README.

This commit is contained in:
Isis Lovecruft 2018-05-15 23:00:27 +00:00
parent ba0bf47492
commit f76e08deec
Failed to extract signature

View file

@ -90,9 +90,13 @@ Documentation is available [here](https://docs.rs/x25519-dalek).
To install, add the following to your project's `Cargo.toml`:
[dependencies.x25519-dalek]
version = "^0.1"
```toml
[dependencies.x25519-dalek]
version = "^0.2"
```
Then, in your library or executable source, add:
extern crate x25519_dalek
```rust
extern crate x25519_dalek;
```