-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a265ede
commit bc50822
Showing
12 changed files
with
53 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,4 @@ members = [ | |
"layout21tetris", | ||
"layout21meta", | ||
"layout21utils", | ||
"layout21macros", | ||
] |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,13 +1,18 @@ | ||
[package] | ||
description = "Layout21 Meta-Crate, re-exporting all internally defined crates" | ||
name = "layout21meta" | ||
# Shared layout21 attributes | ||
authors = ["Dan Fritchman <dan@fritch.mn>"] | ||
description = "Layout21 meta-crate" | ||
edition = "2018" | ||
name = "layout21meta" | ||
version = "0.1.0" | ||
license = "BSD-3-Clause" | ||
repository = "https://github.com/dan-fritchman/Layout21" | ||
version = "0.2.0" | ||
workspace = "../" | ||
|
||
[dependencies] | ||
gds21 = {path = "../gds21", features = ["selftest"]} | ||
layout21protos = {path = "../layout21protos"} | ||
layout21raw = {path = "../layout21raw"} | ||
layout21tetris = {path = "../layout21tetris"} | ||
layout21utils = {path = "../layout21utils"} | ||
lef21 = {path = "../lef21"} |
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,5 +1,11 @@ | ||
// Re-export all of the meta-dependencies | ||
//! # Layout21 Meta-Crate | ||
//! | ||
//! Re-exports all internally defined crates | ||
//! | ||
pub use gds21; | ||
pub use layout21protos; | ||
pub use layout21raw; | ||
pub use layout21protos as protos; | ||
pub use layout21raw as raw; | ||
pub use layout21tetris as tetris; | ||
pub use layout21utils as utils; | ||
pub use lef21; |
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
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