Skip to content

Commit 9ffa604

Browse files
committed
fix!: [hack] use debug lib while it stabilizes
1 parent 1f72cb0 commit 9ffa604

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

crates/file-explorer-plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
publish = false
77

88
[lib]
9-
crate-type = ["cdylib"]
9+
crate-type = ["cdylib", "rlib"]
1010

1111
[dependencies]
1212
anyhow = { workspace = true }

crates/file-explorer-plugin/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ default:
55

66
release:
77
@echo Building file-explorer-plugin…
8-
cargo b --release
9-
cp ../../target/release/libfile_explorer_plugin.dylib ../http-server/inline/file_explorer.plugin.httprs
8+
cargo b
9+
cp ../../target/debug/libfile_explorer_plugin.dylib ../http-server/inline/file_explorer.plugin.httprs

crates/file-explorer-ui/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
mod api;
22
mod components;
33

4-
use leptos::{component, view, IntoView, SignalGet};
4+
use leptos::{component, view, IntoView};
55
use leptos_meta::provide_meta_context;
66
use rust_embed::Embed;
77

0 commit comments

Comments
 (0)