mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-02-06 13:37:09 +00:00
fix(cli): Fix crate type (#11080)
* Fix crate type Fixes https://github.com/tauri-apps/tauri/issues/9547 * Fix crate type Fixes https://github.com/tauri-apps/tauri/issues/9547 * Fix crate type Fixes https://github.com/tauri-apps/tauri/issues/9547 * Fix crate type Fixes https://github.com/tauri-apps/tauri/issues/9547
This commit is contained in:
parent
62b3a5cd1c
commit
28169ae097
@ -12,7 +12,7 @@ rust-version = "1.71"
|
||||
|
||||
[lib]
|
||||
name = "app_lib"
|
||||
crate-type = ["staticlib", "cdylib", "lib"]
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = {{ tauri_build_dep }}
|
||||
|
||||
@ -10,7 +10,7 @@ rust-version = "1.71"
|
||||
|
||||
[lib]
|
||||
name = "tauri_app_lib"
|
||||
crate-type = ["staticlib", "cdylib", "lib"]
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@ rust-version = "1.71"
|
||||
|
||||
[lib]
|
||||
name = "tauri_app_lib"
|
||||
crate-type = ["staticlib", "cdylib", "lib"]
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ license = "Apache-2.0 OR MIT"
|
||||
|
||||
[lib]
|
||||
name = "api_lib"
|
||||
crate-type = ["staticlib", "cdylib", "lib"]
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = { path = "../../../crates/tauri-build", features = [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user