-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (19 loc) · 591 Bytes
/
Cargo.toml
File metadata and controls
25 lines (19 loc) · 591 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
[package]
name = "threemf"
version = "0.8.0"
edition = "2021"
rust-version = "1.56"
description = "3MF (3D Manufacturing Format) file format support"
license = "0BSD"
keywords = ["3MF", "CAD", "slicer", "triangle", "mesh"]
categories = ["encoding", "rendering::data-formats"]
readme = "README.md"
repository = "https://github.com/hannobraun/3mf-rs"
[dependencies]
quick-xml = { version = "0.39.0", features = ["serialize"] }
serde = { version = "1.0.152", features = ["derive"] }
thiserror = "2.0.3"
[dependencies.zip]
version = "8.0.0"
default-features = false
features = ["deflate"]