[package] name = "sv-api" version = "0.0.1" description = "Idiomatic Rust abstractions for interfacing with SystemVerilog." authors = ["John Zacarias Jekel "] readme = "README.md" #homepage = "" repository = "https://git.jekel.ca/JZJ/sv-api" license = "MIT" edition = "2021" keywords = ["verilog", "systemverilog", "dpi", "pli", "vpi"] #categories = ["", "", ""] #default-run = "" #documentation = "" [features] default = [] [dependencies] sv-bindings = "0.1.2" #TODO #nightly-features = ["nightly-features-benches"] #nightly-features-benches = [] [lib] name = "sv_api" path = "lib/lib.rs" [profile.dev] incremental = true [profile.release] codegen-units = 1 strip = true overflow-checks = false panic = "abort" lto = true [profile.release-with-debug] inherits = "release" strip = false overflow-checks = false panic = "abort" lto = false debug = true