-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
65 lines (58 loc) · 1.7 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
62
63
64
65
[package]
name = "trackball"
version = "0.15.0"
rust-version = "1.79.0"
authors = ["Rouven Spreckels <rs@qu1x.dev>"]
edition = "2021"
description = "Virtual Trackball Orbiting via the Exponential Map"
documentation = "https://docs.rs/trackball"
repository = "https://github.com/qu1x/trackball"
build = "build.rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [
"virtual-trackball",
"exponential-map",
"quaternion",
"arcball",
"camera",
]
categories = [
"no-std",
"graphics",
]
include = [
"src/**/*.rs",
"c11/src/**/*.[hc]",
"build.rs",
"Cargo.toml",
"README.md",
"RELEASES.md",
"LICENSES/*",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
heapless = { version = "0.8.0", default-features = false }
nalgebra = { version = "0.33.2", default-features = false, features = ["libm-force"] }
simba = { version = "0.9.0", default-features = false, features = ["libm"] }
approx = { version = "0.5.1", default-features = false }
serde = { version = "1.0.203", default-features = false, features = ["derive"], optional = true }
rkyv = { version = "0.7.45", default-features = false, optional = true }
[features]
glam = ["nalgebra/convert-glam029"]
serde = ["dep:serde", "nalgebra/serde-serialize-no-std", "simba/serde_serialize"]
rkyv = ["dep:rkyv", "nalgebra/rkyv-serialize-no-std", "simba/rkyv-serialize"]
[build-dependencies]
cc = { version = "1.1.31", optional = true }
[lints.rust]
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"
similar_names = "allow"