-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (48 loc) · 1.45 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
[package]
name = "in-summer-we-render"
version = "0.1.0"
authors = ["weitsang <[email protected]>", "hungkhoaitay <[email protected]>", "giterator <[email protected]>"]
edition = "2018"
description = "This project aims to design and develop a set of robust and high performance Unix CLI tools for analyzing, processing, debugging, and viewing 3D point clouds using Rust"
readme = "README.md"
repository = "https://github.com/hungkhoaitay/in-summer-we-render"
license = "Apache-2.0"
keywords = ["3D", "ISWR"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = true
[features]
default = ["by_radius", "dim_6"] #by_knn #by_radius #dim_3 #dim_6
by_radius = []
by_knn = []
dim_3 = []
dim_6 = []
[lib]
name = "iswr"
path = "src/lib.rs"
[dependencies]
ply-rs = { git = "https://github.com/hungkhoaitay/ply-rs", version = "0.1.3" }
kiss3d = { git = "https://github.com/nus-mmsys/kiss3d", version = "0.31.0", features = [ "conrod" ] } #"0.31.0"
nalgebra = "0.26.2"
kiddo = {git = "https://github.com/giterator/kiddo"} #"0.1.4"
typenum = "1.13.0"
rand = "0.8.3"
lab = "0.10.0"
clap = "2.33.3"
error-chain = "0.12.4"
image = "0.23"
approx = { version = "0.5", default-features = false }
clipboard = "0.5.0"
[[bin]]
name = "ply_to_ply"
[[bin]]
name = "ply_view"
[[bin]]
name = "ply_to_png"
[[bin]]
name = "ply_interpolate"
[[bin]]
name = "ply_fat"
[[bin]]
name = "test"