From 99f57e15711da5093f5653af2a66c6ab4dbddb3b Mon Sep 17 00:00:00 2001 From: Michael Wu Date: Thu, 23 Aug 2018 20:45:19 -0400 Subject: [PATCH] Add more stuff to Cargo.toml --- Cargo.toml | 9 +++++++-- objc_rustime/Cargo.toml | 2 +- rust_gen/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d320dbc..9c76813 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,16 @@ [package] name = "rustkit" version = "0.0.1" + authors = ["Michael Wu "] +description = "Fast and ergonomic Rust bindings for ObjC APIs" +repository = "https://github.com/michaelwu/RustKit" +readme = "README.md" +license = "Apache-2.0/MIT" [build-dependencies] -rust_gen = { path = "rust_gen" } +rust_gen = { path = "rust_gen", version = "0.0.1" } [dependencies] -objc_rustime = { path = "objc_rustime" } +objc_rustime = { path = "objc_rustime", version = "0.0.1" } bitflags = "1.0" diff --git a/objc_rustime/Cargo.toml b/objc_rustime/Cargo.toml index 1b3c4b6..5e548d0 100644 --- a/objc_rustime/Cargo.toml +++ b/objc_rustime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "objc_rustime" -version = "0.1.0" +version = "0.0.1" authors = ["Michael Wu "] [dependencies]