Cargo.toml 535 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "go-up"
  3. version = "0.1.0"
  4. edition = "2024"
  5. build = "build.rs"
  6. [dependencies]
  7. anyhow = "1.0.97"
  8. built = { version = "0.8.0", features = ["git2"] }
  9. clap = { version = "4.5.34", features = ["derive"] }
  10. reqwest = { version = "0.12.15", features = ["blocking", "brotli", "deflate", "gzip"] }
  11. url = "2.5.4"
  12. [build-dependencies]
  13. built = { version = "0.8.0", features = ["git2"] }
  14. [features]
  15. # add here so it shows up in vscode (enabled)
  16. default = ["local-httpbin"]
  17. local-httpbin = []
  18. [dev-dependencies]
  19. testdir = "0.9.3"