11[package ]
2233description = " Basic wrapper around azure identity service."
4- edition = " 2021 "
4+ edition = " 2024 "
55license = " MIT OR Apache-2.0"
66name = " eis-utils"
77repository = " https://github.com/omnect/eis-utils"
8- version = " 0.3.3"
9-
10- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+ version = " 0.3.4"
119
1210[dependencies ]
13- aziot-cert-client-async = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-cert-client-async" , tag = " 1.5.0" }
14- aziot-cert-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-cert-common" , tag = " 1.5.0" }
15- aziot-certd-config = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-certd-config" , tag = " 1.5.0" }
16- aziot-cert-common-http = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-cert-common-http" , tag = " 1.5.0" }
17- aziot-identity-client-async = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identity-client-async" , tag = " 1.5.0" }
18- aziot-identity-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identity-common" , tag = " 1.5.0" }
19- aziot-identityd-config = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identityd-config" , tag = " 1.5.0" }
20- aziot-identity-common-http = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identity-common-http" , tag = " 1.5.0" }
21- aziot-keyd-config = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-keyd-config" , tag = " 1.5.0" }
22- aziot-key-client-async = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-key-client-async" , tag = " 1.5.0" }
23- aziot-key-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-key-common" , tag = " 1.5.0" }
24- aziot-key-common-http = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-key-common-http" , tag = " 1.5.0" }
25- base64 = " 0.22"
26- # ToDo: check if 'default-features = false' can be removed. currently needed as workaround for cargo-bitbake.
11+ aziot-cert-client-async = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-cert-client-async" , tag = " 1.5.5" }
12+ aziot-cert-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-cert-common" , tag = " 1.5.5" }
13+ aziot-certd-config = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-certd-config" , tag = " 1.5.5" }
14+ aziot-cert-common-http = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-cert-common-http" , tag = " 1.5.5" }
15+ aziot-identity-client-async = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identity-client-async" , tag = " 1.5.5" }
16+ aziot-identity-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identity-common" , tag = " 1.5.5" }
17+ aziot-identityd-config = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identityd-config" , tag = " 1.5.5" }
18+ aziot-identity-common-http = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-identity-common-http" , tag = " 1.5.5" }
19+ aziot-keyd-config = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-keyd-config" , tag = " 1.5.5" }
20+ aziot-key-client-async = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-key-client-async" , tag = " 1.5.5" }
21+ aziot-key-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-key-common" , tag = " 1.5.5" }
22+ aziot-key-common-http = { git = " https://github.com/Azure/iot-identity-service.git" , package = " aziot-key-common-http" , tag = " 1.5.5" }
23+ base64 = { version = " 0.22" , default-features = false }
2724env_logger = { version = " 0.11" , default-features = false }
28- http-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " http-common" , tag = " 1.5.0" }
29- hyper-timeout = " 0.5"
30- log = " 0.4"
31- percent-encoding = " 2.1"
32- tokio = { version = " 1" , features = [" full" , " rt-multi-thread" ] }
33- url = " 2.2"
25+ http-common = { git = " https://github.com/Azure/iot-identity-service.git" , default-features = false , package = " http-common" , tag = " 1.5.5" }
26+ hyper-timeout = { version = " 0.5" , default-features = false }
27+ log = { version = " 0.4" , default-features = false }
28+ percent-encoding = { version = " 2.3" , default-features = false }
29+ tokio = { version = " 1" , default-features = false , features = [
30+ " full" ,
31+ " rt-multi-thread" ,
32+ ] }
33+ url = { version = " 2.5" , default-features = false }
3434
3535[dev-dependencies ]
3636async-trait = " 0.1"
@@ -39,7 +39,7 @@ http = "0.2"
3939hyper = " 0.14"
4040futures-util = " 0.3"
4141serde_json = " 1"
42- config-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " config-common" , tag = " 1.5.0 " }
42+ config-common = { git = " https://github.com/Azure/iot-identity-service.git" , package = " config-common" , tag = " 1.5.5 " }
4343toml = " 0.8"
44- lazy_static = " 1.4 "
45- regex = " 1.5 "
44+ lazy_static = " 1.5 "
45+ regex = " 1.11 "
0 commit comments