forked from libre-chip/fayalite
		
	
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
# SPDX-License-Identifier: LGPL-3.0-or-later
 | 
						|
# See Notices.txt for copyright information
 | 
						|
[workspace]
 | 
						|
resolver = "2"
 | 
						|
members = ["crates/*"]
 | 
						|
 | 
						|
[workspace.package]
 | 
						|
version = "0.3.0"
 | 
						|
license = "LGPL-3.0-or-later"
 | 
						|
edition = "2024"
 | 
						|
repository = "https://git.libre-chip.org/libre-chip/fayalite"
 | 
						|
keywords = ["hdl", "hardware", "semiconductors", "firrtl", "fpga"]
 | 
						|
categories = ["simulation", "development-tools", "compilers"]
 | 
						|
rust-version = "1.89.0"
 | 
						|
 | 
						|
[workspace.dependencies]
 | 
						|
fayalite-proc-macros = { version = "=0.3.0", path = "crates/fayalite-proc-macros" }
 | 
						|
fayalite-proc-macros-impl = { version = "=0.3.0", path = "crates/fayalite-proc-macros-impl" }
 | 
						|
fayalite-visit-gen = { version = "=0.3.0", path = "crates/fayalite-visit-gen" }
 | 
						|
base16ct = "0.2.0"
 | 
						|
base64 = "0.22.1"
 | 
						|
bitvec = { version = "1.0.1", features = ["serde"] }
 | 
						|
blake3 = { version = "1.5.4", features = ["serde"] }
 | 
						|
clap = { version = "4.5.9", features = ["derive", "env", "string"] }
 | 
						|
clap_complete = "4.5.58"
 | 
						|
ctor = "0.2.8"
 | 
						|
eyre = "0.6.12"
 | 
						|
hashbrown = "0.15.2"
 | 
						|
indexmap = { version = "2.5.0", features = ["serde"] }
 | 
						|
jobslot = "0.2.23"
 | 
						|
num-bigint = "0.4.6"
 | 
						|
num-traits = "0.2.16"
 | 
						|
ordered-float = { version = "5.1.0", features = ["serde"] }
 | 
						|
petgraph = "0.8.1"
 | 
						|
prettyplease = "0.2.20"
 | 
						|
proc-macro2 = "1.0.83"
 | 
						|
quote = "1.0.36"
 | 
						|
serde = { version = "1.0.202", features = ["derive"] }
 | 
						|
serde_json = { version = "1.0.117", features = ["preserve_order"] }
 | 
						|
sha2 = "0.10.8"
 | 
						|
syn = { version = "2.0.93", features = ["full", "fold", "visit", "extra-traits"] }
 | 
						|
tempfile = "3.10.1"
 | 
						|
thiserror = "1.0.61"
 | 
						|
trybuild = "1.0"
 | 
						|
vec_map = "0.8.2"
 | 
						|
which = "6.0.1"
 |