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.

30 lines
652 B

4 years ago
  1. [package]
  2. name = "gitig"
  3. version = "0.1.4"
  4. authors = ["Marcel Schneider <marcel@webschneider.org>"]
  5. edition = "2018"
  6. license = "MIT"
  7. [dependencies]
  8. log = "0.4"
  9. stderrlog = "0.4"
  10. structopt = "0.3"
  11. reqwest = { version = "0.10", features = ["blocking", "json"] }
  12. serde = { version = "1.0", features = ["derive"] }
  13. serde_json = "1.0"
  14. directories = "2.0"
  15. [dependencies.error-chain]
  16. version = "0.12"
  17. [target.'cfg(unix)'.dependencies]
  18. libc = "0.2"
  19. #default-features = false # disable pulling in backtrace
  20. [profile.release]
  21. lto = true
  22. codegen-units = 1
  23. opt-level = "z"
  24. # Uncomment to sacrifice Drop-on-panic cleanup for 20K space saving
  25. #panic = 'abort'