Skip to content

Commit

Permalink
HOTFIX: Feature/ignore asset map (zellij-org#2002)
Browse files Browse the repository at this point in the history
* utils: feature-gate asset map

to make publishing on crates.io possible without compile errors.

* setup: Fix asset_map feature
  • Loading branch information
har7an committed Dec 9, 2022
1 parent 66593ec commit 3623343
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,6 @@ pkg-fmt = "tgz"

[features]
# See remarks in zellij_utils/Cargo.toml
default = [ "zellij-utils/asset_map" ]
disable_automatic_asset_installation = [ "zellij-utils/disable_automatic_asset_installation" ]
unstable = [ "zellij-client/unstable", "zellij-utils/unstable" ]
1 change: 1 addition & 0 deletions zellij-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@ insta = { version = "1.6.0", features = ["backtrace"] }
# - builtin plugins MUST be available from whatever is configured as `PLUGIN_DIR`
disable_automatic_asset_installation = []
unstable = []
asset_map = []
4 changes: 2 additions & 2 deletions zellij-utils/src/consts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ pub const FEATURES: &[&str] = &[
"disable_automatic_asset_installation",
];

#[cfg(not(target_family = "wasm"))]
#[cfg(all(not(target_family = "wasm"), feature = "asset_map"))]
pub use not_wasm::*;

#[cfg(not(target_family = "wasm"))]
#[cfg(all(not(target_family = "wasm"), feature = "asset_map"))]
mod not_wasm {
use lazy_static::lazy_static;
use std::collections::HashMap;
Expand Down
6 changes: 3 additions & 3 deletions zellij-utils/src/input/plugins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize};
use url::Url;

use super::layout::{RunPlugin, RunPluginLocation};
#[cfg(not(target_family = "wasm"))]
#[cfg(all(not(target_family = "wasm"), feature = "asset_map"))]
use crate::consts::ASSET_MAP;
pub use crate::data::PluginTag;
use crate::errors::prelude::*;
Expand Down Expand Up @@ -129,7 +129,7 @@ impl PluginConfig {
for path in paths {
// Check if the plugin path matches an entry in the asset map. If so, load it directly
// from memory, don't bother with the disk.
#[cfg(not(target_family = "wasm"))]
#[cfg(all(not(target_family = "wasm"), feature = "asset_map"))]
if !cfg!(feature = "disable_automatic_asset_installation") && self.is_builtin() {
let asset_path = PathBuf::from("plugins").join(path);
if let Some(bytes) = ASSET_MAP.get(&asset_path) {
Expand Down Expand Up @@ -160,7 +160,7 @@ impl PluginConfig {
}

// Not reached if a plugin is found!
#[cfg(not(target_family = "wasm"))]
#[cfg(all(not(target_family = "wasm"), feature = "asset_map"))]
if self.is_builtin() {
// Layout requested a builtin plugin that wasn't found
let plugin_path = self.path.with_extension("wasm");
Expand Down
6 changes: 3 additions & 3 deletions zellij-utils/src/setup.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[cfg(not(target_family = "wasm"))]
#[cfg(all(not(target_family = "wasm"), feature = "asset_map"))]
use crate::consts::ASSET_MAP;
use crate::input::theme::Themes;
use crate::{
Expand Down Expand Up @@ -175,7 +175,7 @@ pub fn dump_specified_layout(layout: &str) -> std::io::Result<()> {
}
}

#[cfg(not(target_family = "wasm"))]
#[cfg(all(not(target_family = "wasm"), feature = "asset_map"))]
pub fn dump_builtin_plugins(path: &PathBuf) -> Result<()> {
for (asset_path, bytes) in ASSET_MAP.iter() {
let plugin_path = path.join(asset_path);
Expand Down Expand Up @@ -205,7 +205,7 @@ pub fn dump_builtin_plugins(path: &PathBuf) -> Result<()> {
Ok(())
}

#[cfg(target_family = "wasm")]
#[cfg(any(target_family = "wasm", not(feature = "asset_map")))]
pub fn dump_builtin_plugins(_path: &PathBuf) -> Result<()> {
Ok(())
}
Expand Down

0 comments on commit 3623343

Please sign in to comment.