forked from libre-chip/fayalite
25 lines
645 B
TOML
25 lines
645 B
TOML
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# See Notices.txt for copyright information
|
|
[package]
|
|
name = "fayalite"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
workspace = "../.."
|
|
license = "LGPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
bitvec = { version = "1.0.1", features = ["serde"] }
|
|
hashbrown = "0.14.3"
|
|
num-bigint = "0.4.4"
|
|
num-traits = "0.2.16"
|
|
paste = "1.0.14"
|
|
fayalite-proc-macros = { version = "=0.1.0", path = "../fayalite-proc-macros" }
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
|
serde_json = "1.0.117"
|
|
|
|
[dev-dependencies]
|
|
trybuild = "1.0"
|
|
|
|
[build-dependencies]
|
|
fayalite-visit-gen = { version = "=0.1.0", path = "../fayalite-visit-gen" }
|