[package] name = "fuguex-loader" version = "0.2.4" edition = "2021" description = "A binary analysis framework written in Rust" license = "MIT" [features] idapro = ["fugue-idapro"] ghidra = ["fugue-ghidra"] radare = ["fugue-radare"] all = ["idapro", "ghidra", "radare"] default = [] [dependencies] either = "1" fugue = { version = "0.2", features = ["db"] } fugue-ghidra = { version = "0.2", optional = true } fugue-idapro = { version = "0.2", optional = true } fugue-radare = { version = "0.2", optional = true } fuguex-state = { path = "../fuguex-state", version = "0.2" } thiserror = "1"