-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (37 loc) · 1.19 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
43
44
45
[package]
name = "tensr"
version = "0.1.0"
authors = ["Toby Davis <[email protected]>"]
description = "A high-performance, cross-platform, multi-backend tensor/array library for Rust"
homepage = "https://github.com/Pencilcaseman/tensr"
repository = "https://github.com/Pencilcaseman/tensr"
documentation = "https://docs.rs/tensr"
readme = "README.md"
keywords = ["array", "tensor", "multidimensional", "ndarray"]
categories = ["data-structures", "science", "concurrency"]
license = "MIT OR Apache-2.0"
edition = "2021"
exclude = [".github"]
[features]
[dependencies]
tensr_proc_macros = { path = "crates/tensr_proc_macros", version = "0.1.0" }
paste = "1.0"
rayon = "1.10.0"
num-traits = { version = "0.2.19", features = ["i128"] }
[workspace]
members = ["crates/*"]
[dev-dependencies]
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = 3
strip = true
debug = false
debug-assertions = false
[lints.clippy]
# Allow #[inline(always)] -- I have made the bold assumption that I know what I am doing
inline_always = { level = "allow", priority = 1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
missing_docs = { level = "warn", priority = 2 }