From f16a04e7be37081a1f39017deeb03f5db96e11b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20L=C3=A4ufer?= Date: Fri, 8 Mar 2024 11:44:21 -0500 Subject: [PATCH] expose Signal struct --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fa01b85..8505c08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "wellen" -version = "0.8.9" +version = "0.8.10" edition = "2021" authors = ["Kevin Laeufer "] description = "Fast VCD and FST library for waveform viewers written in Rust." diff --git a/src/lib.rs b/src/lib.rs index b2b5642..55ea68b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,7 +47,7 @@ pub use hierarchy::{ GetItem, Hierarchy, HierarchyItem, Scope, ScopeRef, ScopeType, SignalRef, Timescale, TimescaleUnit, Var, VarDirection, VarIndex, VarRef, VarType, }; -pub use signals::{Real, SignalValue, Time, TimeTableIdx, Waveform}; +pub use signals::{Real, Signal, SignalValue, Time, TimeTableIdx, Waveform}; use thiserror::Error; #[cfg(feature = "benchmark")]