Cargo.toml 743 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "flowy-tool"
  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. [dependencies]
  7. clap = "2.33.3"
  8. walkdir = "2.3.1"
  9. syn = { version = "1.0.60", features = ["extra-traits", "parsing", "derive", "full"]}
  10. tera = { version = "1.5.0" }
  11. log = "0.4.11"
  12. env_logger = "0.8.2"
  13. shell = { git="https://github.com/google/rust-shell.git"}
  14. cmd_lib = "1.1"
  15. flowy-ast = { path = "../../rust-lib/flowy-ast" }
  16. console = "0.14.0"
  17. fancy-regex = "0.5.0"
  18. lazy_static = "1.4.0"
  19. phf = { version = "0.8.0", features = ["macros"] }
  20. similar = "1.2.2"
  21. dialoguer = "0.8.0"
  22. toml = "0.5.8"
  23. serde = { version = "1.0", features = ["derive"] }
  24. pathdiff = "0.2.0"
  25. itertools = "0.10"