-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 826 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
[package]
name = "viewercloud"
version = "0.2.1"
authors = ["Thomaub <github.thomaub@gmail.com>"]
description = "Cross-platform 3D viewer to display autonomous driving poincloud datasets and annotations"
readme = "README.md"
edition = "2018"
license = "MIT"
keywords = ["cli", "gui", "cross-platform", "python", "wasm"]
categories = [" Command-line interface ", "Computer vision", "GUI", "Visualization"]
repository = "https://github.com/ThomAub/viewercloud"
homepage = "https://github.com/ThomAub/viewercloud"
exclude = [".gitignore", "tests/**", "target/**"]
[dependencies]
anyhow = { version = "1.0.31" }
kiss3d = { version = "0.35" }
nalgebra = { version = "0.30" }
clap = { features = ["suggestions", "color", "derive"], version = "4.0.18" }
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/cli.rs"
name = "viewercloud"