Skip to content

Commit

Permalink
Version <- 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OJFord committed Jun 18, 2017
1 parent 7c0ab1f commit 71976cd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
12 changes: 9 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tapioca"
version = "0.0.0"
version = "0.0.1"
authors = ["Oliver Ford <ojf13@imperial.ac.uk>"]
repository = "https://github.com/OJFord/tapioca.git"
description = "Type-safe REST client using the OpenAPI Specification"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion tapioca-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tapioca-codegen"
version = "0.0.0"
version = "0.0.1"
authors = ["Oliver Ford <ojf13@imperial.ac.uk>"]
description = "Type-safe REST client using the OpenAPI Specification"
repository = "https://github.com/OJFord/tapioca/tree/master/tapioca-codegen"
Expand Down
10 changes: 7 additions & 3 deletions tests/util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tapioca-testutil"
version = "0.0.0"
version = "0.0.1"
authors = ["Oliver Ford <ojf13@imperial.ac.uk>"]
repository = "https://github.com/OJFord/tapioca.git"
license-file = "../../LICENCE"
Expand All @@ -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"

0 comments on commit 71976cd

Please sign in to comment.