-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
64 lines (62 loc) · 2.12 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
[package]
name = "nusamai"
version.workspace = true
edition = "2021"
[dependencies]
indexmap = { version = "2.7.0", features = ["serde", "rayon"] }
rayon = "1.10.0"
serde = { version = "1.0.215", features = ["derive"] }
nusamai-plateau = { path = "../nusamai-plateau" }
nusamai-citygml = { path = "../nusamai-citygml" }
quick-xml = "0.37.1"
clap = { version = "4.5.21", features = ["derive", "string"] }
thiserror = "1.0.69"
ctrlc = "3.4.5"
bincode = { version = "2.0.0-rc.3", default-features = false, features = ["std", "serde"] }
lz4_flex = "0.11.3"
nusamai-geojson = { path = "../nusamai-geojson" }
nusamai-gltf = { path = "../nusamai-gltf" }
nusamai-gltf-json = { path = "../nusamai-gltf/nusamai-gltf-json" }
cesiumtiles = { git = "https://github.com/MIERUNE/cesiumtiles-rs.git" }
flatgeom = { version = "0.0", features = ["serde"] }
nusamai-czml = { path = "../nusamai-czml" }
nusamai-projection = { path = "../nusamai-projection" }
tinymvt = "0.0.1"
fastanvil = "0.31.0"
fastnbt = "2.5.0"
geojson = "0.24.1"
serde_json = { version = "1.0.133", features = ["indexmap"] }
url = "2.5.4"
nusamai-gpkg = { path = "../nusamai-gpkg" }
tokio = { version = "1.41", features = ["full"] }
byteorder = "1.5.0"
hashbrown = { version = "0.15.2", features = ["serde"] }
log = { version = "0.4.22" }
pretty_env_logger = "0.5.0"
itertools = "0.13"
prost = "0.13.3"
bytesize = "1.3.0"
ahash = "0.8.11"
nusamai-shapefile = { path = "../nusamai-shapefile" }
shapefile = "0.6.0"
earcut = "0.4"
glob = "0.3.1"
shellexpand = "3.1.0"
kml = "0.8.5"
nusamai-kml = { path = "../nusamai-kml" }
image = { version = "0.25.5", default-features = false, features = ["rayon", "tiff", "jpeg", "webp", "png"] }
flate2 = "1.0.35"
chrono = "0.4.38"
kv-extsort = { git = "https://github.com/MIERUNE/kv-extsort-rs.git" }
bytemuck = { version = "1.20.0", features = ["derive"] }
dda-voxelize = "0.2.0-alpha.1"
atlas-packer = { git = "https://github.com/MIERUNE/atlas-packer.git" }
# atlas-packer = { path = "../atlas_packer" };
tempfile = "3.14.0"
glam = "0.29.2"
[dev-dependencies]
rand = "0.8.5"
tokio = { version = "1.41", features = ["full"] }
byteorder = "1.5.0"
glob = "0.3.1"
assert_cmd = "2.0.16"