From 2404647163477e08edfcb6545048e7626b359fef Mon Sep 17 00:00:00 2001 From: whitequark Date: Wed, 28 Dec 2016 00:21:01 +0000 Subject: [PATCH] Update Cargo metadata. --- Cargo.toml | 7 ++++++- README.md | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 01532e0..3eb5486 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,13 @@ name = "smoltcp" version = "0.1.0" authors = ["whitequark "] +description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap." +documentation = "https://docs.rs/smoltcp/" +homepage = "https://github.com/m-labs/smoltcp" +repository = "https://github.com/m-labs/smoltcp.git" +readme = "README.md" +keywords = ["ip", "tcp", "udp", "ethernet", "network"] license = "0BSD" -readme-file = "README.md" [dependencies] byteorder = { version = "0.5", default-features = false } diff --git a/README.md b/README.md index 0328854..49725e4 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ at cost of performance degradation. _smoltcp_ does not need heap allocation *at all*, is [extensively documented][docs], and compiles on stable Rust. -[docs]: https://m-labs.github.io/smoltcp/smoltcp/index.html +[docs]: https://docs.rs/smoltcp/ Features --------