Skip to content

Commit 9fe50c4

Browse files
committed
rebuild
1 parent 3cc41ab commit 9fe50c4

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@ jobs:
1515
steps:
1616
- checkout
1717
- restore_cache:
18-
key: cargo-lock-{{ checksum "Cargo.lock" }}
18+
key: cargo-lock-2-{{ checksum "Cargo.lock" }}
1919
- run:
2020
name: "Build"
21-
command: "cargo build --release"
21+
command: "cargo build"
22+
- run:
23+
name: "Test"
24+
command: "cargo test"
2225
- save_cache:
23-
key: cargo-lock-{{ checksum "Cargo.lock" }}
26+
key: cargo-lock-2-{{ checksum "Cargo.lock" }}
2427
paths:
2528
- target
2629
- ~/.cargo

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ edition = "2021"
88
[dependencies]
99
tokio = { version = "1", features = ["full"] }
1010
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"
1515
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"
2020
regex = "1"

0 commit comments

Comments
 (0)