File tree Expand file tree Collapse file tree 6 files changed +37
-20
lines changed Expand file tree Collapse file tree 6 files changed +37
-20
lines changed Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - main
10+ workflow_dispatch :
11+
12+ concurrency :
13+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
14+ cancel-in-progress : true
15+
16+ jobs :
17+ check :
18+ runs-on : ubuntu-latest
19+ steps :
20+ - uses : actions/checkout@v4
21+ - run : rustup toolchain install stable --profile=minimal --component clippy --component rustfmt
22+ - run : cargo clippy -- -D warnings
23+ - run : cargo fmt --all -- --check
24+
25+ test :
26+ runs-on : ubuntu-latest
27+ steps :
28+ - uses : actions/checkout@v4
29+ - run : rustup toolchain install stable --profile=minimal
30+ - run : cargo test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11[package ]
22name = " blas"
3- version = " 0.22.0"
3+ version = " 0.23.0"
4+ edition = " 2021"
45license = " Apache-2.0/MIT"
56authors = [
67 " Andrew Straw <[email protected] >" ,
@@ -25,5 +26,5 @@ version = "0.4"
2526default-features = false
2627
2728[dependencies .blas-sys ]
28- version = " 0.7 "
29+ version = " 0.8 "
2930default-features = false
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ The following two notices apply to every file of the project.
1111## The Apache License
1212
1313```
14- Copyright 2014–2021 The blas Developers
14+ Copyright 2014–2025 The blas Developers
1515
1616Licensed under the Apache License, Version 2.0 (the “License”); you may not use
1717this file except in compliance with the License. You may obtain a copy of the
@@ -28,7 +28,7 @@ specific language governing permissions and limitations under the License.
2828## The MIT License
2929
3030```
31- Copyright 2014–2021 The blas Developers
31+ Copyright 2014–2025 The blas Developers
3232
3333Permission is hereby granted, free of charge, to any person obtaining a copy of
3434this software and associated documentation files (the “Software”), to deal in
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ will be licensed according to the terms given in [LICENSE.md](LICENSE.md).
5151[ architecture ] : https://blas-lapack-rs.github.io/architecture
5252[ blas ] : https://en.wikipedia.org/wiki/BLAS
5353
54- [ build-img ] : https://travis-ci.org /blas-lapack-rs/blas. svg?branch=master
55- [ build-url ] : https://travis-ci.org /blas-lapack-rs/blas
54+ [ build-img ] : https://github.com /blas-lapack-rs/blas/actions/workflows/build.yml/badge. svg
55+ [ build-url ] : https://github.com /blas-lapack-rs/blas/actions/workflows/build.yml
5656[ documentation-img ] : https://docs.rs/blas/badge.svg
5757[ documentation-url ] : https://docs.rs/blas
5858[ package-img ] : https://img.shields.io/crates/v/blas.svg
Original file line number Diff line number Diff line change 4444//! [blas]: https://en.wikipedia.org/wiki/BLAS
4545
4646extern crate blas_sys as ffi;
47- extern crate libc;
4847extern crate num_complex as num;
4948
5049use libc:: c_char;
You can’t perform that action at this time.
0 commit comments