Skip to content

Commit

Permalink
Leave only the first meaningful number in dependency version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitrySamoylov committed Oct 10, 2024
1 parent 535fb3e commit c286679
Show file tree
Hide file tree
Showing 42 changed files with 182 additions and 182 deletions.
48 changes: 24 additions & 24 deletions onvif/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
72 changes: 36 additions & 36 deletions schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ edition = "2018"
license = "MIT"

[dependencies]
bigdecimal = "0.3.0"
chrono = "0.4.19"
num-bigint = "0.4.2"
percent-encoding = "2.1.0"
bigdecimal = "0.3"
chrono = "0.4"
num-bigint = "0.4"
percent-encoding = "2"
transport = { path = "../transport" }
url = "2.2.1"
url = "2"
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" }

Expand All @@ -29,40 +29,40 @@ xmlmime = { path = "../xsd_rs/xmlmime" }
xop = { path = "../xsd_rs/xop" }

# wsdl
accesscontrol = { path = "../wsdl_rs/accesscontrol" , optional = true}
accessrules = { path = "../wsdl_rs/accessrules" , optional = true}
actionengine = { path = "../wsdl_rs/actionengine" , optional = true}
advancedsecurity = { path = "../wsdl_rs/advancedsecurity" , optional = true}
analytics = { path = "../wsdl_rs/analytics" , optional = true}
authenticationbehavior = { path = "../wsdl_rs/authenticationbehavior" , optional = true}
accesscontrol = { path = "../wsdl_rs/accesscontrol", optional = true }
accessrules = { path = "../wsdl_rs/accessrules", optional = true }
actionengine = { path = "../wsdl_rs/actionengine", optional = true }
advancedsecurity = { path = "../wsdl_rs/advancedsecurity", optional = true }
analytics = { path = "../wsdl_rs/analytics", optional = true }
authenticationbehavior = { path = "../wsdl_rs/authenticationbehavior", optional = true }
b_2 = { path = "../wsdl_rs/b_2" }
bf_2 = { path = "../wsdl_rs/bf_2" , optional = true}
credential = { path = "../wsdl_rs/credential" , optional = true}
deviceio = { path = "../wsdl_rs/deviceio" , optional = true}
devicemgmt = { path = "../wsdl_rs/devicemgmt" , optional = true}
display = { path = "../wsdl_rs/display" , optional = true}
doorcontrol = { path = "../wsdl_rs/doorcontrol" , optional = true}
event = { path = "../wsdl_rs/event" , optional = true}
imaging = { path = "../wsdl_rs/imaging" , optional = true}
media = { path = "../wsdl_rs/media" , optional = true}
media2 = { path = "../wsdl_rs/media2" , optional = true}
provisioning = { path = "../wsdl_rs/provisioning" , optional = true}
ptz = { path = "../wsdl_rs/ptz" , optional = true}
receiver = { path = "../wsdl_rs/receiver" , optional = true}
recording = { path = "../wsdl_rs/recording" , optional = true}
replay = { path = "../wsdl_rs/replay" , optional = true}
schedule = { path = "../wsdl_rs/schedule" , optional = true}
search = { path = "../wsdl_rs/search" , optional = true}
bf_2 = { path = "../wsdl_rs/bf_2", optional = true }
credential = { path = "../wsdl_rs/credential", optional = true }
deviceio = { path = "../wsdl_rs/deviceio", optional = true }
devicemgmt = { path = "../wsdl_rs/devicemgmt", optional = true }
display = { path = "../wsdl_rs/display", optional = true }
doorcontrol = { path = "../wsdl_rs/doorcontrol", optional = true }
event = { path = "../wsdl_rs/event", optional = true }
imaging = { path = "../wsdl_rs/imaging", optional = true }
media = { path = "../wsdl_rs/media", optional = true }
media2 = { path = "../wsdl_rs/media2", optional = true }
provisioning = { path = "../wsdl_rs/provisioning", optional = true }
ptz = { path = "../wsdl_rs/ptz", optional = true }
receiver = { path = "../wsdl_rs/receiver", optional = true }
recording = { path = "../wsdl_rs/recording", optional = true }
replay = { path = "../wsdl_rs/replay", optional = true }
schedule = { path = "../wsdl_rs/schedule", optional = true }
search = { path = "../wsdl_rs/search", optional = true }
t_1 = { path = "../wsdl_rs/t_1" }
thermal = { path = "../wsdl_rs/thermal" , optional = true}
uplink = { path = "../wsdl_rs/uplink" , optional = true}
thermal = { path = "../wsdl_rs/thermal", optional = true }
uplink = { path = "../wsdl_rs/uplink", optional = true }
ws_addr = { path = "../wsdl_rs/ws_addr" }
ws_discovery = { path = "../wsdl_rs/ws_discovery" }
xml_xsd = { path = "../wsdl_rs/xml_xsd" }

[dev-dependencies]
assert_approx_eq = "1.1.0"
async-trait = "0.1.42"
tokio = { version = "1.0.1", features = ["full"] }
yaserde = "0.7.1"
yaserde_derive = "0.7.1"
assert_approx_eq = "1"
async-trait = "0.1"
tokio = { version = "1", features = ["full"] }
yaserde = "0.7"
yaserde_derive = "0.7"
6 changes: 3 additions & 3 deletions transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/accesscontrol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/accessrules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/actionengine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/advancedsecurity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/analytics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/authenticationbehavior/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/b_2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/bf_2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
6 changes: 3 additions & 3 deletions wsdl_rs/credential/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/deviceio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/devicemgmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/display/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/doorcontrol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/event/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
6 changes: 3 additions & 3 deletions wsdl_rs/imaging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/media/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/media2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/provisioning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions wsdl_rs/ptz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Loading

0 comments on commit c286679

Please sign in to comment.