Add the Usage section in README.

This commit is contained in:
KAMADA Ken'ichi 2016-12-30 23:39:16 +09:00
parent 9dce2590c3
commit 038078fa13
1 changed files with 14 additions and 0 deletions

14
README
View File

@ -5,6 +5,20 @@ Exif parsing library written in pure Rust
This library can parse TIFF and JPEG images and extract Exif
attributes.
Usage
-----
Add a dependency entry to your Cargo.toml. Specifying at least two
numbers is recommended because, during the major version 0, the
minor will be bumped to indicate backwards-incompatible changes.
[dependencies]
exif = "0.1.0"
Add the following to your crate root.
extern crate exif;
Dependencies
------------