Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 18 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:

jobs:
fmt:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -44,14 +44,16 @@ jobs:
fail-fast: false
matrix:
toolchain:
- "1.56"
- stable
- nightly
versions:
- ""
- "-Zminimal-versions"
include:
- toolchain: "1.56"
versions: "-Zminimal-versions"

runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -73,7 +75,7 @@ jobs:
- run: cargo clippy --workspace --all-targets -- -D warnings

clippy-pedantic:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -88,7 +90,7 @@ jobs:
- run: cargo clippy --workspace --all-targets -- -D clippy::pedantic

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -108,7 +110,7 @@ jobs:

miri:
name: "Miri"
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -123,9 +125,13 @@ jobs:

- name: Test (tzdb)
run: cargo miri test --workspace --all-targets
env:
MIRIFLAGS: "-Zmiri-disable-isolation"

- name: Test (testing)
run: cd testing && cargo miri test --workspace --all-targets
env:
MIRIFLAGS: "-Zmiri-disable-isolation"

cross-miri:
strategy:
Expand All @@ -138,7 +144,7 @@ jobs:
- powerpc64-unknown-linux-gnu
- powerpc64le-unknown-linux-gnu

runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -154,9 +160,11 @@ jobs:

- name: Test
run: cargo miri test --workspace --target ${{ matrix.target }}
env:
MIRIFLAGS: "-Zmiri-disable-isolation"

doc:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -174,7 +182,7 @@ jobs:
RUSTDOCFLAGS: -D warnings --cfg docsrs

audit:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -191,7 +199,7 @@ jobs:

devskim:
name: DevSkim
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand Down
6 changes: 3 additions & 3 deletions tzdb_data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tzdb_data"
version = "0.1.6"
version = "0.1.7"
edition = "2018"
authors = ["René Kijewski <crates.io@k6i.de>"]
repository = "https://github.com/Kijewski/tzdb"
Expand All @@ -9,10 +9,10 @@ license = "MIT-0 OR MIT OR Apache-2.0"
keywords = ["timezone", "no_std"]
categories = ["date-and-time", "no-std"]
readme = "README.md"
# rust-version = "1.56"
rust-version = "1.56"

[dependencies]
tz-rs = { version = "^0.6.14", default-features = false, features = ["const"] }
tz-rs = { version = "0.6.14", default-features = false, features = ["const"] }

[package.metadata.docs.rs]
all-features = true
Expand Down
1 change: 1 addition & 0 deletions tzdb_data/LICENSE.Apache
1 change: 1 addition & 0 deletions tzdb_data/LICENSE.MIT
1 change: 1 addition & 0 deletions tzdb_data/LICENSE.MIT-0
16 changes: 0 additions & 16 deletions tzdb_data/LICENSE.md

This file was deleted.

2 changes: 1 addition & 1 deletion tzdb_data/src/generated
Submodule generated updated from 29b719 to c38fad
5 changes: 2 additions & 3 deletions tzdb_data/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// SPDX-License-Identifier: MIT-0
//
// Copyright 2022-2024 René Kijewski <crates.io@k6i.de>
// SPDX-License-Identifier: MIT-0 OR MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2022-2026 René Kijewski <crates.io@k6i.de>

#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(unknown_lints)]
Expand Down
Loading