Skip to content

Commit

Permalink
Fix up tests and feature matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
lseelenbinder committed Jan 30, 2024
1 parent 43c5175 commit 6345514
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ jobs:
- run: cargo test --features http-async
- run: cargo test --features mmap-async-tokio
- run: cargo test --features tilejson
- run: cargo test --features s3-async
- run: cargo test --features s3-async-rustls
- run: cargo test
2 changes: 2 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ test:
cargo test --features http-async
cargo test --features mmap-async-tokio
cargo test --features tilejson
cargo test --features s3-async
cargo test --features s3-async-rustls
cargo test
RUSTDOCFLAGS="-D warnings" cargo doc --no-deps

Expand Down
1 change: 1 addition & 0 deletions src/async_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ use crate::header::{HEADER_SIZE, MAX_INITIAL_BYTES};
use crate::http::HttpBackend;
#[cfg(feature = "mmap-async-tokio")]
use crate::mmap::MmapBackend;
#[cfg(any(feature = "s3-async-rustls", feature = "s3-async"))]
use crate::s3::S3Backend;
use crate::tile::tile_id;
use crate::{Compression, Header};
Expand Down

0 comments on commit 6345514

Please sign in to comment.