-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathCargo.toml
executable file
·122 lines (96 loc) · 2.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[package]
name = "whitebox_plugins"
version = "2.4.0"
authors = ["John Lindsay <[email protected]>"]
edition = "2021"
[[bin]]
name = "conditional_evaluation"
path = "src/conditional_evaluation/main.rs"
[[bin]]
name = "conditioned_latin_hypercube"
path = "src/conditioned_latin_hypercube/main.rs"
[[bin]]
name = "convergence_index"
path = "src/convergence_index/main.rs"
[[bin]]
name = "correct_stream_vector_direction"
path = "src/correct_stream_vector_direction/main.rs"
[[bin]]
name = "edge_contamination"
path = "src/edge_contamination/main.rs"
[[bin]]
name = "exposure_towards_wind_flux"
path = "src/exposure_towards_wind_flux/main.rs"
[[bin]]
name = "extract_by_attribute"
path = "src/extract_by_attribute/main.rs"
[[bin]]
name = "gaussian_scale_space"
path = "src/gaussian_scale_space/main.rs"
[[bin]]
name = "heat_map"
path = "src/heat_map/main.rs"
[[bin]]
name = "individual_tree_detection"
path = "src/individual_tree_detection/main.rs"
[[bin]]
name = "install_wb_extension"
path = "src/install_wb_extension/main.rs"
[[bin]]
name = "launch_wb_runner"
path = "src/launch_wb_runner/main.rs"
[[bin]]
name = "lidar_shift"
path = "src/lidar_shift/main.rs"
[[bin]]
name = "local_quadratic_regression"
path = "src/local_quadratic_regression/main.rs"
[[bin]]
name = "max_upslope_value"
path = "src/max_upslope_value/main.rs"
[[bin]]
name = "normalize_lidar"
path = "src/normalize_lidar/main.rs"
[[bin]]
name = "otsu_thresholding"
path = "src/otsu_thresholding/main.rs"
[[bin]]
name = "qin_flow_accumulation"
path = "src/qin_flow_accumulation/main.rs"
[[bin]]
name = "quinn_flow_accumulation"
path = "src/quinn_flow_accumulation/main.rs"
[[bin]]
name = "raster_calculator"
path = "src/raster_calculator/main.rs"
[[bin]]
name = "repair_stream_vector_topology"
path = "src/repair_stream_vector_topology/main.rs"
[[bin]]
name = "rho8_flow_accumulation"
path = "src/rho8_flow_accumulation/main.rs"
[[bin]]
name = "split_vector_lines"
path = "src/split_vector_lines/main.rs"
[[bin]]
name = "travelling_salesman_problem"
path = "src/travelling_salesman_problem/main.rs"
[[bin]]
name = "vector_stream_network_analysis"
path = "src/vector_stream_network_analysis/main.rs"
[dependencies]
evalexpr = "10.0.0"
fasteval = "0.2.4"
kd-tree = { version = "0.4.1", features = ["rayon"] }
kdtree = "0.6.0"
nalgebra = "0.18.0"
num_cpus = "1.13.0"
rand = { version = "0.7", features = ["small_rng"] }
rayon = "1.7.0"
rstar = "0.9.3"
tsp-rs = "0.1.0"
typenum = "1.15.0"
whitebox_common = { path = "../whitebox-common" }
whitebox_lidar = { path = "../whitebox-lidar" }
whitebox_raster = { path = "../whitebox-raster" }
whitebox_vector = { path = "../whitebox-vector" }