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.

42 lines
1017 B

4 years ago
  1. [package]
  2. name = "gitig"
  3. version = "0.3.1"
  4. authors = ["Marcel Schneider <gitig@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. exclude = [
  12. ".drone.yml",
  13. ".editorconfig",
  14. "clippy.toml",
  15. "justfile",
  16. "release.py",
  17. "rustfmt.toml"
  18. ]
  19. [dependencies]
  20. log = "0.4"
  21. stderrlog = "0.4"
  22. structopt = "0.3"
  23. reqwest = { version = "0.10", features = ["blocking", "json"] }
  24. serde = { version = "1.0", features = ["derive"] }
  25. serde_json = "1.0"
  26. directories = "2.0"
  27. [dependencies.error-chain]
  28. version = "0.12"
  29. [target.'cfg(unix)'.dependencies]
  30. libc = "0.2"
  31. #default-features = false # disable pulling in backtrace
  32. [profile.release]
  33. lto = true
  34. codegen-units = 1
  35. opt-level = "z"
  36. # Uncomment to sacrifice Drop-on-panic cleanup for 20K space saving
  37. #panic = 'abort'