123456789101112131415161718192021222324252627 |
- [package]
- name = "go-up"
- version = "0.1.0"
- edition = "2024"
- build = "build.rs"
- authors = ["Steve Thielemann <[email protected]>"]
- description = "An Automatic Go-lang updater"
- repository = "https://git.red-green.com/RedGreen/go-up"
- license = "MIT"
- [dependencies]
- anyhow = "1.0.97"
- built = { version = "0.8.0", features = ["git2"] }
- clap = { version = "4.5.34", features = ["derive"] }
- reqwest = { version = "0.12.15", features = ["blocking", "brotli", "deflate", "gzip"] }
- url = "2.5.4"
- [build-dependencies]
- built = { version = "0.8.0", features = ["git2"] }
- [features]
- # add here so it shows up in vscode (enabled)
- default = ["local-httpbin"]
- local-httpbin = []
- [dev-dependencies]
- testdir = "0.9.3"
|