forked from ixmilia/dxf-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 916 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
33
34
35
36
37
[package]
name = "dxf"
version = "0.5.0"
authors = ["Brett V. Forsgren <[email protected]>"]
build = "build/build.rs"
description = "A rust crate for reading and writing DXF and DXB CAD files."
documentation = "https://docs.rs/dxf/"
repository = "https://github.com/ixmilia/dxf-rs"
readme = "README.md"
keywords = ["AutoCAD", "CAD", "DXB", "DXF"]
license = "MIT"
edition = "2018"
[package.metadata.docs.rs]
targets = []
[features]
serialize = ["serde", "serde_derive"]
[dependencies]
byteorder = "1.3.4"
chrono = { version= "0.4.19", features = ["serde"] }
encoding_rs = "0.8.26"
enum_primitive = "0.1.1"
image = "0.24"
itertools = "0.11"
num = "0.4"
serde = { version = "1.*.*", optional = true }
serde_derive = { version = "1.*.*", optional = true }
uuid = { version = "1.3.3", features = ["serde", "v4"] }
[build-dependencies]
xmltree = "0.8.0"
[dev-dependencies]
float-cmp = "0.9.0"
glob = "0.3.0"