Cargo.toml 450 B

12345678910111213141516171819
  1. [package]
  2. name = "em_component_registry"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. name = "em_component_registry"
  7. crate-type = ["staticlib"]
  8. [dependencies]
  9. rt-rust = { path = "../../../core" }
  10. rt_macros = { path = "../../../rt_macros" }
  11. # Optional dependencies - only included when features are enabled
  12. em_component_log = { path = "../log", optional = true }
  13. [features]
  14. default = []
  15. enable-log = ["em_component_log", "em_component_log/enable-log"]