From 71976cd6f487015a5bc0138409fed9370e9b6335 Mon Sep 17 00:00:00 2001 From: Ollie Ford Date: Sun, 18 Jun 2017 16:42:50 +0100 Subject: [PATCH] Version <- 0.0.1 --- Cargo.toml | 12 +++++++++--- tapioca-codegen/Cargo.toml | 2 +- tests/util/Cargo.toml | 10 +++++++--- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fe6e66f..debd527 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapioca" -version = "0.0.0" +version = "0.0.1" authors = ["Oliver Ford "] repository = "https://github.com/OJFord/tapioca.git" description = "Type-safe REST client using the OpenAPI Specification" @@ -26,8 +26,14 @@ reqwest = "0.6" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" -tapioca-codegen = {version="0", path="tapioca-codegen"} + +[dependencies.tapioca-codegen] +version = "0.0.1" +path = "tapioca-codegen" [dev-dependencies] compiletest_rs = "0.2" -tapioca-testutil = {version="0", path="tests/util"} + +[dev-dependencies.tapioca-testutil] +version = "0.0.1" +path = "tests/util" diff --git a/tapioca-codegen/Cargo.toml b/tapioca-codegen/Cargo.toml index 4d361ce..df99dcb 100644 --- a/tapioca-codegen/Cargo.toml +++ b/tapioca-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapioca-codegen" -version = "0.0.0" +version = "0.0.1" authors = ["Oliver Ford "] description = "Type-safe REST client using the OpenAPI Specification" repository = "https://github.com/OJFord/tapioca/tree/master/tapioca-codegen" diff --git a/tests/util/Cargo.toml b/tests/util/Cargo.toml index 0e43b90..5d27230 100644 --- a/tests/util/Cargo.toml +++ b/tests/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapioca-testutil" -version = "0.0.0" +version = "0.0.1" authors = ["Oliver Ford "] repository = "https://github.com/OJFord/tapioca.git" license-file = "../../LICENCE" @@ -11,5 +11,9 @@ path = "lib.rs" [dependencies] serde = "1.0" serde_derive = "1.0" -tapioca = {path="../../"} -tapioca-codegen = {path="../../tapioca-codegen"} + +[dependencies.tapioca] +path = "../../" + +[dependencies.tapioca-codegen] +path = "../../tapioca-codegen"