File tree Expand file tree Collapse file tree 4 files changed +17
-48
lines changed Expand file tree Collapse file tree 4 files changed +17
-48
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on : [push, pull_request]
3+
4+ jobs :
5+ test :
6+ name : Test
7+ runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ rust : [stable, beta, nightly]
11+ steps :
12+ - uses : actions/checkout@master
13+ - name : Install Rust
14+ run : rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
15+ - run : cargo test
16+ - run : cargo doc
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33
44A Rust library for option parsing for CLI utilities.
55
6- [ ![ Build Status] ( https://travis-ci.org/rust-lang-nursery/getopts.svg?branch=master )] ( https://travis-ci.org/rust-lang-nursery/getopts )
7-
8- [ Documentation] ( https://doc.rust-lang.org/getopts )
6+ [ Documentation] ( https://docs.rs/getopts )
97
108## Usage
119
@@ -16,12 +14,6 @@ Add this to your `Cargo.toml`:
1614getopts = " 0.2"
1715```
1816
19- and this to your crate root:
20-
21- ``` rust
22- extern crate getopts;
23- ```
24-
2517## Rust Version Support
2618
2719The minimum supported Rust version is 1.18.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments