2024-06-11 06:09:13 +00:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# See Notices.txt for copyright information
|
|
|
|
[package]
|
|
|
|
name = "fayalite"
|
2024-07-12 05:39:00 +00:00
|
|
|
description = "Hardware Description Language embedded in Rust, using FIRRTL's semantics"
|
2024-06-11 06:09:13 +00:00
|
|
|
workspace = "../.."
|
2024-07-12 05:39:00 +00:00
|
|
|
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
|
2024-06-11 06:09:13 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-09-25 08:22:35 +00:00
|
|
|
bitvec.workspace = true
|
2024-10-08 06:31:24 +00:00
|
|
|
blake3.workspace = true
|
2024-09-25 08:22:35 +00:00
|
|
|
clap.workspace = true
|
2024-10-16 03:32:33 +00:00
|
|
|
ctor.workspace = true
|
2024-09-25 08:22:35 +00:00
|
|
|
eyre.workspace = true
|
|
|
|
fayalite-proc-macros.workspace = true
|
|
|
|
hashbrown.workspace = true
|
2024-10-16 03:32:33 +00:00
|
|
|
jobslot.workspace = true
|
2024-09-25 08:22:35 +00:00
|
|
|
num-bigint.workspace = true
|
|
|
|
num-traits.workspace = true
|
2024-09-25 08:36:15 +00:00
|
|
|
os_pipe.workspace = true
|
2024-11-13 12:14:04 +00:00
|
|
|
petgraph.workspace = true
|
2024-09-25 08:22:35 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
serde.workspace = true
|
2024-09-25 08:52:41 +00:00
|
|
|
tempfile.workspace = true
|
2024-11-11 06:12:57 +00:00
|
|
|
vec_map.workspace = true
|
2024-09-25 08:22:35 +00:00
|
|
|
which.workspace = true
|
2024-06-11 06:09:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-09-25 08:22:35 +00:00
|
|
|
trybuild.workspace = true
|
2024-06-11 06:09:13 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-09-25 08:22:35 +00:00
|
|
|
fayalite-visit-gen.workspace = true
|
2024-07-18 07:13:28 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
unstable-doc = []
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2024-07-22 03:47:52 +00:00
|
|
|
features = ["unstable-doc"]
|