-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (31 loc) · 960 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]
authors = ["Junfeng Liu <[email protected]>"]
categories = ["cad", "parser-implementations"]
description = "A Rust crate for generating STEP reader code."
edition = "2018"
keywords = ["stp", "step"]
license = "MIT"
name = "iso-10303"
readme = "README.md"
repository = "https://github.com/J-F-Liu/iso-10303.git"
version = "0.5.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fast-float = "0.2"
heck = {version = "0.3", optional = true}
petgraph = {version = "0.5.1", optional = true}
pom = {version = "3.2", path = "../pom"}
proc-macro2 = {version = "1.0", optional = true}
quote = {version = "1.0", optional = true}
structopt = "0.3"
[features]
gencode = ["quote", "proc-macro2", "heck"]
gengraph = ["heck", "petgraph"]
[[bin]]
name = "gencode"
required-features = ["gencode"]
[[bin]]
name = "gengraph"
required-features = ["gengraph"]
[workspace]
members = ["parts"]