From 2a5c2f9e302aba61ea4a8422bc1c06bdcf255ea9 Mon Sep 17 00:00:00 2001 From: Florentin Dubois Date: Wed, 10 Aug 2022 17:27:49 +0200 Subject: [PATCH 1/2] Update dependencies * Bump clap to 3.2.16 * Bump serde to 1.0.143 * Bump serde_repr to 0.1.9 * Bump thiserror to 1.0.32 * Bump tracing to 0.1.36 Signed-off-by: Florentin Dubois --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 89647a7..43548ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,8 +19,8 @@ keywords = [ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -async-trait = "^0.1.56" -oauth10a = "^1.3.11" +async-trait = "^0.1.57" +oauth10a = "^1.3.12" log = { version = "^0.4.17", optional = true } hyper = { version = "^0.14.20", default-features = false } schemars = { version = "^0.8.10", features = [ @@ -30,10 +30,10 @@ schemars = { version = "^0.8.10", features = [ "bytes", "url", ], optional = true } -serde = { version = "^1.0.139", features = ["derive"] } -serde_repr = "^0.1.8" -thiserror = "^1.0.31" -tracing = { version = "^0.1.35", optional = true } +serde = { version = "^1.0.143", features = ["derive"] } +serde_repr = "^0.1.9" +thiserror = "^1.0.32" +tracing = { version = "^0.1.36", optional = true } tracing-futures = { version = "^0.2.5", optional = true } uuid = { version = "^1.1.2", features = ["serde", "v4"] } From 1bc226556828874744e70f04cc640c8df9bdd457 Mon Sep 17 00:00:00 2001 From: Florentin Dubois Date: Wed, 10 Aug 2022 17:32:23 +0200 Subject: [PATCH 2/2] Update cleverctl dependencies * Bump async-trait to 0.1.57 * Bump clap to 3.2.16 * Bump config to 0.13.2 * Bump serde to 1.0.143 * Bump serde_json to 1.0.83 * Bump serde_yaml to 0.9.4 * Bump thiserror to 1.0.32 * Bump tokio to 1.20.1 * Bump tracing to 0.1.36 * Bump tracing-subscriber to 0.3.15 Signed-off-by: Florentin Dubois --- examples/cleverctl/Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/cleverctl/Cargo.toml b/examples/cleverctl/Cargo.toml index 3791137..ba3249c 100644 --- a/examples/cleverctl/Cargo.toml +++ b/examples/cleverctl/Cargo.toml @@ -7,18 +7,18 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -async-trait = "^0.1.56" +async-trait = "^0.1.57" clevercloud-sdk = { path = "../..", features = ["tokio", "metrics", "trace", "jsonschemas"] } -clap = { version = "^3.2.12", features = ["derive"] } -config = "^0.13.1" +clap = { version = "^3.2.16", features = ["derive"] } +config = "^0.13.2" paw = "^1.0.0" -serde = { version = "^1.0.139", features = ["derive"] } -serde_json = "^1.0.82" -serde_yaml = "^0.8.26" -thiserror = "^1.0.31" -tokio = { version = "^1.20.0", features = ["full"] } -tracing = "^0.1.35" -tracing-subscriber = { version = "^0.3.14", default-features = false, features = ["std", "ansi", "tracing-log"] } +serde = { version = "^1.0.143", features = ["derive"] } +serde_json = "^1.0.83" +serde_yaml = "^0.9.4" +thiserror = "^1.0.32" +tokio = { version = "^1.20.1", features = ["full"] } +tracing = "^0.1.36" +tracing-subscriber = { version = "^0.3.15", default-features = false, features = ["std", "ansi", "tracing-log"] } [profile.release] lto = true