fayalite/crates/fayalite/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

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]
bitvec.workspace = true
2024-10-08 06:31:24 +00:00
blake3.workspace = true
clap.workspace = true
ctor.workspace = true
eyre.workspace = true
fayalite-proc-macros.workspace = true
hashbrown.workspace = true
jobslot.workspace = true
num-bigint.workspace = true
num-traits.workspace = true
os_pipe.workspace = true
petgraph.workspace = true
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
which.workspace = true
2024-06-11 06:09:13 +00:00
[dev-dependencies]
trybuild.workspace = true
2024-06-11 06:09:13 +00:00
[build-dependencies]
fayalite-visit-gen.workspace = true
[features]
unstable-doc = []
[package.metadata.docs.rs]
2024-07-22 03:47:52 +00:00
features = ["unstable-doc"]