Cargo.toml 735 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "go-up"
  3. version = "0.1.0"
  4. edition = "2024"
  5. build = "build.rs"
  6. authors = ["Steve Thielemann <[email protected]>"]
  7. description = "An Automatic Go-lang updater"
  8. repository = "https://git.red-green.com/RedGreen/go-up"
  9. license = "MIT"
  10. license-file = "LICENSE.txt"
  11. [dependencies]
  12. anyhow = "1.0.97"
  13. built = { version = "0.8.0", features = ["git2"] }
  14. clap = { version = "4.5.34", features = ["derive"] }
  15. reqwest = { version = "0.12.15", features = ["blocking", "brotli", "deflate", "gzip"] }
  16. url = "2.5.4"
  17. [build-dependencies]
  18. built = { version = "0.8.0", features = ["git2"] }
  19. [features]
  20. # add here so it shows up in vscode (enabled)
  21. default = ["local-httpbin"]
  22. local-httpbin = []
  23. [dev-dependencies]
  24. testdir = "0.9.3"