# SPDX-FileCopyrightText: 2022 Thomas Kramer # # SPDX-License-Identifier: AGPL-3.0-or-later [package] name = "libreda-sta" version = "0.0.3" edition = "2021" authors = ["Thomas Kramer "] license = "AGPL-3.0-or-later" description = "Static timing analysis for netlists of the LibrEDA framework." readme = "README.md" homepage = "https://libreda.org" repository = "https://codeberg.org/libreda/libreda-sta" keywords = ["timing", "sta", "ndlm", "incremental", "digital"] [dependencies] num-traits = "0.2" ndarray = "0.15" itertools = "0.10" libreda-db = { version = "0.0.12", path = "../libreda-db" } liberty-io = { version = "0.0.4", path = "../liberty-io" } libreda-logic = { version = "0.0.3", path = "../libreda-logic" } libreda-interp = { version = "0.0.3", path = "../interp" } pargraph = "0.1.3" log = "0.4" petgraph = "0.6" fnv = "1.0" # Faster hash-maps and hash-sets. uom = "0.36" # Units of measure smallvec = "1.13" blanket = "0.3.0" #lockfree = "0.5" #rayon = "1.7" [dev-dependencies] libreda-structural-verilog = { version = "0.0.5", path = "../libreda-structural-verilog" }