Cargo.toml 682 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "tree-sitter-python"
  3. description = "Python grammar for the tree-sitter parsing library"
  4. version = "0.20.2"
  5. authors = [
  6. "Max Brunsfeld <maxbrunsfeld@gmail.com>",
  7. "Douglas Creager <dcreager@dcreager.net>",
  8. ]
  9. license = "MIT"
  10. readme = "bindings/rust/README.md"
  11. keywords = ["incremental", "parsing", "python"]
  12. categories = ["parsing", "text-editors"]
  13. repository = "https://github.com/tree-sitter/tree-sitter-python"
  14. edition = "2018"
  15. build = "bindings/rust/build.rs"
  16. include = [
  17. "bindings/rust/*",
  18. "grammar.js",
  19. "queries/*",
  20. "src/*",
  21. ]
  22. [lib]
  23. path = "bindings/rust/lib.rs"
  24. [dependencies]
  25. tree-sitter = ">= 0.19, < 0.21"
  26. [build-dependencies]
  27. cc = "1.0"