34 lines
897 B
TOML
34 lines
897 B
TOML
[package]
|
||
name = "app"
|
||
version = "0.1.0"
|
||
description = "A Tauri App"
|
||
authors = ["you"]
|
||
license = ""
|
||
repository = ""
|
||
edition = "2021"
|
||
rust-version = "1.77.2"
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
||
[lib]
|
||
name = "app_lib"
|
||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||
|
||
[build-dependencies]
|
||
# tauri-build / tauri crate 与 @tauri-apps/api 大版本必须对齐(CLI 在 build 前会校验)。
|
||
# @tauri-apps/api 已升 2.10(commit bb9a70e),这里同步到 2.x 最新让 cargo 解析到匹配版本。
|
||
tauri-build = { version = "2", features = [] }
|
||
|
||
[dependencies]
|
||
serde_json = "1.0"
|
||
serde = { version = "1.0", features = ["derive"] }
|
||
log = "0.4"
|
||
tauri = { version = "2", features = ["devtools"] }
|
||
tauri-plugin-log = "2"
|
||
tauri-plugin-shell = "2"
|
||
|
||
[package.metadata.tauri.bundle.macOS]
|
||
frameworks = ["bin/BiliNoteBackend/_internal/"]
|
||
|
||
|