-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 845 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 845 Bytes
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
[package]
name = "rtsam"
version = "0.1.4"
authors = ["Fan Jiang <i@fanjiang.me>"]
edition = "2018"
repository = "https://github.com/ProfFan/rtsam"
description = "Real Time Smoothing and Mapping (RTSAM) in Rust."
license = "BSD-3-Clause"
[dependencies]
nalgebra = "0.31.1"
typenum = "1.14.0"
alga = "0.9.3"
num = "0.4.0"
approx = "0.5.0"
inkwell = { version = "0.1.0-beta4", optional = true }
llvm-sys = { version = "130.0.0", optional = true }
[dev-dependencies]
finitediff = "0.1.4"
[features]
# The default set of optional packages. Most people will want to use these
# packages, but they are strictly optional. Note that `session` is not a package
# but rather another feature listed in this manifest.
default = []
codegen = ["inkwell", "llvm-sys"]
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"katex.html",
]