Cargo.toml 630 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "solang-forge-fmt"
  3. version = "0.2.0"
  4. edition = "2021"
  5. authors = ["Foundry Contributors"]
  6. license = "MIT OR Apache-2.0"
  7. homepage = "https://github.com/foundry-rs/foundry"
  8. repository = "https://github.com/foundry-rs/foundry"
  9. description = "Solang's fork of forge-fmt"
  10. [dependencies]
  11. ariadne = "0.4"
  12. itertools = "0.12"
  13. solang-parser = { path = "../solang-parser", version = "0.3.5" }
  14. thiserror = "1"
  15. serde = {version = "1.0", features = ["derive"]}
  16. tracing = "0.1"
  17. alloy-primitives = "0.7"
  18. [dev-dependencies]
  19. similar-asserts = "1.5"
  20. toml = "0.8"
  21. tracing-subscriber = { version = "0.3", features = ["env-filter"] }