diff options
| author | Alexander Taylor <alex@vector35.com> | 2024-08-22 18:51:13 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2024-08-22 19:35:30 -0400 |
| commit | ef3a2af2485e7d61cda8f5a4af7ecfdf6ae6297f (patch) | |
| tree | 31961be6df0f09d4befa24e062f69ef162fcd370 /arch/msp430/Cargo.toml | |
| parent | 3fddedcf5f7080239cc699990a27ab7ca5cffb74 (diff) | |
Fix MSP430 dependencies.
Diffstat (limited to 'arch/msp430/Cargo.toml')
| -rw-r--r-- | arch/msp430/Cargo.toml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/arch/msp430/Cargo.toml b/arch/msp430/Cargo.toml index ce849cb0..d97b8fc8 100644 --- a/arch/msp430/Cargo.toml +++ b/arch/msp430/Cargo.toml @@ -4,10 +4,15 @@ version = "0.1.0" authors = ["jrozner"] edition = "2021" +[dependencies] +binaryninja = { path = "../../rust" } +log = "0.4" +msp430-asm = "^0.2" + [lib] crate-type = ["cdylib"] -[dependencies] -binaryninja = { git = "https://github.com/Vector35/binaryninja-api.git", branch = "dev" } -log = "0.4.14" -msp430-asm = "^0.2" +[profile.release] +panic = "abort" +lto = true +debug = 1 |
