Skip to content

Commit

Permalink
chore(ci): repair the CI
Browse files Browse the repository at this point in the history
* replace removed github action
* remove unused code
* bump MSRV because of dependencies
  • Loading branch information
dtantsur committed Apr 14, 2024
1 parent 0c4f17f commit 9674ac9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/functional.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
enabled_services: swift
log_dir: /tmp/devstack-logs
- name: Setup Rust
uses: ATiltedTree/setup-rust@v1
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rust-version: stable
- name: Build the project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, nightly, 1.64.0]
rust: [stable, nightly, 1.65.0]
steps:
- uses: actions/checkout@v4
- name: Install Rust
Expand Down
6 changes: 0 additions & 6 deletions src/identity/protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,6 @@ pub struct CatalogRecord {
pub endpoints: Vec<Endpoint>,
}

/// A root catalog response.
#[derive(Clone, Debug, Deserialize)]
pub struct CatalogRoot {
pub catalog: Vec<CatalogRecord>,
}

/// An authentication token with embedded catalog.
#[derive(Clone, Debug, Deserialize)]
pub struct Token {
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
//!
//! # Requirements
//!
//! This crate requires Rust 2021 edition and rustc version 1.64.0 or newer.
//! This crate requires Rust 2021 edition and rustc version 1.65.0 or newer.
//!
//! OpenStack releases starting with Train are officially supported, although support for
//! releases older than 1.5 years is best-effort and may be dropped without a prior warning
Expand Down Expand Up @@ -87,7 +87,6 @@
overflowing_literals,
path_statements,
patterns_in_fns_without_body,
private_in_public,
trivial_casts,
trivial_numeric_casts,
unconditional_recursion,
Expand Down

0 comments on commit 9674ac9

Please sign in to comment.