mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
Add syntax highlighting to README.
This commit is contained in:
parent
ba0bf47492
commit
f76e08deec
1 changed files with 7 additions and 3 deletions
10
README.md
10
README.md
|
|
@ -90,9 +90,13 @@ Documentation is available [here](https://docs.rs/x25519-dalek).
|
||||||
|
|
||||||
To install, add the following to your project's `Cargo.toml`:
|
To install, add the following to your project's `Cargo.toml`:
|
||||||
|
|
||||||
[dependencies.x25519-dalek]
|
```toml
|
||||||
version = "^0.1"
|
[dependencies.x25519-dalek]
|
||||||
|
version = "^0.2"
|
||||||
|
```
|
||||||
|
|
||||||
Then, in your library or executable source, add:
|
Then, in your library or executable source, add:
|
||||||
|
|
||||||
extern crate x25519_dalek
|
```rust
|
||||||
|
extern crate x25519_dalek;
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue