diff --git a/Cargo.toml b/Cargo.toml index 1320765..a71675e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,15 @@ [package] name = "oem_cp" -version = "0.1.0" +version = "0.1.1" authors = ["Tatsunori Uchino "] edition = "2018" categories = ["encoding"] keywords = ["encoding", "charset"] license = "MIT" description ="Rust library that handles OEM code pages (e.g. CP{437,737,850}) for single byte character sets" +readme = "README.md" +repository = "https://github.com/tats-u/rust-oem-cp/" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 7085b5f..b7bd2dc 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add `oem_cp` to the dependencies in `Cargo.toml` in your projects. ```toml [dependencies] # *snip* -oem_cp = "0.1.0" +oem_cp = "0.1.1" # *snip* ```