diff --git a/Cargo.toml b/Cargo.toml index 15a9345..62b36b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ name = "janus-plugin" version = "0.1.0" authors = ["Marshall Quander "] description = "Library for creating plugins for Janus, the WebRTC gateway." +repository = "https://github.com/mquander/janus-plugin-rs" license = "MPL-2.0" [workspace] @@ -15,5 +16,5 @@ colored = "1.5" cstr-macro = "0.1" glib-sys = "0.4" libc = "0.2" -jansson-sys = { path = "jansson-sys" } -janus-plugin-sys = { path = "janus-plugin-sys" } \ No newline at end of file +jansson-sys = { path = "jansson-sys", version = "0.1.0" } +janus-plugin-sys = { path = "janus-plugin-sys", version = "0.1.0" } \ No newline at end of file diff --git a/jansson-sys/Cargo.toml b/jansson-sys/Cargo.toml index ff4628e..98cc727 100644 --- a/jansson-sys/Cargo.toml +++ b/jansson-sys/Cargo.toml @@ -3,6 +3,8 @@ name = "jansson-sys" version = "0.1.0" authors = ["Marshall Quander "] description = "Native bindings for Jansson, the C JSON library." +repository = "https://github.com/mquander/janus-plugin-rs" +license = "MPL-2.0" [dev-dependencies] cstr-macro = "0.1.0" \ No newline at end of file diff --git a/janus-plugin-sys/Cargo.toml b/janus-plugin-sys/Cargo.toml index 8900a59..e53e516 100644 --- a/janus-plugin-sys/Cargo.toml +++ b/janus-plugin-sys/Cargo.toml @@ -3,7 +3,9 @@ name = "janus-plugin-sys" version = "0.1.0" authors = ["Marshall Quander "] description = "Native bindings to the Janus plugin API." +repository = "https://github.com/mquander/janus-plugin-rs" +license = "MPL-2.0" [dependencies] glib-sys = "0.4" -jansson-sys = { path = "../jansson-sys" } +jansson-sys = { path = "../jansson-sys", version = "0.1.0" }