Skip to content

Commit

Permalink
fix(cli): Fix crate type (#11080)
Browse files Browse the repository at this point in the history
* Fix crate type

Fixes #9547

* Fix crate type

Fixes #9547

* Fix crate type

Fixes #9547

* Fix crate type

Fixes #9547
  • Loading branch information
AlexProgrammerDE authored Sep 21, 2024
1 parent 62b3a5c commit 28169ae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/api/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 28169ae

Please sign in to comment.