forked from karttapullautin/karttapullautin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 793 Bytes
/
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
[package]
name = "pullauta"
authors = ["Raphael Stefanini <[email protected]>"]
version = "2.0.4"
edition = "2021"
description = "Tool to generates orienteering maps from classified LiDAR data"
readme = "README.md"
repository = "https://github.com/rphlo/karttapullautin"
license-file = "LICENSE"
keywords = ["map", "mapping", "lidar", "orienteering", "laz", "las"]
categories = ["command-line-utilities"]
publish = false
[dependencies]
image = { version ="0.25", default-features = false, features = [
"rayon",
"png",
"jpeg",
]}
imageproc = { version = "0.25.0", default-features = false, features = [
"rayon",
]}
las = { version = "0.8", features = ["laz"] }
rand = "0.8.5"
regex = "1"
rust-ini = "0.21"
rustc-hash = "1.2.0"
shapefile = "0.6.0"
skia-safe = "0.73"
zip = "0.6.6"