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.

29 lines
636 B

  1. [package]
  2. name = "gitig"
  3. version = "0.1.4"
  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. reqwest = { version = "0.10", features = ["blocking", "json"] }
  11. serde = { version = "1.0", features = ["derive"] }
  12. serde_json = "1.0"
  13. directories = "2.0"
  14. [dependencies.error-chain]
  15. version = "0.12"
  16. [target.'cfg(unix)'.dependencies]
  17. libc = "0.2"
  18. #default-features = false # disable pulling in backtrace
  19. [profile.release]
  20. lto = true
  21. codegen-units = 1
  22. opt-level = "z"
  23. # Uncomment to sacrifice Drop-on-panic cleanup for 20K space saving
  24. #panic = 'abort'