remote ssh: Fix asset embedding in cross-compilation (#19180)
This fixes the panic from the settings file not being embedded. Release Notes: - N/A --------- Co-authored-by: Bennet <bennet@zed.dev>
This commit is contained in:
parent
f2337bbed1
commit
71a878aa39
3 changed files with 9 additions and 1 deletions
|
@ -18,6 +18,7 @@ name = "remote_server"
|
|||
|
||||
[features]
|
||||
default = []
|
||||
debug-embed = ["dep:rust-embed"]
|
||||
test-support = ["fs/test-support"]
|
||||
|
||||
[dependencies]
|
||||
|
@ -36,6 +37,7 @@ node_runtime.workspace = true
|
|||
project.workspace = true
|
||||
remote.workspace = true
|
||||
rpc.workspace = true
|
||||
rust-embed = { workspace = true, optional = true, features = ["debug-embed"] }
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
settings.workspace = true
|
||||
|
@ -61,3 +63,6 @@ serde_json.workspace = true
|
|||
[build-dependencies]
|
||||
cargo_toml.workspace = true
|
||||
toml.workspace = true
|
||||
|
||||
[package.metadata.cargo-machete]
|
||||
ignored = ["rust-embed"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue