Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaesar committed Jul 15, 2023
1 parent 11e0905 commit d8ea5bf
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.62.0
toolchain: 1.70.0
override: true
target: ${{ matrix.job.target }}
components: rust-src
- uses: actions-rs/cargo@v1
with:
use-cross: true
args: --release --target=${{ matrix.job.target }} --locked
args: --profile minsize --target=${{ matrix.job.target }} --locked
command: build
- name: Rename result
run: |
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lls"
description = "list listening sockets"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Julius Michaelis <[email protected]>"]
repository = "https://github.com/jcaesar/lls"
Expand All @@ -26,3 +26,10 @@ users = "0.11.0"
[profile.release]
lto = "thin"
strip = "debuginfo"

[profile.minsize]
inherits = "release"
lto = "fat"
codegen-units = 1
opt-level = "z"
strip = true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ avahi-daemon (pid 655 user avahi)
* The listening address isn't helpful with v6 addresses.

`lls` aims to do better:
* No command line parameters
* No command line parameters necessary
* Compact output (but hopefully not an eyesore)
* Grouping sockets by process and port
* Conservative command line parsing to show script names for interpreters
Expand Down

0 comments on commit d8ea5bf

Please sign in to comment.