-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 758 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 758 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
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "thdmaker"
version = "0.0.4"
authors = ["fn-a <mr.fna.co@gmail.com>"]
edition = "2024"
repository = "https://github.com/fn-a/thdmaker"
description = "A comprehensive 3D file format library supporting AMF, STL, 3MF and other 3D manufacturing formats"
license = "MIT"
[dependencies]
glob = "^0.3"
thiserror = "^2.0"
byteorder = "^1.5"
base64 = "^0.22"
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.quick-xml]
version = "^0.38"
features = ["serialize", "overlapped-lists"]
[dependencies.zip]
version = "^7.0"
default-features = false
features = ["deflate"]
[dependencies.uuid]
version = "^1.0"
features = ["v4"]
[dependencies.clap]
version = "^4.5"
features = ["derive"]
[dependencies.bevy]
version = "^0.17"