A cli program to easily handle .gitignore files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
893 B

4 years ago
  1. [package]
  2. name = "gitig"
  3. version = "0.1.4"
  4. authors = ["Marcel Schneider <marcel@webschneider.org>"]
  5. description = "A cli utility to manage gitignore files easily"
  6. edition = "2018"
  7. license = "MIT"
  8. keywords = ["git", "gitignore", "cli"]
  9. categories = ["command-line-utilities", "development-tools", "filesystem"]
  10. repository = "https://git.schneider-hosting.de/schneider/gitig"
  11. [dependencies]
  12. log = "0.4"
  13. stderrlog = "0.4"
  14. structopt = "0.3"
  15. reqwest = { version = "0.10", features = ["blocking", "json"] }
  16. serde = { version = "1.0", features = ["derive"] }
  17. serde_json = "1.0"
  18. directories = "2.0"
  19. [dependencies.error-chain]
  20. version = "0.12"
  21. [target.'cfg(unix)'.dependencies]
  22. libc = "0.2"
  23. #default-features = false # disable pulling in backtrace
  24. [profile.release]
  25. lto = true
  26. codegen-units = 1
  27. opt-level = "z"
  28. # Uncomment to sacrifice Drop-on-panic cleanup for 20K space saving
  29. #panic = 'abort'