Skip to content

Commit

Permalink
Fix embed files during publish (attempt #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschaeffer committed May 2, 2023
1 parent 35a149b commit 6e209cc
Show file tree
Hide file tree
Showing 51 changed files with 81 additions and 72 deletions.
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ query_interface = "0.3"
rand = "0.8"
rand_chacha = "0.3"
random-string = "1.0"
rust-embed = { version = "6.6", features = ["debug-embed", "compression"] }
rust-embed = { version = "6.6", features = ["debug-embed", "interpolate-folder-path", "compression"] }
semver = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
Expand Down Expand Up @@ -121,6 +121,15 @@ inexor-rgf-model-runtime = { version = "0.9.1", git = "https://github.com/inexor

###

#inexor-rgf-core-config = { version = "0.9.1", path = "../inexor-rgf/crates/core/config" }
#inexor-rgf-core-di = { version = "0.9.1", features = ["async"], path = "../inexor-rgf/crates/core/di" }
#inexor-rgf-core-frp = { version = "0.9.1", path = "../inexor-rgf/crates/core/frp" }
#inexor-rgf-core-model = { version = "0.9.1", path = "../inexor-rgf/crates/core/model" }
#inexor-rgf-core-reactive = { version = "0.9.1", path = "../inexor-rgf/crates/core/reactive" }
#inexor-rgf-core-plugins = { version = "0.9.1", path = "../inexor-rgf/crates/core/plugins" }
#inexor-rgf-core-builder = { version = "0.9.1", path = "../inexor-rgf/crates/core/builder" }
#inexor-rgf-model-runtime = { version = "0.9.1", path = "../inexor-rgf/crates/model/runtime" }

[profile.dev]
opt-level = 0

Expand Down
2 changes: 1 addition & 1 deletion plugins/arithmetic/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ log4rs = { workspace = true, features = ["console_appender", "file_appender", "t
num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/arithmetic/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Arithmetic, "../../types/components");
crate::plugins::entity_type_provider_impl!(Arithmetic, "../../types/entities");
crate::plugins::component_provider_impl!(Arithmetic, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Arithmetic, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/base/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
semver = { workspace = true }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion plugins/base/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crate::plugins::component_provider_impl!(Base, "../../types/components");
crate::plugins::component_provider_impl!(Base, "$CARGO_MANIFEST_DIR/../../types/components");
2 changes: 1 addition & 1 deletion plugins/binary/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ mime_guess = { workspace = true }
num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
shellexpand = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions plugins/binary/crates/plugin/src/providers/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
crate::plugins::component_provider_impl!(Binary, "../../types/components");
crate::plugins::entity_type_provider_impl!(Binary, "../../types/entities");
crate::plugins::component_provider_impl!(Binary, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Binary, "$CARGO_MANIFEST_DIR/../../types/entities");

pub use web_resource_provider::*;

Expand Down
2 changes: 1 addition & 1 deletion plugins/color/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ log4rs = { workspace = true, features = ["console_appender", "file_appender", "t
paste = { workspace = true }
prisma = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }

inexor-rgf-core-di = { workspace = true, features = ["async"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/color/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Color, "../../types/components");
crate::plugins::entity_type_provider_impl!(Color, "../../types/entities");
crate::plugins::component_provider_impl!(Color, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Color, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/comparison/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ log4rs = { workspace = true, features = ["console_appender", "file_appender", "t
num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/comparison/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Comparison, "../../types/components");
crate::plugins::entity_type_provider_impl!(Comparison, "../../types/entities");
crate::plugins::component_provider_impl!(Comparison, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Comparison, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/config/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ log4rs = { workspace = true, features = ["console_appender", "file_appender", "t
#num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
shellexpand = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions plugins/config/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
crate::plugins::component_provider_impl!(Config, "../../types/components");
crate::plugins::entity_type_provider_impl!(Config, "../../types/entities");
crate::plugins::component_provider_impl!(Config, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Config, "$CARGO_MANIFEST_DIR/../../types/entities");
crate::plugins::flow_instance_provider_impl!(Config, "../../flows");
2 changes: 1 addition & 1 deletion plugins/connector/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/connector/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Connector, "../../types/components");
crate::plugins::relation_type_provider_impl!(Connector, "../../types/relations");
crate::plugins::component_provider_impl!(Connector, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::relation_type_provider_impl!(Connector, "$CARGO_MANIFEST_DIR/../../types/relations");
2 changes: 1 addition & 1 deletion plugins/date-time/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ log4rs = { workspace = true, features = ["console_appender", "file_appender", "t
num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/date-time/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::entity_type_provider_impl!(DateTime, "../../types/entities");
crate::plugins::relation_type_provider_impl!(DateTime, "../../types/relations");
crate::plugins::entity_type_provider_impl!(DateTime, "$CARGO_MANIFEST_DIR/../../types/entities");
crate::plugins::relation_type_provider_impl!(DateTime, "$CARGO_MANIFEST_DIR/../../types/relations");
2 changes: 1 addition & 1 deletion plugins/file/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ notify = { workspace = true }
num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
shellexpand = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion plugins/file/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crate::plugins::component_provider_impl!(File, "../../types/components");
crate::plugins::component_provider_impl!(File, "$CARGO_MANIFEST_DIR/../../types/components");
2 changes: 1 addition & 1 deletion plugins/flow/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }

inexor-rgf-core-di = { workspace = true, features = ["async"] }
Expand Down
6 changes: 3 additions & 3 deletions plugins/flow/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
crate::plugins::component_provider_impl!(Flow, "../../types/components");
crate::plugins::entity_type_provider_impl!(Flow, "../../types/entities");
crate::plugins::flow_type_provider_impl!(Flow, "../../types/flows");
crate::plugins::component_provider_impl!(Flow, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Flow, "$CARGO_MANIFEST_DIR/../../types/entities");
crate::plugins::flow_type_provider_impl!(Flow, "$CARGO_MANIFEST_DIR/../../types/flows");
2 changes: 1 addition & 1 deletion plugins/git/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mime_guess = { workspace = true }
num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
shellexpand = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions plugins/git/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Git, "../../types/components");
crate::plugins::entity_type_provider_impl!(Git, "../../types/entities");
crate::plugins::component_provider_impl!(Git, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Git, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/graphql-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"] }
mime_guess = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
uuid = { workspace = true, features = ["serde", "v4"] }
Expand Down
2 changes: 1 addition & 1 deletion plugins/graphql-schema-visualization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"] }
mime_guess = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
uuid = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion plugins/http/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }
ureq = { workspace = true }

Expand Down
4 changes: 2 additions & 2 deletions plugins/http/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Http, "../../types/components");
crate::plugins::entity_type_provider_impl!(Http, "../../types/entities");
crate::plugins::component_provider_impl!(Http, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Http, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/json/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }
shellexpand = { workspace = true }

Expand Down
4 changes: 2 additions & 2 deletions plugins/json/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Json, "../../types/components");
crate::plugins::entity_type_provider_impl!(Json, "../../types/entities");
crate::plugins::component_provider_impl!(Json, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Json, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/logical/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions plugins/logical/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
crate::plugins::component_provider_impl!(Logical, "../../types/components");
crate::plugins::entity_type_provider_impl!(Logical, "../../types/entities");
crate::plugins::flow_type_provider_impl!(Logical, "../../types/flows");
crate::plugins::component_provider_impl!(Logical, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Logical, "$CARGO_MANIFEST_DIR/../../types/entities");
crate::plugins::flow_type_provider_impl!(Logical, "$CARGO_MANIFEST_DIR/../../types/flows");
2 changes: 1 addition & 1 deletion plugins/metadata/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }

inexor-rgf-core-di = { workspace = true, features = ["async"] }
Expand Down
2 changes: 1 addition & 1 deletion plugins/metadata/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crate::plugins::component_provider_impl!(MetaData, "../../types/components");
crate::plugins::component_provider_impl!(MetaData, "$CARGO_MANIFEST_DIR/../../types/components");
2 changes: 1 addition & 1 deletion plugins/numeric/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ log4rs = { workspace = true, features = ["console_appender", "file_appender", "t
num-traits = { workspace = true }
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/numeric/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Numeric, "../../types/components");
crate::plugins::entity_type_provider_impl!(Numeric, "../../types/entities");
crate::plugins::component_provider_impl!(Numeric, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Numeric, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/random/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ query_interface = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
random-string = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/random/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(Random, "../../types/components");
crate::plugins::entity_type_provider_impl!(Random, "../../types/entities");
crate::plugins::component_provider_impl!(Random, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(Random, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/result/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }

inexor-rgf-core-di = { workspace = true, features = ["async"] }
Expand Down
2 changes: 1 addition & 1 deletion plugins/result/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crate::plugins::component_provider_impl!(Result, "../../types/components");
crate::plugins::component_provider_impl!(Result, "$CARGO_MANIFEST_DIR/../../types/components");
2 changes: 1 addition & 1 deletion plugins/state/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde = { workspace = true, features = [ "derive" ] }
serde_json = { workspace = true }
strum = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions plugins/state/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(State, "../../types/components");
crate::plugins::entity_type_provider_impl!(State, "../../types/entities");
crate::plugins::component_provider_impl!(State, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(State, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/string/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }
tera = { workspace = true }
voca_rs = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions plugins/string/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
crate::plugins::component_provider_impl!(String, "../../types/components");
crate::plugins::entity_type_provider_impl!(String, "../../types/entities");
crate::plugins::component_provider_impl!(String, "$CARGO_MANIFEST_DIR/../../types/components");
crate::plugins::entity_type_provider_impl!(String, "$CARGO_MANIFEST_DIR/../../types/entities");
2 changes: 1 addition & 1 deletion plugins/system-environment/crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log = { workspace = true, features = ["std", "serde"] }
log4rs = { workspace = true, features = ["console_appender", "file_appender", "toml_format"]}
paste = { workspace = true }
query_interface = { workspace = true }
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
rust-embed = { workspace = true, features = ["debug-embed", "interpolate-folder-path", "compression"] }
serde_json = { workspace = true }
uuid = { workspace = true, features = ["serde", "v4", "v5"] }

Expand Down
2 changes: 1 addition & 1 deletion plugins/system-environment/crates/plugin/src/providers.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crate::plugins::entity_type_provider_impl!(SystemEnvironment, "../../types/entities");
crate::plugins::entity_type_provider_impl!(SystemEnvironment, "$CARGO_MANIFEST_DIR/../../types/entities");
Loading

0 comments on commit 6e209cc

Please sign in to comment.