From c7df8772d9268c1b8932c69617c73eb13519c7eb Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 27 Jan 2019 21:14:24 -0800 Subject: [PATCH] Release dw 0.1.0 --- dw/Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dw/Cargo.toml b/dw/Cargo.toml index fe66089..2983dda 100644 --- a/dw/Cargo.toml +++ b/dw/Cargo.toml @@ -3,9 +3,15 @@ name = "dw" version = "0.1.0" authors = ["Steven Fackler "] edition = "2018" +description = "An interface to libdw" +license = "MIT/Apache-2.0" +repository = "https://github.com/sfackler/rstack" +documentation = "https://sfackler.github.io/rstack/doc/dw" +categories = ["api-bindings", "development-tools::debugging"] +keywords = ["stack", "backtrace", "stacktrace"] [dependencies] foreign-types = "0.3" libc = "0.2" -dw-sys = { path = "../dw-sys" } +dw-sys = { version = "0.1.0", path = "../dw-sys" }