fabbula/lib.rs
1// Copyright 2026 Daniel Keller <daniel.keller.m@gmail.com>
2// Licensed under the Apache License, Version 2.0.
3// SPDX-License-Identifier: Apache-2.0
4
5//! Multi-PDK, DRC-aware image-to-GDSII artwork generator.
6//!
7//! Converts raster images into GDSII layout data for chip top-metal artwork,
8//! supporting SKY130, IHP SG13G2, and GF180MCU process design kits.
9
10pub mod artwork;
11pub mod color;
12pub mod drc;
13pub mod gdsio;
14pub mod lef;
15pub mod pdk;
16pub mod polygon;
17pub mod preview;