Remove orphaned native logging that nothing reached: - The /sdcard/Download zip dump (NativeCertGen.dump and the dumpLogs JNI, dump_logs_inner, dump.rs, pub mod dump), superseded by the diag.sh export. - The verbose-marker helpers (sysfs.rs, pub mod sysfs); the manual .verbose toggle still works via mod.rs::init's inline check. Drop the now-unused direct deps zip and libc and the orphaned jstring import. cargo ndk build is warning-clean.
31 lines
703 B
TOML
31 lines
703 B
TOML
[package]
|
|
name = "certgen"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
jni = { version = "0.21.1", default-features = false }
|
|
ring = "0.17.14"
|
|
rsa = { version = "0.9", features = ["sha2"] }
|
|
pkcs8 = { version = "0.10", features = ["alloc"] }
|
|
rand = "0.8"
|
|
der = { version = "0.7.10", features = ["alloc", "oid"] }
|
|
const-oid = "0.9.6"
|
|
x509-cert = { version = "0.2.5", features = ["pem"] }
|
|
time = { version = "0.3", features = ["std"] }
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
serde_json = "1.0"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = "symbols"
|
|
panic = "abort"
|