23 lines
641 B
TOML
23 lines
641 B
TOML
[package]
|
|
name = "tauri-android-invoice"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "blocking", "rustls-tls"] }
|
|
|
|
# 扫码插件仅移动端需要
|
|
[target.'cfg(any(target_os = "android", target_os = "ios"))'.dependencies]
|
|
tauri-plugin-barcode-scanner = "2"
|