[package] name = "patcher" version = "0.1.0" edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] #androscalpel = { git = "ssh://git@gitlab.inria.fr/androidoftheseus/androscalpel.git", rev = "110f0c0", features = ["code-analysis", "platform-list"] } #apk_frauder = { git = "ssh://git@gitlab.inria.fr/androidoftheseus/androscalpel.git", rev = "110f0c0"} androscalpel = { path = "../../androscalpel/androscalpel", features = ["code-analysis", "platform-list"] } apk_frauder = { path = "../../androscalpel/apk_frauder"} anyhow = { version = "1.0.95", features = ["backtrace"] } clap = { version = "4.5.27", features = ["derive"] } env_logger = "0.11.6" serde = "1.0.217" serde_json = "1.0.138" log = "0.4.25" [profile.minsizerelease] inherits = "release" strip = true # Automatically strip symbols from the binary. opt-level = "z" # Optimize for size lto = true