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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! This crate reads Liberty format files, commonly used by
//! [EDA](https://en.wikipedia.org/wiki/Electronic_design_automation) tools to describe library
//! cells (including standard cells, hard IP, etc.).
//!
//! # Example
//!
//! ```
//! use liberty_parser::parse_lib;
//!
//! let lib_str = r#"
//! library(sample) {
//! cell(AND2) {
//! area: 1;
//! }
//! }
//! "#;
//!
//! for lib in parse_lib(lib_str).unwrap() {
//! println!("Library '{}' has {} cells", lib.name, lib.iter_cells().count());
//! let area = lib
//! .get_cell("AND2")
//! .and_then(|c| c.simple_attribute("area"))
//! .map_or(-1.0, |v| v.float());
//! println!("Cell AND2 has area: {}", area);
//! }
//! ```
pub use ;
pub use Error;
/// Parse a string slice into a [liberty::Liberty] struct