Skip to content

Commit 91447c5

Browse files
committed
added auto-publish and version bumped dependencies
1 parent 9062c05 commit 91447c5

7 files changed

Lines changed: 2937 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish to crates.io
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags:
8+
- 'v*'
9+
10+
jobs:
11+
publish:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions-rs/toolchain@v1
16+
with:
17+
toolchain: stable
18+
override: true
19+
- uses: katyo/publish-crates@v2
20+
with:
21+
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.lock

Lines changed: 359 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
[package]
2+
authors = ["Dave Farnham <dave.farnham@icloud.com>", "Ian F. Diks <ian.diks@uni-saarland.de>"]
3+
description = "A Rust port of LAS2 from SVDLIBC"
4+
keywords = ["svd"]
5+
categories = ["algorithms", "data-structures", "mathematics", "science"]
26
name = "single-svdlib"
37
version = "0.1.0"
48
edition = "2021"
9+
license-file = "SVDLIBC-LICENSE.txt"
510

611
[dependencies]
12+
nalgebra-sparse = "0.10.0"
13+
ndarray = "0.16.1"
14+
rand = "0.8.5"
15+
thiserror = "2.0.9"

0 commit comments

Comments
 (0)