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
10 changes: 5 additions & 5 deletions .github/workflows/functional.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
matrix:
name: ["master"]
openstack_version: ["master"]
ubuntu_version: ["22.04"]
ubuntu_version: ["24.04"]
include:
- name: "epoxy"
openstack_version: "stable/2025.1"
ubuntu_version: "22.04"
- name: "dolmatian"
openstack_version: "stable/2024.2"
ubuntu_version: "22.04"
- name: "caracal"
openstack_version: "stable/2024.1"
ubuntu_version: "22.04"
- name: "bobcat"
openstack_version: "stable/2023.2"
ubuntu_version: "22.04"
runs-on: ubuntu-${{ matrix.ubuntu_version }}
name: Functional tests on OpenStack ${{ matrix.name }}
name: Functional tests on OpenStack ${{ matrix.name }} (${{ matrix.openstack_version }})
steps:
- name: Checkout the project
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [stable, nightly, 1.76.0]
rust: [stable, nightly, 1.82.0]
flags:
- ""
- "--no-default-features"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "Apache-2.0"
keywords = ["api", "cloud", "openstack"]
categories = ["api-bindings"]
edition = "2021"
rust-version = "1.71"
rust-version = "1.82"

[features]
default = ["baremetal", "block-storage", "compute", "image", "network", "native-tls", "object-storage"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
//!
//! # Requirements
//!
//! This crate requires Rust 2022 edition and rustc version 1.76.0 or newer.
//! This crate requires Rust 2022 edition and rustc version 1.82.0 or newer.

#![crate_name = "openstack"]
#![crate_type = "lib"]
Expand Down
Loading