diff --git a/Cargo.lock b/Cargo.lock index ad4e4e0..81a6e30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,7 +41,7 @@ dependencies = [ [[package]] name = "geotiff" -version = "0.0.1" +version = "0.0.2" dependencies = [ "num-traits", "tiff", diff --git a/Cargo.toml b/Cargo.toml index 4ec1237..502862c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "geotiff" -version = "0.0.1" +description = "A GeoTIFF library for Rust" +version = "0.0.2" edition = "2021" authors = ["Dominik Bucher "] repository = "https://github.com/georust/geotiff" diff --git a/README.md b/README.md index 98f9b44..5ced06d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# A TIFF Library for Rust +# A GeoTIFF library for Rust -![Version](https://img.shields.io/badge/version-v0.0.2-red.svg) +[![geotiff on crates.io](https://img.shields.io/crates/v/geotiff.svg)](https://crates.io/crates/geotiff) > [!IMPORTANT] > This crate is currently undergoing a significant refactoring process to be built on diff --git a/src/lib.rs b/src/lib.rs index ff8b374..ebe89f6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,4 @@ +//! A [GeoTIFF](https://www.ogc.org/standard/geotiff) library for Rust use std::any::type_name; use std::io::{Read, Seek};