Files
netrunner-app/src-tauri/Cargo.toml
T
2026-03-20 13:33:52 +07:00

34 lines
760 B
TOML

[package]
name = "netrunner-app"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
name = "netrunner_app"
[build-dependencies]
tauri-build = { version = "2.0.0", features = [] }
winres = "0.1"
[dependencies]
jni = "0.22.3"
tauri = { version = "2.0.0", features = [] }
serde = { version = "1.0", features = ["derive"] }
ndk-context = "0.1"
log = "0.4"
tauri-plugin-vpn = { path = "./src/plugins/vpn-plugin" }
netrunner-logger = { git = "ssh://git@github.com/nineAp/netrunner-core.git", branch = "main", features = ["desktop"] }
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
ar = "x86_64-w64-mingw32-gcc-ar"