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.

25 lines
481 B

  1. [package]
  2. name = "gitig"
  3. version = "0.1.0"
  4. authors = ["Marcel Schneider <marcel@webschneider.org>"]
  5. edition = "2018"
  6. [dependencies]
  7. log = "0.4"
  8. stderrlog = "0.4"
  9. structopt = "0.3"
  10. [target.'cfg(unix)'.dependencies]
  11. libc = "0.2"
  12. [dependencies.error-chain]
  13. version = "0.12"
  14. default-features = false # disable pulling in backtrace
  15. [profile.release]
  16. lto = true
  17. codegen-units = 1
  18. opt-level = "z"
  19. # Uncomment to sacrifice Drop-on-panic cleanup for 20K space saving
  20. #panic = 'abort'