Cargo.toml 326 B

1234567891011121314151617
  1. [package]
  2. name = "em_fs"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. name = "em_fs"
  7. crate-type = ["staticlib"]
  8. [features]
  9. default = []
  10. enable-log = ["em_component_log/enable-log"]
  11. [dependencies]
  12. rt-rust = { path = "../../../core" }
  13. rt_macros = { path = "../../../rt_macros" }
  14. em_component_log = { path = "../../component/log"}