Skip to content

Commit

Permalink
Merge pull request #135 from lumeohq/jplatte/yaserde
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte authored Sep 7, 2021
2 parents 91667d5 + d28434e commit 7f3d433
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[workspace]
members = [
"wsdl-parser",
"wsdl-parser-cli",
"xsd-macro-utils",
"xsd-parser",
"xsd-parser-cli",
"xsd-types",
"wsdl-parser",
"wsdl-parser-cli",
]
2 changes: 1 addition & 1 deletion wsdl-parser-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ path = "src/main.rs"
anyhow = "1.0.42"
clap = "2.33.3"
roxmltree = { version = "0.14.0", features = ["std"] }
xsd-parser = { path = "../xsd-parser" }
wsdl-parser = { path = "../wsdl-parser" }
xsd-parser = { path = "../xsd-parser" }
9 changes: 4 additions & 5 deletions xsd-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@ edition = "2018"
license = "MIT OR Apache-2.0"

[dependencies]
roxmltree = "0.14.0"
Inflector = "0.11.4"
roxmltree = "0.14.0"

[dev-dependencies]
log = "0.4.13"
xsd-macro-utils = { path = "../xsd-macro-utils" }
num-bigint = "0.4.2"
syn = { version = "1.0.58", features = ["full"] }
text-diff = "0.4.0"
xml-rs = "0.8.3"
xsd-macro-utils = { path = "../xsd-macro-utils" }
xsd-types = { path = "../xsd-types" }
yaserde = "0.6.0"
yaserde_derive = "0.6.0"
yaserde = "0.7.1"
yaserde_derive = "0.7.1"
11 changes: 5 additions & 6 deletions xsd-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ edition = "2018"
license = "MIT OR Apache-2.0"

[dependencies]
log = "0.4.11"
xml-rs = "0.8.3"
yaserde = "0.6.0"
bigdecimal = "0.3.0"
chrono = "0.4.19"
xsd-macro-utils = { path = "../xsd-macro-utils" }
num-bigint = "0.4.2"
bigdecimal = "0.3.0"
xml-rs = "0.8.3"
xsd-macro-utils = { path = "../xsd-macro-utils" }
yaserde = "0.7.1"

[dev-dependencies]
yaserde_derive = "0.6.0"
yaserde_derive = "0.7.1"

0 comments on commit 7f3d433

Please sign in to comment.