-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
61 lines (54 loc) · 1.22 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "lav"
version = "0.8.1"
edition = "2021"
authors = ["Rouven Spreckels <[email protected]>"]
description = "Lane-Associated Vector (LAV): Portable SIMD vector trait as GAT of SIMD lane trait."
documentation = "https://docs.rs/lav"
repository = "https://github.com/qu1x/lav"
readme = "README.md"
license = "MPL-2.0"
keywords = [
"portable-simd",
"simd-traits",
"num-traits",
"computer-graphics",
"geometric-algebra",
]
categories = [
"no-std",
"science",
"graphics",
"mathematics",
"game-development",
]
include = [
"src/**/*.rs",
"katex.html",
"Cargo.toml",
"README.md",
"RELEASES.md",
"LICENSES/*",
]
[package.metadata.docs.rs]
features = ["target-features"]
rustdoc-args = [ "--html-in-header", "katex.html" ]
[package.metadata.playground]
features = ["target-features"]
[dependencies.libm]
version = "0.2.8"
optional = true
[dependencies.target-features]
version = "0.1.6"
optional = true
[lints.rust]
unsafe-code = "forbid"
missing-docs = "forbid"
[lints.rustdoc]
broken-intra-doc-links = "forbid"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
tabs-in-doc-comments = "allow"
type-repetition-in-bounds = "allow"