forked from libre-chip/fayalite
move Value derive macro re-export to same place as Value trait
This commit is contained in:
parent
6a5f1b8af1
commit
d610858144
7 changed files with 7 additions and 7 deletions
|
@ -12,7 +12,7 @@ use fayalite::{
|
|||
module::transform::simplify_enums::{simplify_enums, SimplifyEnumsKind},
|
||||
reset::{SyncReset, ToReset},
|
||||
source_location::SourceLocation,
|
||||
Value,
|
||||
ty::Value,
|
||||
};
|
||||
use serde_json::json;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
// See Notices.txt for copyright information
|
||||
use fayalite::Value;
|
||||
use fayalite::ty::Value;
|
||||
|
||||
#[derive(Value)]
|
||||
union U {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
// See Notices.txt for copyright information
|
||||
use fayalite::{int::UInt, Value};
|
||||
use fayalite::{int::UInt, ty::Value};
|
||||
|
||||
#[derive(Value, Clone, Hash, PartialEq, Eq, Debug)]
|
||||
#[hdl(outline_generated)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue