Skip to content

Commit

Permalink
Release v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed May 10, 2019
1 parent 488c834 commit 921fda0
Show file tree
Hide file tree
Showing 9 changed files with 82 additions and 75 deletions.
102 changes: 51 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 15 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,19 @@ ARGS:
can also be used on its own in e.g. build scripts as an alternative approach. See its documentation for more details, as
well as examples of generated code.

## conjure-serde
## conjure-error

[Documentation](https://docs.rs/conjure-serde)
[Documentation](https://docs.rs/conjure-error)

`conjure-serde` provides wrapper types for serde `Serializer`s and `Deserializer`s which adjust behavior to match
Conjure's expectations around binary data, non-finite floating point values, and unknown fields.
`conjure-error` is the runtime support library that the errors generated by `conjure-codegen` depend on. It defines
various standard error types and functionality to serialize and deserialize errors.

## conjure-http

[Documentation](https://docs.rs/conjure-http)

`conjure-http` is the runtime support library that the service clients and resources generated by `conjure-codegen`
depend on. It defines interfaces used by the underlying client and server implementations.

## conjure-object

Expand All @@ -46,9 +53,9 @@ Conjure's expectations around binary data, non-finite floating point values, and
`conjure-object` is the runtime support library that the objects generated by `conjure-codegen` depend on. It reexports
the various third party types that correspond to Conjure primitives.

## conjure-error
## conjure-serde

[Documentation](https://docs.rs/conjure-error)
[Documentation](https://docs.rs/conjure-serde)

`conjure-error` is the runtime support library that the errors generated by `conjure-codegen` depend on. It defines
various standard error types and functionality to serialize and deserialize errors.
`conjure-serde` provides wrapper types for serde `Serializer`s and `Deserializer`s which adjust behavior to match
Conjure's expectations around binary data, non-finite floating point values, and unknown fields.
10 changes: 5 additions & 5 deletions conjure-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conjure-codegen"
version = "0.3.1"
version = "0.3.2"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -21,7 +21,7 @@ quote = { version = "0.6", default-features = false }
proc-macro2 = { version = "0.4", default-features = false }
failure = "0.1"

conjure-object = { version = "0.3.1", path = "../conjure-object" }
conjure-serde = { version = "0.3.1", path = "../conjure-serde" }
conjure-error = { version = "0.3.1", optional = true, path = "../conjure-error" }
conjure-http = { version = "0.3.1", optional = true, path = "../conjure-http" }
conjure-object = { version = "0.3.2", path = "../conjure-object" }
conjure-serde = { version = "0.3.2", path = "../conjure-serde" }
conjure-error = { version = "0.3.2", optional = true, path = "../conjure-error" }
conjure-http = { version = "0.3.2", optional = true, path = "../conjure-http" }
4 changes: 2 additions & 2 deletions conjure-error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conjure-error"
version = "0.3.1"
version = "0.3.2"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -15,4 +15,4 @@ serde = "1.0"
serde-value = "0.5"
uuid = { version = "0.7", features = ["v4"] }

conjure-object = { version = "0.3.1", path = "../conjure-object" }
conjure-object = { version = "0.3.2", path = "../conjure-object" }
8 changes: 4 additions & 4 deletions conjure-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conjure-http"
version = "0.3.1"
version = "0.3.2"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -13,6 +13,6 @@ http = "0.1"
lazy_static = "1.0"
serde = "1.0"

conjure-error = { version = "0.3.1", path = "../conjure-error" }
conjure-object = { version = "0.3.1", path = "../conjure-object" }
conjure-serde = { version = "0.3.1", path = "../conjure-serde" }
conjure-error = { version = "0.3.2", path = "../conjure-error" }
conjure-object = { version = "0.3.2", path = "../conjure-object" }
conjure-serde = { version = "0.3.2", path = "../conjure-serde" }
2 changes: 1 addition & 1 deletion conjure-object/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conjure-object"
version = "0.3.1"
version = "0.3.2"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions conjure-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "conjure-rust"
version = "0.3.1"
version = "0.3.2"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"

[dependencies]
structopt = "0.2"

conjure-codegen = { version = "0.3.1", path = "../conjure-codegen" }
conjure-codegen = { version = "0.3.2", path = "../conjure-codegen" }
2 changes: 1 addition & 1 deletion conjure-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conjure-serde"
version = "0.3.1"
version = "0.3.2"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
Loading

0 comments on commit 921fda0

Please sign in to comment.