-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 906 Bytes
/
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
[package]
name = "dlt"
version = "0.13.0"
authors = ["Andrew Straw <[email protected]>"]
edition = "2018"
description = "DLT (direct linear transform) algorithm for camera calibration"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/strawlab/dlt"
keywords = ["computer", "vision", "photogrammetry"]
categories = [
"algorithms",
"computer-vision",
"no-std",
"science",
"science::robotics",
]
[dependencies]
nalgebra = { version = "0.33", default-features = false, features = ["libm"] }
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
approx = { version = "0.5", default-features = false }
[features]
default = ["std"]
std = ["nalgebra/std"]
serde-serialize = ["serde", "nalgebra/serde-serialize"]
[package.metadata.docs.rs]
# pass `--all-features`
all-features = true
[workspace]
members = ["dlt-examples"]