@@ -112,29 +112,29 @@ jobs:
112112 working-directory : object_store
113113 run : cargo fmt --all -- --check
114114
115- msrv :
116- name : Verify MSRV (Minimum Supported Rust Version)
117- runs-on : ubuntu-latest
118- container :
119- image : amd64/rust
120- steps :
121- - uses : actions/checkout@v4
122- - name : Setup Rust toolchain
123- uses : ./.github/actions/setup-builder
124- - name : Install cargo-msrv
125- run : cargo install cargo-msrv
126- - name : Downgrade object_store dependencies
127- working-directory : object_store
128- # Necessary because tokio 1.30.0 updates MSRV to 1.63
129- # and url 2.5.1, updates to 1.67
130- run : |
131- cargo update -p tokio --precise 1.29.1
132- cargo update -p url --precise 2.5.0
133- - name : Check all packages
134- run : |
135- # run `cargo msrv verify --manifest-path "path/to/Cargo.toml"` to see problematic dependencies
136- find . -mindepth 2 -name Cargo.toml | while read -r dir
137- do
138- echo "Checking package '$dir'"
139- cargo msrv verify --manifest-path "$dir" --output-format=json || exit 1
140- done
115+ # msrv:
116+ # name: Verify MSRV (Minimum Supported Rust Version)
117+ # runs-on: ubuntu-latest
118+ # container:
119+ # image: amd64/rust
120+ # steps:
121+ # - uses: actions/checkout@v4
122+ # - name: Setup Rust toolchain
123+ # uses: ./.github/actions/setup-builder
124+ # - name: Install cargo-msrv
125+ # run: cargo install cargo-msrv
126+ # - name: Downgrade object_store dependencies
127+ # working-directory: object_store
128+ # # Necessary because tokio 1.30.0 updates MSRV to 1.63
129+ # # and url 2.5.1, updates to 1.67
130+ # run: |
131+ # cargo update -p tokio --precise 1.29.1
132+ # cargo update -p url --precise 2.5.0
133+ # - name: Check all packages
134+ # run: |
135+ # # run `cargo msrv verify --manifest-path "path/to/Cargo.toml"` to see problematic dependencies
136+ # find . -mindepth 2 -name Cargo.toml | while read -r dir
137+ # do
138+ # echo "Checking package '$dir'"
139+ # cargo msrv verify --manifest-path "$dir" --output-format=json || exit 1
140+ # done
0 commit comments