diff --git a/Cargo.lock b/Cargo.lock index 5ed156d6..ea6a1996 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3387,9 +3387,9 @@ dependencies = [ [[package]] name = "schemars" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6b5a3c80cea1ab61f4260238409510e814e38b4b563c06044edf91e7dc070e3" +checksum = "7d21ecb263bf75fc69d5e74b0f2a60b6dd80cfd9fb0eba15c4b9d1104ceffc77" dependencies = [ "chrono", "dyn-clone", @@ -3401,9 +3401,9 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41ae4dce13e8614c46ac3c38ef1c0d668b101df6ac39817aebdaa26642ddae9b" +checksum = "219b924f5b39f25b7d7c9203873a2698fdac8db2b396aaea6fa099b699cc40e9" dependencies = [ "proc-macro2", "quote", @@ -3515,9 +3515,9 @@ dependencies = [ [[package]] name = "serde_derive_internals" -version = "0.25.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dbab34ca63057a1f15280bdf3c39f2b1eb1b54c17e98360e511637aef7418c6" +checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" dependencies = [ "proc-macro2", "quote", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 38fbfccd..98ef1c89 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -11,7 +11,7 @@ futures = "0.3.21" anyhow = "1.0.57" clap = { version = "3.1.18", features = ["derive"] } dotenv = "0.15.0" -schemars = { version = "0.8.8", features = ["url", "chrono"] } +schemars = { version = "0.8.9", features = ["url", "chrono"] } tower = { version = "0.4.12", features = ["full"] } hyper = { version = "0.14.18", features = ["full"] } serde_yaml = "0.8.24" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 36e6e7f2..cd40b624 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -13,7 +13,7 @@ async-trait = "0.1.53" thiserror = "1.0.31" anyhow = "1.0.57" -schemars = { version = "0.8.8", features = ["url", "chrono"] } +schemars = { version = "0.8.9", features = ["url", "chrono"] } figment = { version = "0.10.6", features = ["env", "yaml", "test"] } chrono = { version = "0.4.19", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] } diff --git a/crates/iana/Cargo.toml b/crates/iana/Cargo.toml index d62e925d..46977625 100644 --- a/crates/iana/Cargo.toml +++ b/crates/iana/Cargo.toml @@ -7,5 +7,5 @@ license = "Apache-2.0" [dependencies] serde = "1.0.137" -schemars = "0.8.8" +schemars = "0.8.9" parse-display = "0.5.5" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index b2757498..574fd08d 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -22,7 +22,7 @@ pkcs1 = { version = "0.4.0", features = ["pem", "pkcs8"] } pkcs8 = { version = "0.9.0", features = ["pem", "std"] } rand = "0.8.5" rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" } -schemars = "0.8.8" +schemars = "0.8.9" sec1 = "0.3.0" serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81"