-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (30 loc) · 811 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 = "geom"
version = "0.1.0"
authors = ["Kurt Lawrence <[email protected]>"]
edition = "2021"
[features]
default = ["io"]
io = ["dep:byteorder", "dep:dxf", "dep:log", "dep:nom"]
js = ["dep:uuid"]
[dependencies]
rayon = "1"
rustc-hash = "1"
serde = { version = "1", features = ["derive"] }
# For io
byteorder = { version = "1", optional = true }
dxf = { git = "https://github.com/kdr-aus/dxf-rs", optional = true }
log = { version = "0.4", optional = true }
nom = { version = "7", optional = true }
# For wasm support (needed by dxf)
uuid = { version = "1", features = ["js"], optional = true }
[dev-dependencies]
criterion = "0.3"
quickcheck = "1"
quickcheck_macros = "1"
[[bench]]
name = "benches"
harness = false
[[test]]
name = "data-interop"
path = "test/interop-test.rs"