Browse Source

Update Cargo metadata.

whitequark 8 years ago
parent
commit
73de85eb19
2 changed files with 7 additions and 2 deletions
  1. 6 1
      Cargo.toml
  2. 1 1
      README.md

+ 6 - 1
Cargo.toml

@@ -2,8 +2,13 @@
 name = "smoltcp"
 version = "0.1.0"
 authors = ["whitequark <[email protected]>"]
+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 }

+ 1 - 1
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
 --------