Skip to content

Commit

Permalink
Add feature info to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cargodog committed Sep 16, 2020
1 parent 525b97c commit 2569f27
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,19 @@ USE AT YOUR OWN RISK!
## Documentation
Detailed documentation can be found [here][docs-external].

# Use
# Usage and Features
Latest release version can be found in the git tags or on [crates.io][arcturus-crate]. Add the latest version to your project's `Cargo.toml`:
```toml
arcturus = "x.y.z"
```

By default, `std` and `serde` features are enabled. To build without `std` or without `serde`
implementations, use the `--no-default-features` option when building. The following example
builds without `std`, but still implements `serde`:
```sh
cargo build --no-default-features --features "serde"
```

# Example:
```rust
use arcturus::*;
Expand Down

0 comments on commit 2569f27

Please sign in to comment.