Skip to content

Commit

Permalink
Merge pull request #221 from appgate/async_trait
Browse files Browse the repository at this point in the history
Use async_trait
  • Loading branch information
lepiolet authored Nov 29, 2023
2 parents 238efc3 + 0afc416 commit 530a9f8
Show file tree
Hide file tree
Showing 15 changed files with 478 additions and 617 deletions.
17 changes: 10 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions k8s/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "1.1.1"
version: "1.1.2"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.1.1"
appVersion: "1.1.2"
4 changes: 2 additions & 2 deletions k8s/crd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Helm chart for SDP Kubernetes Injector CRD
type: application

# Chart version should remain consistent with ../chart/Chart.yaml
version: "1.1.1"
version: "1.1.2"

# Chart appVersion should be the same as ../chart/Chart.yaml
appVersion: "1.1.1"
appVersion: "1.1.2"
2 changes: 1 addition & 1 deletion sdp-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp-common"
version = "1.1.1"
version = "1.1.2"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
3 changes: 2 additions & 1 deletion sdp-device-id-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp-device-id-service"
version = "1.1.1"
version = "1.1.2"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -20,3 +20,4 @@ uuid = { version = "1.6.1", features = ["v4", "fast-rng"] }
log = "0.4.20"
futures = "^0.3.29"
log4rs = "1.2.0"
async-trait = "0.1.74"
Loading

0 comments on commit 530a9f8

Please sign in to comment.