Cargo.toml 706 B

123456789101112131415161718192021222324252627
  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. [dependencies]
  11. anyhow = "1.0.97"
  12. built = { version = "0.8.0", features = ["git2"] }
  13. clap = { version = "4.5.34", features = ["derive"] }
  14. reqwest = { version = "0.12.15", features = ["blocking", "brotli", "deflate", "gzip"] }
  15. url = "2.5.4"
  16. [build-dependencies]
  17. built = { version = "0.8.0", features = ["git2"] }
  18. [features]
  19. # add here so it shows up in vscode (enabled)
  20. default = ["local-httpbin"]
  21. local-httpbin = []
  22. [dev-dependencies]
  23. testdir = "0.9.3"