Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# `jacquard` name, so the binary users run, the release asset, and every
# `use jacquard::…` in the source are unchanged.
name = "jacquard-sim"
version = "0.3.0-rc.3"
version = "0.3.0-rc.4"
edition = "2021"
description = "GPU-accelerated RTL logic simulator with vector-driven setup/hold timing analysis. Maps gate-level netlists to a virtual manycore Boolean processor and runs them on Metal / CUDA / HIP."
repository = "https://github.com/gpu-eda/Jacquard"
Expand Down
2 changes: 1 addition & 1 deletion crates/cell-decomp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cell-decomp"
version = "0.3.0-rc.3"
version = "0.3.0-rc.4"
edition = "2021"
description = "PDK-neutral behavioral Verilog parsing and AIG decomposition primitives shared by jacquard core and the Liberty->IR converter. See docs/adr/0019-cell-model-ir.md."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/cell-model-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cell-model-ir"
version = "0.3.0-rc.3"
version = "0.3.0-rc.4"
edition = "2021"
description = "Jacquard cell-model IR: a generated, JSON-first, per-cell-type library descriptor (pin directions, combinational AIG, sequential/classification, timing). See docs/adr/0019-cell-model-ir.md."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/liberty-parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liberty-parse"
version = "0.3.0-rc.3"
version = "0.3.0-rc.4"
edition = "2021"
description = "Generic Liberty (.lib) tokenizer + group/attribute parser. The single Liberty front-end in Jacquard: jacquard's TimingLibrary and the (future) Liberty->cell-model-ir converter both consume this. See docs/adr/0019-cell-model-ir.md (D6)."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/liberty-to-cellir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liberty-to-cellir"
version = "0.3.0-rc.3"
version = "0.3.0-rc.4"
edition = "2021"
description = "Build/CI-time tool that generates a cell-model-IR descriptor from a Liberty library (ADR 0019, D6). Lives outside the root cargo package; `cargo test` from the repo root does NOT run its tests — use `cargo test --manifest-path crates/liberty-to-cellir/Cargo.toml`. Not depended on by jacquard core."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/opensta-to-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opensta-to-ir"
version = "0.3.0-rc.3"
version = "0.3.0-rc.4"
edition = "2021"
description = "Preprocessing tool that drives OpenSTA and emits Jacquard timing IR. Lives outside the root cargo workspace; `cargo test --lib` from the repo root does NOT run its tests — use `cd crates/opensta-to-ir && cargo test` locally, or rely on the dedicated `opensta-to-ir-tests` CI job. See docs/plans/ws2-opensta-to-ir.md and docs/adr/0006-sdf-preprocessing-model.md."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/timing-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "timing-ir"
version = "0.3.0-rc.3"
version = "0.3.0-rc.4"
edition = "2021"
description = "Jacquard timing intermediate representation (IR) for SDF-equivalent annotations. See docs/adr/0002-timing-ir.md."
license = "Apache-2.0"
Expand Down
Loading