-
Notifications
You must be signed in to change notification settings - Fork 36
/
Cargo.toml
36 lines (31 loc) · 931 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
[package]
name = "dxf"
version = "0.6.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"]
[dependencies]
byteorder = "1.3.4"
chrono = { version= "0.4.19", features = ["serde"] }
encoding_rs = "0.8.26"
enum_primitive = "0.1.1"
image = { version = "0.25.1", default-features = false, features = ["bmp"] }
itertools = "0.13.0"
num = "0.4"
serde = { version = "1.0", features = ["derive"], 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"