-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c7926f
commit 5cd0918
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "yaserde-examples" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Marc-Antoine Arnaud <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
description = "Examples for YaSerDe project" | ||
documentation = "https://docs.rs/yaserde" | ||
|
||
[dependencies] | ||
yaserde = {version = "0.11.0", path = "../yaserde", features = ["yaserde_derive"] } | ||
yaserde = {version = "0.11.1", path = "../yaserde", features = ["yaserde_derive"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yaserde" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Marc-Antoine Arnaud <[email protected]>"] | ||
description = "Serialization and deserialization library" | ||
keywords = ["Serialization", "Deserialization", "XML"] | ||
|
@@ -12,13 +12,13 @@ readme = "../README.md" | |
edition = "2018" | ||
|
||
[dependencies] | ||
yaserde_derive = { version = "0.11.0", path = "../yaserde_derive", optional = true } | ||
yaserde_derive = { version = "0.11.1", path = "../yaserde_derive", optional = true } | ||
xml-rs = "0.8.3" | ||
log = "0.4" | ||
|
||
[dev-dependencies] | ||
env_logger = "0.11.0" | ||
yaserde_derive = { version = "0.11.0", path = "../yaserde_derive" } | ||
yaserde_derive = { version = "0.11.1", path = "../yaserde_derive" } | ||
|
||
[badges] | ||
travis-ci = { repository = "media-io/yaserde" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yaserde_derive" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Marc-Antoine Arnaud <[email protected]>"] | ||
description = "Serialization and deserialization macros" | ||
keywords = ["Serialization", "Deserialization"] | ||
|