39 lines
903 B
TOML
39 lines
903 B
TOML
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# See Notices.txt for copyright information
|
|
[package]
|
|
name = "fayalite"
|
|
description = "Hardware Description Language embedded in Rust, using FIRRTL's semantics"
|
|
workspace = "../.."
|
|
readme = "README.md"
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
bitvec.workspace = true
|
|
clap.workspace = true
|
|
eyre.workspace = true
|
|
fayalite-proc-macros.workspace = true
|
|
hashbrown.workspace = true
|
|
num-bigint.workspace = true
|
|
num-traits.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
which.workspace = true
|
|
|
|
[dev-dependencies]
|
|
trybuild.workspace = true
|
|
|
|
[build-dependencies]
|
|
fayalite-visit-gen.workspace = true
|
|
|
|
[features]
|
|
unstable-doc = []
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["unstable-doc"]
|