1# cose-rust
2
3A Rust library for [COSE](https://tools.ietf.org/html/rfc8152) using [NSS](https://github.com/nss-dev/nss/).
4
5[![Build Status](https://travis-ci.org/franziskuskiefer/cose-rust.svg?branch=master)](https://travis-ci.org/franziskuskiefer/cose-rust/)
6![Maturity Level](https://img.shields.io/badge/maturity-alpha-red.svg)
7
8**THIS IS WORK IN PROGRESS. DO NOT USE YET.**
9
10## Build instructions
11
12If NSS is not installed in the path, use `NSS_LIB_DIR` to set the library path where
13we can find the NSS libraries.
14
15    cargo build
16
17### Run Tests and Examples
18
19To run tests and examples you need NSS in your library path. Tests can be run
20with
21
22    cargo test
23
24and examples with
25
26    cargo run --example sign_verify
27