Skip to content

Commit 5ffe630

Browse files
authored
Merge pull request #18 from SakaDream/update-dependencies
Update dependencies
2 parents f40d261 + 5664ed8 commit 5ffe630

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/cross_platforms_action.yml renamed to .github/workflows/ci_action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Cross-platform CICD
1+
name: CI
22

33
on: [push, pull_request]
44

55
jobs:
66
cicd-linux:
7-
name: CICD Linux
7+
name: CI Linux
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout sources
@@ -74,7 +74,7 @@ jobs:
7474
args: --release
7575

7676
cicd-windows:
77-
name: CICD Windows
77+
name: CI Windows
7878
runs-on: windows-latest
7979
steps:
8080
- name: Checkout sources
@@ -152,7 +152,7 @@ jobs:
152152
RUSTFLAGS: -L D:\a\actix-web-rest-api-with-jwt\actix-web-rest-api-with-jwt\libs
153153

154154
cicd-macos:
155-
name: CICD macOS
155+
name: CI macOS
156156
runs-on: macos-latest
157157
steps:
158158
- name: Checkout sources

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@ edition = "2018"
66

77
[dependencies]
88
actix-web = "2.0.0"
9-
actix-rt = "1.0.0"
9+
actix-rt = "1.1.1"
1010
actix-service = "1.0.5"
1111
actix-cors = "0.2.0"
1212
log = "0.4.8"
1313
env_logger = "0.7.1"
1414
diesel_migrations = "1.4.0"
15-
serde = "1.0.104"
16-
serde_derive = "1.0.104"
17-
serde_json = "1.0.48"
15+
serde = "1.0.111"
16+
serde_derive = "1.0.111"
17+
serde_json = "1.0.53"
1818
dotenv = "0.15.0"
19-
futures = "0.3.4"
20-
failure = "0.1.7"
21-
derive_more = "0.99.3"
19+
futures = "0.3.5"
20+
failure = "0.1.8"
21+
derive_more = "0.99.7"
2222
jsonwebtoken = "7.1.0"
23-
bcrypt = "0.6.2"
23+
bcrypt = "0.8.0"
2424

2525
[dependencies.diesel]
26-
version = "1.4.3"
26+
version = "1.4.4"
2727
features = ["postgres", "r2d2", "chrono"]
2828

2929
[dependencies.chrono]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Actix-web REST API with JWT
22

3-
![Cross-platform CICD](https://github.com/SakaDream/actix-web-rest-api-with-jwt/workflows/Cross-platform%20CICD/badge.svg)
3+
![CI](https://github.com/SakaDream/actix-web-rest-api-with-jwt/workflows/CI/badge.svg)
44
![Docker CICD](https://github.com/SakaDream/actix-web-rest-api-with-jwt/workflows/Docker%20CICD/badge.svg)
55

66
A simple CRUD backend app using Actix-web, Diesel and JWT

0 commit comments

Comments
 (0)