Skip to content

ArcaneNibble/yosys-netlist-json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crates.io Docs.rs

Yosys JSON netlist serde structures

Read/write Yosys JSON files in Rust using serde.

Reading

// from a byte slice
let result = Netlist::from_slice(...).unwrap();

// from an io::Read
let result = Netlist::from_reader(reader).unwrap();

Writing

let mut netlist = Netlist::new("Super cool HDL tool");
...
let json = netlist.to_string().unwrap();

About

Rust serde structs for accessing Yosys JSON netlists

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages