forked from dan-fritchman/Layout21
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dan-fritchman#17 from growly/proto2gds
proto2gds bin takes protos and makes them gds
- Loading branch information
Showing
20 changed files
with
4,882 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
description = "Converts GDS files to protocol buffer descriptions, using Layout21, and Gds21." | ||
name = "gds2proto" | ||
description = "Converters to/from Layout21 formats from/to various legacy formats." | ||
name = "layout21converters" | ||
# Shared layout21 attributes | ||
authors = ["Dan Fritchman <[email protected]>", "Arya Reais-Parsi <[email protected]>"] | ||
edition = "2018" | ||
|
@@ -10,9 +10,30 @@ version = "0.2.1" | |
workspace = "../" | ||
exclude = ["resources",] | ||
|
||
[[bin]] | ||
name = "gds2proto" | ||
path = "src/gds2proto.rs" | ||
test = true | ||
bench = false | ||
|
||
[[bin]] | ||
name = "proto2gds" | ||
path = "src/proto2gds.rs" | ||
test = true | ||
bench = false | ||
|
||
# Converts GDS files to protocol buffer descriptions, using Layout21, and Gds21. | ||
[[bin]] | ||
name = "lef2yaml" | ||
path = "src/lef2yaml.rs" | ||
test = true | ||
bench = false | ||
|
||
[dependencies] | ||
gds21 = {path = "../gds21"} | ||
lef21 = {path = "../lef21"} | ||
layout21protos = {path = "../layout21protos"} | ||
layout21raw = {path = "../layout21raw"} | ||
layout21utils = {path = "../layout21utils"} | ||
clap = { version = "3.0.0-beta.5", features = ["derive"] } | ||
chrono = {version = "0.4" } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.