Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
17584cba0f |
4 changed files with 18 additions and 5 deletions
|
@ -35,7 +35,8 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- wget https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz
|
- wget https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz
|
||||||
- tar -xvf cargo-binstall-x86_64-unknown-linux-musl.tgz
|
- tar -xvf cargo-binstall-x86_64-unknown-linux-musl.tgz
|
||||||
- cp cargo-binstall /usr/local/cargo/bin
|
- rm cargo-binstall-x86_64-unknown-linux-musl.tgz
|
||||||
|
- mv cargo-binstall /usr/local/cargo/bin
|
||||||
- cargo binstall -y cargo-machete
|
- cargo binstall -y cargo-machete
|
||||||
- cargo machete
|
- cargo machete
|
||||||
|
|
||||||
|
@ -90,7 +91,7 @@ steps:
|
||||||
image: *rust_image
|
image: *rust_image
|
||||||
commands:
|
commands:
|
||||||
- cargo login "$CARGO_REGISTRY_TOKEN"
|
- cargo login "$CARGO_REGISTRY_TOKEN"
|
||||||
- cargo publish --registry crates-io --no-verify --allow-branch "${CI_COMMIT_TAG}" --yes
|
- cargo publish --registry crates-io --no-verify
|
||||||
secrets: [cargo_api_token]
|
secrets: [cargo_registry_token]
|
||||||
when:
|
when:
|
||||||
event: tag
|
event: tag
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -122,7 +122,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "skip"
|
name = "skip"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
]
|
]
|
||||||
|
|
10
Cargo.toml
10
Cargo.toml
|
@ -1,7 +1,15 @@
|
||||||
[package]
|
[package]
|
||||||
name = "skip"
|
name = "skip"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
|
||||||
|
categories = ["command-line-utilities"]
|
||||||
|
description = "Skip lines in a file"
|
||||||
|
license = "MIT"
|
||||||
|
repository = "https://git.kemitix.net/kemitix/skip"
|
||||||
|
keywords = ["skip", "lines", "file", "text", "utility"]
|
||||||
|
rust-version = "1.74.1"
|
||||||
|
exclude = [".cargo_home"]
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,10 @@ As `head` will show the top of a file after a number of line,
|
||||||
Additionally, it can check for whole lines matching,
|
Additionally, it can check for whole lines matching,
|
||||||
or for a token being present on the line.
|
or for a token being present on the line.
|
||||||
|
|
||||||
|
N.B.: The `skip` crate used to be an implementation of [Skip list](https://en.wikipedia.org/wiki/Skip_list),
|
||||||
|
by [Luo Jia / Zhouqi Jiang](https://github.com/luojia65) ([source](https://github.com/luojia65/skip)).
|
||||||
|
That crate will be republished as [skip-list](https://crates.io/crates/skip-list) (soon).
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### Skip a fixed number of lines
|
### Skip a fixed number of lines
|
||||||
|
|
Loading…
Reference in a new issue