Skip to content

Commit

Permalink
Merge pull request #56 from CleverCloud/devel/fdubois/chore/update-deps
Browse files Browse the repository at this point in the history
chore: update dependencies
  • Loading branch information
FlorentinDUBOIS authored Jul 31, 2023
2 parents 50ec1a5 + 24fdcd6 commit a1b7f50
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
rust:
- 1.60.0
- 1.64.0
- stable
- beta
- nightly
Expand All @@ -31,7 +31,7 @@ jobs:
fail-fast: true
matrix:
rust:
- 1.60.0
- 1.64.0
- stable
- beta
- nightly
Expand Down
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "clevercloud-sdk"
description = "A rust client and structures to interact with the Clever-Cloud API."
version = "0.11.0"
edition = "2021"
rust-version = "1.60.0"
rust-version = "1.64.0"
authors = ["Florentin Dubois <florentin.dubois@clever-cloud.com>"]
license-file = "LICENSE"
readme = "README.md"
Expand All @@ -19,25 +19,25 @@ keywords = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-trait = "^0.1.68"
chrono = { version = "^0.4.25", features = ["serde"] }
oauth10a = "^1.5.0"
log = { version = "^0.4.18", optional = true }
hyper = { version = "^0.14.26", default-features = false }
async-trait = "^0.1.72"
chrono = { version = "^0.4.26", features = ["serde"] }
oauth10a = "^1.5.1"
log = { version = "^0.4.19", optional = true }
hyper = { version = "^0.14.27", default-features = false }
schemars = { version = "^0.8.12", features = [
"chrono",
"indexmap1",
"uuid1",
"bytes",
"url",
], optional = true }
serde = { version = "^1.0.163", features = ["derive"] }
serde_repr = "^0.1.12"
serde_json = "^1.0.96"
thiserror = "^1.0.40"
serde = { version = "^1.0.179", features = ["derive"] }
serde_repr = "^0.1.16"
serde_json = "^1.0.104"
thiserror = "^1.0.44"
tracing = { version = "^0.1.37", optional = true }
tracing-futures = { version = "^0.2.5", optional = true }
uuid = { version = "^1.3.3", features = ["serde", "v4"] }
uuid = { version = "^1.4.1", features = ["serde", "v4"] }

[features]
default = ["logging"]
Expand Down
14 changes: 7 additions & 7 deletions examples/cleverctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-trait = "^0.1.68"
async-trait = "^0.1.72"
clevercloud-sdk = { path = "../..", features = ["tokio", "metrics", "trace", "jsonschemas"] }
clap = { version = "^4.3.0", features = ["derive"] }
clap = { version = "^4.3.19", features = ["derive"] }
config = "^0.13.3"
paw = "^1.0.0"
serde = { version = "^1.0.163", features = ["derive"] }
serde_json = "^1.0.96"
serde_yaml = "^0.9.21"
thiserror = "^1.0.40"
tokio = { version = "^1.28.2", features = ["full"] }
serde = { version = "^1.0.179", features = ["derive"] }
serde_json = "^1.0.104"
serde_yaml = "^0.9.25"
thiserror = "^1.0.44"
tokio = { version = "^1.29.1", features = ["full"] }
tracing = "^0.1.37"
tracing-subscriber = { version = "^0.3.17", default-features = false, features = ["std", "ansi", "tracing-log"] }

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.60.0
1.64.0
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ where
Self {
endpoint: None,
credentials: None,
phantom: PhantomData::default(),
phantom: Default::default(),
}
}
}
Expand Down

0 comments on commit a1b7f50

Please sign in to comment.