Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msfjarvis/adx
CLI to poll Google Maven repository for updates to AndroidX artifacts
https://github.com/msfjarvis/adx
androidx rust
Last synced: 3 months ago
JSON representation
CLI to poll Google Maven repository for updates to AndroidX artifacts
- Host: GitHub
- URL: https://github.com/msfjarvis/adx
- Owner: msfjarvis
- License: apache-2.0
- Created: 2019-07-08T17:40:31.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T04:46:49.000Z (8 months ago)
- Last Synced: 2024-05-23T05:37:39.849Z (8 months ago)
- Topics: androidx, rust
- Language: Rust
- Homepage: https://msfjarvis.github.io/adx
- Size: 1.21 MB
- Stars: 10
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# androidx-release-watcher [![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)
Rust binary that polls Google's Maven repository and finds the latest version of the requested dependencies.
## Installation
### Using `cargo`
Run `cargo install --locked adx` on a terminal.
### From source
```shell
git clone https://github.com/msfjarvis/adx
cd adx
cargo install --path adx
```## Usage
### Find the latest release of a package
```shell
$ adx appcompat
androidx.appcompat:appcompat:1.3.0-alpha02
androidx.appcompat:appcompat-resources:1.3.0-alpha02
```### Find the latest stable version of a package
```shell
$ adx --channel stable appcompat
androidx.appcompat:appcompat:1.2.0
androidx.appcompat:appcompat-resources:1.2.0
```