-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (35 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[workspace]
members = ["crates/*"]
[workspace.package]
version = "0.3.0"
authors = ["Ross MacArthur <ross@macarthur.io>"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/rossmacarthur/vectrix"
license = "MIT OR Apache-2.0"
[package]
name = "vectrix"
description = "A stack-allocated matrix type implemented with const generics"
keywords = ["math", "matrix", "vector", "linear-algebra"]
categories = ["mathematics", "science", "no-std"]
include = ["benches/**/*", "src/**/*", "LICENSE-*", "README.md"]
version.workspace = true
authors.workspace = true
edition.workspace = true
readme.workspace = true
repository.workspace = true
license.workspace = true
[dependencies]
stride = { version = "0.3.0", path = "crates/stride" }
vectrix-macro = { version = "0.3.0", path = "crates/macro", optional = true }
[dev-dependencies]
criterion = "0.4.0"
rand = "0.8.5"
rand_isaac = "0.3.0"
[features]
default = ["macro", "std"]
std = []
macro = ["dep:vectrix-macro"]
[[bench]]
name = "euler"
harness = false