altium 0.2.1

A library for processing Altium file types
Documentation
1
2
3
4
5
6
7
8
//! Everything related to PCB documents (`.PcbDoc`) and schematic
//! libraries (`.PcbLib`)

mod pcbdoc;
mod pcblib;

pub use pcbdoc::PcbDoc;
pub use pcblib::PcbLib;