# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81.0" name = "isr" version = "0.1.2" authors = ["Petr Benes "] build = false publish = true autobins = false autoexamples = false autotests = false autobenches = false description = "Intermediate Symbol Representation" homepage = "https://github.com/vmi-rs/isr" readme = "README.md" keywords = [ "isr", "pdb", "dwarf", ] license = "MIT" repository = "https://github.com/vmi-rs/isr" [package.metadata.docs.rs] all-features = true cargo-args = [ "-Zunstable-options", "-Zrustdoc-scrape-examples", ] rustdoc-args = [ "-Zunstable-options", "--generate-link-to-definition", "--cfg", "docsrs", ] [profile.release] debug = 1 [lib] name = "isr" path = "src/lib.rs" [dependencies.isr-cache] version = "0.1.1" optional = true [dependencies.isr-core] version = "0.1.1" [dependencies.isr-dl-linux] version = "0.1.1" optional = true [dependencies.isr-dl-pdb] version = "0.1.1" optional = true [dependencies.isr-dwarf] version = "0.1.1" optional = true [dependencies.isr-macros] version = "0.1.2" [dependencies.isr-pdb] version = "0.1.1" optional = true [features] cache = [ "isr-cache", "isr-cache/codec-bincode", "isr-cache/codec-json", "isr-cache/codec-msgpack", ] default = [ "cache", "dwarf", "pdb", "dl-linux", "dl-pdb", ] dl-linux = [ "isr-dl-linux", "isr-cache?/linux", ] dl-pdb = [ "isr-dl-pdb", "isr-cache?/pdb", ] dwarf = [ "isr-dwarf", "isr-cache?/linux", ] pdb = [ "isr-pdb", "isr-cache?/pdb", ]