1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# rust-verilog ``` [dependencies] verilog = "0.0.1" ``` Parses and generates Verilog code. ```rust extern crate verilog; let code: verilog::ast::Code = verilog::parse("module a(); endmodule"); ``` ## License MIT or Apache-2.0, at your option.