Skip to content

Commit

Permalink
Merge pull request #6 from br0kej/dev
Browse files Browse the repository at this point in the history
Version 2.6: De-dup Fixing, More Datasets Support and Better CLI
  • Loading branch information
br0kej authored Jan 15, 2024
2 parents dcf81a9 + 5424317 commit ad644b1
Show file tree
Hide file tree
Showing 29 changed files with 2,851 additions and 242 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bin2ml"
version = "0.2.4"
version = "0.2.6"
edition = "2021"

[dependencies]
Expand All @@ -26,6 +26,7 @@ log = "0.4.19"
env_logger = "0.10.0"
thiserror = "1.0.47"
enum-as-inner = "0.6.0"
ordered-float = { version = "4.2.0", features = ["serde"] }
[dependencies.petgraph]
version = "0.6.2"
features = ["serde-1"]
Expand Down
6 changes: 3 additions & 3 deletions src/afij.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use serde_json::Value;
pub struct AFIJFunctionInfo {
pub offset: i64,
pub name: String,
pub size: i64,
pub size: i128,
#[serde(rename = "is-pure")]
pub is_pure: String,
pub realsz: i64,
Expand All @@ -26,8 +26,8 @@ pub struct AFIJFunctionInfo {
pub edges: i64,
pub ebbs: i64,
pub signature: String,
pub minbound: i64,
pub maxbound: i64,
pub minbound: u64,
pub maxbound: i128,
pub callrefs: Option<Vec<Callref>>,
// TODO: Need to fix this and change to string instead of i64 to get round large random numbers
pub datarefs: Option<Vec<Dataref>>,
Expand Down
Loading

0 comments on commit ad644b1

Please sign in to comment.