-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 803 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
[package]
name = "gerber2svg"
version = "0.2.2"
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "Gerber2Svg is a library and utility, used to convert a Gerber (x2 or x3) file into an SVG file."
homepage = "https://github.com/jnthbdn/rs-gerber2svg"
repository = "https://github.com/jnthbdn/rs-gerber2svg"
readme = "README.md"
keywords = ["gerber", "svg"]
categories = ["command-line-utilities"]
[[bin]]
name = "gerber2svg"
path = "src/main.rs"
[lib]
name = "gerber2svg"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gerber-types = "0.2.0"
gerber_parser = "0.1.2"
log = "0.4.19"
simple_logger = "4.2.0"
structopt = { version = "0.3.26", features = ["color", "suggestions", "wrap_help"] }
svg = "0.13.1"