Include a serde feature in the shared crate

This commit is contained in:
2024-03-23 13:36:28 +01:00
parent 3d93bf0fda
commit f1962503b8
22 changed files with 134 additions and 281 deletions

View File

@@ -4,26 +4,21 @@ name: default
steps:
- name: build
image: rust:1.68
image: rust:1.77
commands:
- cargo build
volumes:
volumes: &caches
- name: cargo-cache
path: /cache/cargo
environment:
environment: &env
CARGO_HOME: /cache/cargo
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
- name: test
image: rust:1.68
image: rust:1.77
commands:
- cargo test --all-features
volumes:
- name: cargo-cache
path: /cache/cargo
environment:
CARGO_HOME: /cache/cargo
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
volumes: *caches
environment: *env
depends_on:
- build