diff --git a/onvif/Cargo.toml b/onvif/Cargo.toml index fcc9f73..28b22a5 100644 --- a/onvif/Cargo.toml +++ b/onvif/Cargo.toml @@ -9,36 +9,36 @@ license = "MIT" tls = ["reqwest/native-tls"] [dependencies] -async-recursion = "0.3.1" -async-trait = "0.1.41" -base64 = "0.13.0" -bigdecimal = "0.3.0" -chrono = "0.4.19" -digest_auth = "0.3.0" -futures = "0.3.30" -futures-core = "0.3.8" -futures-util = "0.3.30" -num-bigint = "0.4.2" -reqwest = { version = "0.12.3", default-features = false } +async-recursion = "0.3" +async-trait = "0.1" +base64 = "0.13" +bigdecimal = "0.3" +chrono = "0.4" +digest_auth = "0.3" +futures = "0.3" +futures-core = "0.3" +futures-util = "0.3" +num-bigint = "0.4" +reqwest = { version = "0.12", default-features = false } schema = { version = "0.1.0", path = "../schema", default-features = false, features = ["analytics", "devicemgmt", "event", "media", "ptz"] } -sha1 = "0.6.0" +sha1 = "0.6" thiserror = "1.0" tokio = { version = "1", default-features = false, features = ["net", "sync", "time"] } tokio-stream = "0.1" -tracing = "0.1.26" -url = "2.2.0" -uuid = { version = "0.8.1", features = ["v4"] } -xml-rs = "=0.8.3" -xmltree = "0.10.2" +tracing = "0.1" +url = "2" +uuid = { version = "1", features = ["v4"] } +xml-rs = "0.8" +xmltree = "0.10" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" [dev-dependencies] -dotenv = "0.15.0" -futures-util = "0.3.8" -structopt = "0.3.21" -tokio = { version = "1.0.1", features = ["full"] } -tracing-subscriber = "0.2.20" +dotenv = "0.15" +futures-util = "0.3" +structopt = "0.3" +tokio = { version = "1", features = ["full"] } +tracing-subscriber = "0.2" b_2 = { path = "../wsdl_rs/b_2" } diff --git a/onvif/src/soap/tests.rs b/onvif/src/soap/tests.rs index 9273466..b3ae078 100644 --- a/onvif/src/soap/tests.rs +++ b/onvif/src/soap/tests.rs @@ -11,8 +11,7 @@ fn test_soap() { "#; - let expected = r#" - + let expected = r#" @@ -44,8 +43,7 @@ fn test_unsoap() { pub pages: i32, } - let input = r#" - + let input = r#" @@ -69,8 +67,7 @@ fn test_unsoap() { #[test] fn test_get_fault() { - let response = r#" - + let response = r#" + let response = r#" @@ -70,8 +69,7 @@ fn basic_deserialization() { #[cfg(feature = "devicemgmt")] #[test] fn basic_serialization() { - let expected = r#" - + let expected = r#" "#; @@ -126,8 +124,7 @@ fn extend_base_serialization() { ..Default::default() }; - let expected = r#" - + let expected = r#" 456cde @@ -256,8 +253,7 @@ fn choice_serialization() { ]), }; - let expected = r#" - + let expected = r#" 0.10.11 @@ -294,8 +290,7 @@ fn duration_serialization() { }, }; - let expected = r#" - + let expected = r#" http://a/b/c false @@ -399,8 +394,7 @@ async fn operation_get_device_information() { #[test] fn probe_serialization() { - let expected = r#" - + let expected = r#" + let ser = r#" + let expected = r#" Auto Manual @@ -545,8 +537,7 @@ fn string_list_deserialization() { fn float_list_serialization() { let model = tt::FloatAttrList(vec![1.0, 2.3, 3.99]); - let expected = r#" - + let expected = r#" 1 2.3 3.99 "#; @@ -557,8 +548,7 @@ fn float_list_serialization() { #[test] fn float_list_deserialization() { - let ser = r#" - + let ser = r#" 1 2.3 3.99 "#; @@ -570,8 +560,7 @@ fn float_list_deserialization() { #[test] fn nested_structs_with_same_named_attributes() { // https://github.com/media-io/yaserde/issues/12#issuecomment-601235031 - let ser = r#" - + let ser = r#" @@ -587,8 +576,7 @@ fn nested_structs_with_same_named_attributes() { fn nested_structs_with_same_named_fields() { // There was an issue in yaserde which is now fixed // https://github.com/media-io/yaserde/issues/51 - let ser = r#" - + let ser = r#" @@ -610,8 +598,7 @@ fn extension_inside_extension() { // https://github.com/media-io/yaserde/issues/76 // If field `extension` in `SecurityCapabilitiesExtension` is uncommented accidentally // then this test will fail. Also note that there's a bunch of such cases in `onvif.rs`. - let ser = r#" - + let ser = r#" false diff --git a/transport/Cargo.toml b/transport/Cargo.toml index ca6e027..827cee5 100644 --- a/transport/Cargo.toml +++ b/transport/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" license = "MIT" [dependencies] -async-trait = "0.1.42" -thiserror = "1.0.23" -yaserde = "0.7.1" +async-trait = "0.1" +thiserror = "1" +yaserde = "0.7" diff --git a/wsdl_rs/accesscontrol/Cargo.toml b/wsdl_rs/accesscontrol/Cargo.toml index a84bad7..7b464a7 100644 --- a/wsdl_rs/accesscontrol/Cargo.toml +++ b/wsdl_rs/accesscontrol/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" transport = { path = "../../transport" } types = { path = "../../xsd_rs/types" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/accessrules/Cargo.toml b/wsdl_rs/accessrules/Cargo.toml index 76dd4b4..f451032 100644 --- a/wsdl_rs/accessrules/Cargo.toml +++ b/wsdl_rs/accessrules/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" transport = { path = "../../transport" } types = { path = "../../xsd_rs/types" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/actionengine/Cargo.toml b/wsdl_rs/actionengine/Cargo.toml index cc09d69..861eb11 100644 --- a/wsdl_rs/actionengine/Cargo.toml +++ b/wsdl_rs/actionengine/Cargo.toml @@ -10,8 +10,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/advancedsecurity/Cargo.toml b/wsdl_rs/advancedsecurity/Cargo.toml index 51d1d97..0785b01 100644 --- a/wsdl_rs/advancedsecurity/Cargo.toml +++ b/wsdl_rs/advancedsecurity/Cargo.toml @@ -7,8 +7,8 @@ license = "MIT" [dependencies] transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/analytics/Cargo.toml b/wsdl_rs/analytics/Cargo.toml index e92f99d..efd3557 100644 --- a/wsdl_rs/analytics/Cargo.toml +++ b/wsdl_rs/analytics/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/authenticationbehavior/Cargo.toml b/wsdl_rs/authenticationbehavior/Cargo.toml index f15592e..3508059 100644 --- a/wsdl_rs/authenticationbehavior/Cargo.toml +++ b/wsdl_rs/authenticationbehavior/Cargo.toml @@ -10,8 +10,8 @@ transport = { path = "../../transport" } types = { path = "../../xsd_rs/types" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/b_2/Cargo.toml b/wsdl_rs/b_2/Cargo.toml index fceb2f1..26bdb4d 100644 --- a/wsdl_rs/b_2/Cargo.toml +++ b/wsdl_rs/b_2/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" t_1 = { path = "../t_1" } validate = { path = "../../validate" } ws_addr = { path = "../ws_addr" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/bf_2/Cargo.toml b/wsdl_rs/bf_2/Cargo.toml index cfb0916..3607248 100644 --- a/wsdl_rs/bf_2/Cargo.toml +++ b/wsdl_rs/bf_2/Cargo.toml @@ -6,10 +6,10 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" ws_addr = { path = "../../wsdl_rs/ws_addr" } xml_xsd = { path = "../../wsdl_rs/xml_xsd" } diff --git a/wsdl_rs/credential/Cargo.toml b/wsdl_rs/credential/Cargo.toml index 6fa09b0..2a68d8c 100644 --- a/wsdl_rs/credential/Cargo.toml +++ b/wsdl_rs/credential/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" transport = { path = "../../transport" } types = { path = "../../xsd_rs/types" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/deviceio/Cargo.toml b/wsdl_rs/deviceio/Cargo.toml index 176c1a2..92d5328 100644 --- a/wsdl_rs/deviceio/Cargo.toml +++ b/wsdl_rs/deviceio/Cargo.toml @@ -10,8 +10,8 @@ devicemgmt = { path = "../../wsdl_rs/devicemgmt" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/devicemgmt/Cargo.toml b/wsdl_rs/devicemgmt/Cargo.toml index 2b80a53..3aa3c10 100644 --- a/wsdl_rs/devicemgmt/Cargo.toml +++ b/wsdl_rs/devicemgmt/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/display/Cargo.toml b/wsdl_rs/display/Cargo.toml index 580f105..3093f61 100644 --- a/wsdl_rs/display/Cargo.toml +++ b/wsdl_rs/display/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/doorcontrol/Cargo.toml b/wsdl_rs/doorcontrol/Cargo.toml index 25260e6..bd66f35 100644 --- a/wsdl_rs/doorcontrol/Cargo.toml +++ b/wsdl_rs/doorcontrol/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" transport = { path = "../../transport" } types = { path = "../../xsd_rs/types" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/event/Cargo.toml b/wsdl_rs/event/Cargo.toml index 27f8e02..2614df8 100644 --- a/wsdl_rs/event/Cargo.toml +++ b/wsdl_rs/event/Cargo.toml @@ -9,9 +9,9 @@ b_2 = { path = "../../wsdl_rs/b_2" } t_1 = { path = "../../wsdl_rs/t_1" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" ws_addr = { path = "../../wsdl_rs/ws_addr" } diff --git a/wsdl_rs/imaging/Cargo.toml b/wsdl_rs/imaging/Cargo.toml index 32fd449..798438f 100644 --- a/wsdl_rs/imaging/Cargo.toml +++ b/wsdl_rs/imaging/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/media/Cargo.toml b/wsdl_rs/media/Cargo.toml index 5a39aa8..52d068c 100644 --- a/wsdl_rs/media/Cargo.toml +++ b/wsdl_rs/media/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/media2/Cargo.toml b/wsdl_rs/media2/Cargo.toml index 15b9737..58eafa4 100644 --- a/wsdl_rs/media2/Cargo.toml +++ b/wsdl_rs/media2/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/provisioning/Cargo.toml b/wsdl_rs/provisioning/Cargo.toml index a1063b3..0404e69 100644 --- a/wsdl_rs/provisioning/Cargo.toml +++ b/wsdl_rs/provisioning/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/ptz/Cargo.toml b/wsdl_rs/ptz/Cargo.toml index 1ec94ff..ef2d34c 100644 --- a/wsdl_rs/ptz/Cargo.toml +++ b/wsdl_rs/ptz/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/receiver/Cargo.toml b/wsdl_rs/receiver/Cargo.toml index c24d8dd..074e275 100644 --- a/wsdl_rs/receiver/Cargo.toml +++ b/wsdl_rs/receiver/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/recording/Cargo.toml b/wsdl_rs/recording/Cargo.toml index 0478f39..3864781 100644 --- a/wsdl_rs/recording/Cargo.toml +++ b/wsdl_rs/recording/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/replay/Cargo.toml b/wsdl_rs/replay/Cargo.toml index 83e12ea..384e957 100644 --- a/wsdl_rs/replay/Cargo.toml +++ b/wsdl_rs/replay/Cargo.toml @@ -9,8 +9,8 @@ common = { path = "../../xsd_rs/common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/schedule/Cargo.toml b/wsdl_rs/schedule/Cargo.toml index 541fddc..3d7b8f4 100644 --- a/wsdl_rs/schedule/Cargo.toml +++ b/wsdl_rs/schedule/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" transport = { path = "../../transport" } types = { path = "../../xsd_rs/types" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/search/Cargo.toml b/wsdl_rs/search/Cargo.toml index 1460d1d..674f1b7 100644 --- a/wsdl_rs/search/Cargo.toml +++ b/wsdl_rs/search/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/t_1/Cargo.toml b/wsdl_rs/t_1/Cargo.toml index 305867d..e461c39 100644 --- a/wsdl_rs/t_1/Cargo.toml +++ b/wsdl_rs/t_1/Cargo.toml @@ -6,8 +6,8 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/thermal/Cargo.toml b/wsdl_rs/thermal/Cargo.toml index 613cd86..98744a3 100644 --- a/wsdl_rs/thermal/Cargo.toml +++ b/wsdl_rs/thermal/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/uplink/Cargo.toml b/wsdl_rs/uplink/Cargo.toml index e774143..48d6759 100644 --- a/wsdl_rs/uplink/Cargo.toml +++ b/wsdl_rs/uplink/Cargo.toml @@ -7,6 +7,6 @@ license = "MIT" [dependencies] transport = { path = "../../transport" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +xml-rs = "0.8" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/ws_addr/Cargo.toml b/wsdl_rs/ws_addr/Cargo.toml index dccf5a0..4080074 100644 --- a/wsdl_rs/ws_addr/Cargo.toml +++ b/wsdl_rs/ws_addr/Cargo.toml @@ -6,8 +6,8 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/ws_discovery/Cargo.toml b/wsdl_rs/ws_discovery/Cargo.toml index 4f94c81..53b7c11 100644 --- a/wsdl_rs/ws_discovery/Cargo.toml +++ b/wsdl_rs/ws_discovery/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" license = "MIT" [dependencies] -percent-encoding = "2.1.0" -url = "2.2.1" -xml-rs = "=0.8.3" -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +percent-encoding = "2" +url = "2" +xml-rs = "0.8" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/wsdl_rs/ws_discovery/src/lib.rs b/wsdl_rs/ws_discovery/src/lib.rs index 4da10a5..ba7ccce 100644 --- a/wsdl_rs/ws_discovery/src/lib.rs +++ b/wsdl_rs/ws_discovery/src/lib.rs @@ -188,8 +188,7 @@ pub mod probe_matches { #[test] fn probe_match() { - let ser = r#" - + let ser = r#" diff --git a/wsdl_rs/xml_xsd/Cargo.toml b/wsdl_rs/xml_xsd/Cargo.toml index 2dbd2fe..b5fa1fb 100644 --- a/wsdl_rs/xml_xsd/Cargo.toml +++ b/wsdl_rs/xml_xsd/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" license = "MIT" [dependencies] -xml-rs = "=0.8.3" -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +xml-rs = "0.8" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/common/Cargo.toml b/xsd_rs/common/Cargo.toml index 437e542..7cad2e4 100644 --- a/xsd_rs/common/Cargo.toml +++ b/xsd_rs/common/Cargo.toml @@ -6,8 +6,8 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/metadatastream/Cargo.toml b/xsd_rs/metadatastream/Cargo.toml index 2cb8dba..28a53ee 100644 --- a/xsd_rs/metadatastream/Cargo.toml +++ b/xsd_rs/metadatastream/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" b_2 = { path = "../../wsdl_rs/b_2" } common = { path = "../common" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/onvif_xsd/Cargo.toml b/xsd_rs/onvif_xsd/Cargo.toml index d087d4a..fa23b2d 100644 --- a/xsd_rs/onvif_xsd/Cargo.toml +++ b/xsd_rs/onvif_xsd/Cargo.toml @@ -9,10 +9,10 @@ b_2 = { path = "../../wsdl_rs/b_2" } common = { path = "../common" } soap_envelope = { path = "../../xsd_rs/soap_envelope" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xmlmime = { path = "../../xsd_rs/xmlmime" } xop = { path = "../../xsd_rs/xop" } xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/radiometry/Cargo.toml b/xsd_rs/radiometry/Cargo.toml index 1f09aed..f843c7e 100644 --- a/xsd_rs/radiometry/Cargo.toml +++ b/xsd_rs/radiometry/Cargo.toml @@ -10,10 +10,10 @@ common = { path = "../common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } soap_envelope = { path = "../../xsd_rs/soap_envelope" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xmlmime = { path = "../../xsd_rs/xmlmime" } xop = { path = "../../xsd_rs/xop" } xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/rules/Cargo.toml b/xsd_rs/rules/Cargo.toml index 8567075..44e843e 100644 --- a/xsd_rs/rules/Cargo.toml +++ b/xsd_rs/rules/Cargo.toml @@ -10,10 +10,10 @@ common = { path = "../common" } onvif = { package = "onvif-xsd", path = "../../xsd_rs/onvif_xsd" } soap_envelope = { path = "../../xsd_rs/soap_envelope" } validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xmlmime = { path = "../../xsd_rs/xmlmime" } xop = { path = "../../xsd_rs/xop" } xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/soap_envelope/Cargo.toml b/xsd_rs/soap_envelope/Cargo.toml index f8d5b83..dc7bb0c 100644 --- a/xsd_rs/soap_envelope/Cargo.toml +++ b/xsd_rs/soap_envelope/Cargo.toml @@ -6,8 +6,8 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/types/Cargo.toml b/xsd_rs/types/Cargo.toml index d416624..7e02d77 100644 --- a/xsd_rs/types/Cargo.toml +++ b/xsd_rs/types/Cargo.toml @@ -6,8 +6,8 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/xmlmime/Cargo.toml b/xsd_rs/xmlmime/Cargo.toml index 2bf4063..fd55b84 100644 --- a/xsd_rs/xmlmime/Cargo.toml +++ b/xsd_rs/xmlmime/Cargo.toml @@ -6,8 +6,8 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" +xml-rs = "0.8" xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +yaserde = "0.7" +yaserde_derive = "0.7" diff --git a/xsd_rs/xop/Cargo.toml b/xsd_rs/xop/Cargo.toml index 583238b..2e6f8cb 100644 --- a/xsd_rs/xop/Cargo.toml +++ b/xsd_rs/xop/Cargo.toml @@ -6,6 +6,6 @@ license = "MIT" [dependencies] validate = { path = "../../validate" } -xml-rs = "=0.8.3" -yaserde = "0.7.1" -yaserde_derive = "0.7.1" +xml-rs = "0.8" +yaserde = "0.7" +yaserde_derive = "0.7"