Skip to content

Commit 75b4785

Browse files
author
Ian
committed
adding new conversion function, version bump
1 parent 0061f66 commit 75b4785

File tree

3 files changed

+394
-19
lines changed

3 files changed

+394
-19
lines changed

Cargo.lock

Lines changed: 259 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "single-utilities"
3-
version = "0.8.7"
3+
version = "0.9.0"
44
edition = "2024"
55
description = "This crate provdes types, traits and utility functions to the single-rust ecosystem that can be universally used. You can also use it within your own ecosystem 👀"
66
homepage = "https://singlerust.com"
@@ -10,9 +10,11 @@ license-file = "LICENSE.md"
1010

1111
[features]
1212
simd = ["dep:simba"]
13-
13+
convert = ["dep:ndarray", "dep:nalgebra"]
1414

1515
[dependencies]
1616
num-traits = "0.2.19"
1717
simba = { version = "0.9.1", optional = true }
1818
anyhow = "1.0.100"
19+
ndarray = { version = "0.17.1", optional = true }
20+
nalgebra = { version = "0.34.1", optional = true }

0 commit comments

Comments
 (0)