diff --git a/Cargo.lock b/Cargo.lock index 3f0a58c6603ba..fa3b7b5652018 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2468,7 +2468,7 @@ dependencies = [ "serde_derive", "serde_json", "simpl", - "smpl_jwt", + "smpl_jwt 0.6.1", "time 0.2.27", "tokio", ] @@ -3346,9 +3346,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.104" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b2f96d100e1cf1929e7719b7edb3b90ab5298072638fccd77be9ce942ecdfce" +checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" [[package]] name = "libflate" @@ -4166,6 +4166,15 @@ dependencies = [ "syn 1.0.76", ] +[[package]] +name = "num_threads" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" +dependencies = [ + "libc", +] + [[package]] name = "number_prefix" version = "0.4.0" @@ -6258,6 +6267,22 @@ dependencies = [ "time 0.2.27", ] +[[package]] +name = "smpl_jwt" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95b6ff8c21c74ce7744643a7cddbb02579a44f1f77e4316bff1ddb741aca8ac9" +dependencies = [ + "base64 0.13.0", + "log", + "openssl", + "serde", + "serde_derive", + "serde_json", + "simpl", + "time 0.3.9", +] + [[package]] name = "snafu" version = "0.6.10" @@ -6736,6 +6761,16 @@ dependencies = [ "winapi 0.3.9", ] +[[package]] +name = "time" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd" +dependencies = [ + "libc", + "num_threads", +] + [[package]] name = "time-macros" version = "0.1.1" @@ -7656,7 +7691,7 @@ dependencies = [ "serde_yaml", "shared", "smallvec", - "smpl_jwt", + "smpl_jwt 0.7.1", "snafu", "snap", "socket2 0.4.2", diff --git a/Cargo.toml b/Cargo.toml index 2870537c018db..75d454d4ab172 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -172,7 +172,7 @@ prost-types = { version = "0.8", default-features = false } # GCP goauth = { version = "0.10.0", default-features = false, optional = true } gouth = { version = "0.2.1", default-features = false, optional = true } -smpl_jwt = { version = "0.6.1", default-features = false, optional = true } +smpl_jwt = { version = "0.7.1", default-features = false, optional = true } # API async-graphql = { version = "2.10.4", default-features = false, optional = true, features = ["chrono"] }