File tree Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,15 @@ jobs:
15
15
steps :
16
16
- checkout
17
17
- restore_cache :
18
- key : cargo-lock-{{ checksum "Cargo.lock" }}
18
+ key : cargo-lock-2- {{ checksum "Cargo.lock" }}
19
19
- run :
20
20
name : " Build"
21
- command : " cargo build --release"
21
+ command : " cargo build"
22
+ - run :
23
+ name : " Test"
24
+ command : " cargo test"
22
25
- save_cache :
23
- key : cargo-lock-{{ checksum "Cargo.lock" }}
26
+ key : cargo-lock-2- {{ checksum "Cargo.lock" }}
24
27
paths :
25
28
- target
26
29
- ~/.cargo
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ edition = "2021"
8
8
[dependencies ]
9
9
tokio = { version = " 1" , features = [" full" ] }
10
10
bytes = " 1"
11
- md-5 = " * "
12
- bb8 = " * "
13
- async-trait = " * "
14
- rand = " * "
11
+ md-5 = " 0.10 "
12
+ bb8 = " 0.7 "
13
+ async-trait = " 0.1 "
14
+ rand = " 0.8 "
15
15
chrono = " 0.4"
16
- sha-1 = " * "
17
- toml = " * "
18
- serde = " * "
19
- serde_derive = " * "
16
+ sha-1 = " 0.10 "
17
+ toml = " 0.5 "
18
+ serde = " 1 "
19
+ serde_derive = " 1 "
20
20
regex = " 1"
You can’t perform that action at this time.
0 commit comments