From 038078fa13fdc4a07ca354e2771a88d1954f8ed6 Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Fri, 30 Dec 2016 23:39:16 +0900 Subject: [PATCH] Add the Usage section in README. --- README | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README b/README index 414d249..14a454a 100644 --- a/README +++ b/README @@ -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 ------------