Break build
This commit is contained in:
parent
7fc710d4f5
commit
c1e63fa761
11 changed files with 559 additions and 147 deletions
13
Cargo.toml
13
Cargo.toml
|
@ -11,7 +11,8 @@ server = [
|
|||
"dep:tauri",
|
||||
"dep:tauri-plugin-opener",
|
||||
"dep:tauri-plugin-fs",
|
||||
"dep:rusqlite",
|
||||
"dep:tauri-plugin-sql",
|
||||
"dep:sqlx",
|
||||
"dep:rand",
|
||||
"dep:chrono",
|
||||
"dep:tokio",
|
||||
|
@ -26,7 +27,7 @@ crate-type = ["staticlib", "cdylib", "rlib"]
|
|||
name = "bkbh"
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = { version = "2", features = [] }
|
||||
tauri-build = { version = "2", features = ["config-toml"] }
|
||||
|
||||
[dependencies]
|
||||
console_error_panic_hook = { version = "0.1.7" }
|
||||
|
@ -46,11 +47,9 @@ ring-compat = { version = "^0.8", features = [
|
|||
"signature",
|
||||
"rand_core",
|
||||
], optional = true }
|
||||
rusqlite = { version = "^0.33", features = [
|
||||
"backup",
|
||||
"bundled",
|
||||
], optional = true }
|
||||
tauri = { version = "2", features = [], optional = true }
|
||||
sqlx = { version = "^0.8", features = ["sqlite"], optional = true }
|
||||
tauri = { version = "2", features = ["config-toml"], optional = true }
|
||||
tauri-plugin-fs = { version = "2", optional = true }
|
||||
tauri-plugin-opener = { version = "2", optional = true }
|
||||
tauri-plugin-sql = { version = "2", features = ["sqlite"], optional = true }
|
||||
tokio = { version = "^1.43", optional = true }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue