File tree Expand file tree Collapse file tree 4 files changed +235
-199
lines changed Expand file tree Collapse file tree 4 files changed +235
-199
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: 2
33jobs :
44 build-docs :
55 docker :
6- - image : cimg/rust:1.77.0
6+ - image : cimg/rust:1.77
77 steps :
88 - checkout
99 - run :
@@ -26,31 +26,31 @@ jobs:
2626 command : source tests/environ && tests/codec/runner.sh
2727 tests-bytes :
2828 docker :
29- - image : cimg/rust:1.77.0
29+ - image : cimg/rust:1.77
3030 steps :
3131 - checkout
3232 - run :
3333 name : Run tests with bytes features
3434 command : cargo test --release --features "resp2 resp3 bytes codec convert" --lib
3535 tests-no-bytes :
3636 docker :
37- - image : cimg/rust:1.77.0
37+ - image : cimg/rust:1.77
3838 steps :
3939 - checkout
4040 - run :
4141 name : Run tests without bytes or bytes_utils
4242 command : cargo test --release --features "resp2 resp3 convert" --lib
4343 tests-indexmap :
4444 docker :
45- - image : cimg/rust:1.77.0
45+ - image : cimg/rust:1.77
4646 steps :
4747 - checkout
4848 - run :
4949 name : Run tests with indexmap features
5050 command : cargo test --release --features "index-map resp2 resp3 convert" --lib
5151 clippy-lint :
5252 docker :
53- - image : cimg/rust:1.77.0
53+ - image : cimg/rust:1.77
5454 environment :
5555 CARGO_NET_GIT_FETCH_WITH_CLI : true
5656 steps :
6060 command : cargo clippy --features "bytes convert codec std resp2 resp3" --lib --tests --benches -- -Dwarnings
6161 build-no-std :
6262 docker :
63- - image : cimg/rust:1.77.0
63+ - image : cimg/rust:1.77
6464 steps :
6565 - checkout
6666 - run :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ license = "MIT"
77name = " redis-protocol"
88readme = " README.md"
99repository = " https://github.com/aembke/redis-protocol.rs"
10- version = " 5.0.0 "
10+ version = " 5.0.1 "
1111edition = " 2021"
1212exclude = [" fuzz" , " .circleci" , " benches" ]
1313
@@ -51,7 +51,7 @@ bytes = ["dep:bytes", "bytes-utils"]
5151decode-logs = []
5252alloc = [" nom/alloc" ]
5353std = [" cookie-factory/default" , " nom/default" ]
54- codec = [" tokio-util" , " bytes" , " resp2 " , " resp3 " ]
54+ codec = [" tokio-util" , " bytes" ]
5555convert = []
5656
5757[lib ]
@@ -74,4 +74,4 @@ test = true
7474
7575# [[bench]]
7676# name = "resp3_decode"
77- # harness = false
77+ # harness = false
You can’t perform that action at this time.
0 commit comments