Cargo.toml 608 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "flowy-derive"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [lib]
  7. proc-macro = true
  8. name = "flowy_derive"
  9. [[test]]
  10. name = "tests"
  11. path = "tests/progress.rs"
  12. [dependencies]
  13. syn = { version = "1.0.60", features = ["extra-traits", "visit"] }
  14. quote = "1.0"
  15. proc-macro2 = "1.0"
  16. flowy-ast = { path = "../flowy-ast" }
  17. lazy_static = {version = "1.4.0"}
  18. dashmap = "4.0"
  19. lib-infra = { path = "../lib-infra"}
  20. [dev-dependencies]
  21. tokio = { version = "1", features = ["full"] }
  22. trybuild = "1.0.40"
  23. log = "0.4.11"