diff --git a/Cargo.lock b/Cargo.lock index 2b690b9..39e3920 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1530,6 +1530,7 @@ dependencies = [ "opentelemetry-semantic-conventions", "opentelemetry_sdk", "prost", + "reqwest", "thiserror", "tokio", "tonic", @@ -1924,6 +1925,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.21.10", + "rustls-native-certs 0.6.3", "rustls-pemfile 1.0.4", "serde", "serde_json", @@ -2027,6 +2029,18 @@ dependencies = [ "zeroize", ] +[[package]] +name = "rustls-native-certs" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" +dependencies = [ + "openssl-probe", + "rustls-pemfile 1.0.4", + "schannel", + "security-framework", +] + [[package]] name = "rustls-native-certs" version = "0.7.0" @@ -2279,9 +2293,9 @@ dependencies = [ [[package]] name = "service_conventions" -version = "0.0.8" +version = "0.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d5241a9f6b6afcb6c3c04307580291badfee689452dffbf719866127e0aec86" +checksum = "f370bcb86098d6e4931e838cf560e271d4f4438cc5db42a8dedcb67cd14c4fa3" dependencies = [ "anyhow", "async-trait", @@ -2668,7 +2682,7 @@ dependencies = [ "percent-encoding", "pin-project", "prost", - "rustls-native-certs", + "rustls-native-certs 0.7.0", "rustls-pemfile 2.1.1", "rustls-pki-types", "tokio", diff --git a/Cargo.toml b/Cargo.toml index b7fce91..03b96d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ once_cell = "1.19.0" openidconnect = "3.5.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -service_conventions = { version = "0.0.8", features = ["tracing", "oidc"]} +service_conventions = { version = "0.0.10", features = ["tracing", "oidc"]} #service_conventions = { git = "https://github.com/philipcristiano/rust_service_conventions.git", branch = "groups", features = ["tracing", "oidc"]} tokio = { version = "1.37.0", features = ["full"] } toml = "0.8.12"