-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 740 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
[package]
name = "slamkit-rs"
version = "0.3.0"
edition = "2024"
description = "A Rust library for implementing SLAM systems"
repository = "https://github.com/mostlykiguess/slam-rs"
license = "MIT"
readme = "README.md"
keywords = ["slam", "rust", "computer-vision", "visual-slam"]
categories = ["computer-vision", "science::robotics"]
[dependencies]
opencv = "0.97.1"
nalgebra = { version = "0.34.1", features = ["serde-serialize"] }
serde = "1.0.228"
serde_json = "1.0.145"
rerun = { version = "0.26.2", optional = true }
clap = { version = "4.5.51", features = ["derive"] }
tch = { version = "0.22.0", optional = true }
approx = "0.5.1"
[dev-dependencies]
rand = "0.8"
[features]
default = []
rerun = ["dep:rerun"]
depth = ["dep:tch"]